/* CSS Variables for Colors */
:root {
    --color-dark-green: #1a2311;
    --color-light-sage: #F5EFE8;
    --color-white: #ffffff;
    --color-text-dark: #2a3321;
    --color-text-gray: #7a7a7a;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Main App Wrapper mimicking the Framer Canvas */
.app-wrapper {
    width: 100%;
    max-width: 1200px;
    background-color: var(--color-light-sage);
    border-radius: 40px;
    overflow: hidden; /* Keeps the child elements inside the rounded corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Header Section */
.header {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.logo img {
    height: 60px; 
    width: auto;  
    object-fit: contain;
    /* This tells the browser to smoothly animate any changes over 0.3 seconds */
    transition: transform 0.3s ease, opacity 0.3s ease; 
}

/* This is the new hover effect */
.logo:hover img {
    transform: scale(1.05); /* Makes the logo 5% bigger */
    opacity: 0.8;           /* Fades it slightly to 80% visibility */
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links li a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.nav-links li a:hover {
    opacity: 0.7;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
    border: none;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-light {
    background-color: var(--color-white);
    color: var(--color-dark-green);
}

.btn-dark {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    font-size: 1.1rem;
    padding: 16px 36px;
}

/* Hero Section */
.hero {
    padding: 100px 20px 120px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-icon {
    margin-bottom: 30px;
    width: 80px;
    height: 80px;
}

.hero-title {
    color: var(--color-text-dark);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    max-width: 900px;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
}

/* Footer Section */
.footer {
    margin-top: 40px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--color-text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-dark-green);
}

.social-icons svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.copyright {
    color: var(--color-text-gray);
    font-size: 1rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 900px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .nav-links {
        gap: 15px;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .nav-links {
        display: none; /* Hide standard nav on mobile */
    }
    .header {
        flex-direction: row;
    }
    .btn-light {
        display: none;
    }
    .hero {
        padding: 60px 20px 80px 20px;
    }
}
