:root {
    --primary-green: #7ab536; /* Adapted from flyer */
    --dark-green: #4a7522;
    --text-dark: #333333;
    --bg-light: #f9f9f9;
}

body {
    /*background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.9)), url('./images/flowers/ocean_sunset.webp') top center;*/
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    line-height: 1.6;
}
/* Container */
.container {
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.9)), url('./images/flowers/ocean_sunset.webp') repeat top center;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0;
}

header {
    background-size: cover;
    padding: 30px 10px;
    margin-top: 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-green);
    border-bottom: 5px solid var(--primary-green);
    background: rgba(0, 0, 0, 0.1);
}

header h1 {
    color: var(--dark-green);
    margin: 0 0 10px 0;
    font-size: 2.5em;
}

.hero-subtitle {
    font-size: 1.2em;
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.hero-quote {
    font-weight: bold;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
    color: var(--dark-green);
}

/* Grid Layout for Sections */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 30px;
}

.card {
    background: rgba(0, 0, 0, 0.1);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-green);
    border-bottom: 4px solid var(--primary-green);
}

.card div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-left {
    float: left; /* or right */
    margin: 0 16px 12px 0;
    width: 220px; /* set a width so layout is predictable */
    height: auto;
}

.float-right {
    float: right; /* or right */
    margin: 0 16px 12px 0;
    width: 220px; /* set a width so layout is predictable */
    height: auto;
}

.card div img {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1%;
    background-size: cover; /* Ensures image fills the circle without stretching */
    background-position: center;
    width: 90%;
    height: auto;
}

.card span {
    display: flex;
    align-items: center;
    justify-content: center;
}

h2 {
    color: var(--dark-green);
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 10px;
    display: inline-block;
    margin-top: 0;
}

h3 {
    color: var(--primary-green);
    margin-bottom: 5px;
}

ul {
    padding-left: 20px;
}


.img-portrait {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-image: url('./images/thomas/whalebone_low.webp');
    background-size: cover; /* Ensures image fills the circle without stretching */
    background-position: center; /* Centers the focus of the image */
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-green);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

.contact-section h2 {
    color: white;
    border-color: white;
}

.contact-info {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}