@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Lato:wght@400;700&display=swap');

:root {
    --botanical-green: #2d5016;
    --terracotta-clay: #c9643a;
    --soft-linen: #f5f1e8;
    --deep-moss: #1a3d0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--soft-linen);
    color: var(--deep-moss);
    line-height: 1.6;
}

@media (max-width: 768px) {
    body {
        hyphens: auto;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--botanical-green);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--botanical-green);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--terracotta-clay);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

header {
    background-color: var(--soft-linen);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 480px) {
    header {
        padding: 0.75rem 1rem;
    }
}

.logo {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--botanical-green);
}

@media (max-width: 768px) {
    .logo {
        font-size: 1rem;
    }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav ul li a {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--botanical-green);
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--soft-linen);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        padding: 1rem 0;
        gap: 1rem;
        align-items: flex-start;
        padding-left: 2rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    nav ul li a {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    nav ul {
        padding-left: 0.75rem;
    }

    nav ul li a {
        font-size: 0.8rem;
    }
}

section {
    margin: 2rem 0;
}

@media (max-width: 480px) {
    section {
        margin: 1.5rem 0;
    }
}

section.hero {
    margin-top: 0;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 2rem;
    min-height: 70vh;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-button {
    display: inline-block;
    background-color: var(--terracotta-clay);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    align-self: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 2rem;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 100, 58, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 1.5rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-button {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
        margin-top: 1rem;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.gallery-item:hover {
    transform: translateY(-5px);
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (max-width: 480px) {
    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 360px) {
    .gallery-item img {
        height: 200px;
    }
}

.content-section {
    padding: 3rem 2rem;
}

@media (max-width: 768px) {
    .content-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 1.5rem 1rem;
    }
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .content-section p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.content-list {
    list-style: none;
    padding-left: 0;
}

.content-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.content-list li::before {
    content: "🍃";
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.content-list li:hover::before {
    transform: rotate(15deg) scale(1.2);
}

.button {
    display: inline-block;
    background-color: var(--botanical-green);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

@media (max-width: 480px) {
    .button {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
}

.button:hover {
    background-color: var(--terracotta-clay);
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .form-container {
        padding: 1.5rem 1rem;
        margin: 1rem auto;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--botanical-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

@media (max-width: 480px) {
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .form-group textarea {
        min-height: 120px;
    }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--botanical-green);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--botanical-green);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--terracotta-clay);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 480px) {
    .legal-page {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .legal-page h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }

    .legal-page h3 {
        font-size: 1.25rem;
        margin-top: 1rem;
    }

    .legal-page p {
        font-size: 0.95rem;
    }

    .legal-page ul {
        margin-left: 1.5rem;
    }
}

.legal-page h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.legal-page p {
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

footer {
    background-color: var(--deep-moss);
    color: var(--soft-linen);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

@media (max-width: 480px) {
    footer {
        padding: 2rem 1rem 1rem;
        margin-top: 2rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--soft-linen);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p,
.footer-column a {
    color: var(--soft-linen);
    margin-bottom: 0.5rem;
    display: block;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--soft-linen);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-column p,
    .footer-column a {
        font-size: 0.9rem;
    }
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--deep-moss);
    color: var(--soft-linen);
    padding: 2rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
}

@media (max-width: 480px) {
    .privacy-popup {
        padding: 1.5rem 1rem;
    }

    .popup-text {
        min-width: auto;
        font-size: 0.9rem;
    }

    .popup-text p {
        margin-bottom: 1rem;
    }
}

.privacy-popup.active {
    display: block;
}

.popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.popup-text {
    flex: 1;
    min-width: 300px;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
}

.popup-button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.popup-button.accept {
    background-color: var(--botanical-green);
    color: white;
}

.popup-button.decline {
    background-color: transparent;
    color: var(--soft-linen);
    border: 2px solid var(--soft-linen);
}

.popup-button:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .popup-content {
        flex-direction: column;
        align-items: stretch;
    }

    .popup-buttons {
        flex-direction: column;
    }

    .popup-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .popup-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.plant-icon {
    animation: float 3s ease-in-out infinite;
}

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.success-content {
    max-width: 600px;
}

.success-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .success-content h1 {
        font-size: 2.5rem;
    }

    .success-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .success-content h1 {
        font-size: 2rem;
    }

    .success-content p {
        font-size: 1rem;
    }

    .success-page {
        padding: 1rem;
    }
}

@media (max-width: 360px) {
    .success-content h1 {
        font-size: 1.75rem;
    }
}
