/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --gold: #D4AF37;
    --dark-gold: #8C6A03;
    --dark-bg: #0F1A12;
    --darker-bg: #081008;
    --deep-forest: #1B3322;
    --evergreen: #2F4F30;
    --moss: #425C3A;
    --parchment: #F4EDDB;
    --fern-glow: rgba(148, 194, 126, 0.45);
    --fern-haze: rgba(148, 194, 126, 0.12);
    --bark: #3C2F1B;
    --bark-glow: rgba(60, 47, 27, 0.18);
}

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

body {
    font-family: 'Crimson Text', Georgia, serif;
    line-height: 1.6;
    color: var(--parchment);
    background-color: var(--dark-bg);
    background-image:
        radial-gradient(circle at 15% 25%, var(--fern-haze) 0%, transparent 45%),
        radial-gradient(circle at 80% 15%, rgba(212, 175, 55, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 20% 80%, var(--bark-glow) 0%, transparent 55%);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(180deg, rgba(14, 28, 18, 0.95) 0%, rgba(10, 20, 13, 0.98) 100%);
    box-shadow: 0 4px 20px rgba(24, 58, 34, 0.4), 0 0 35px rgba(212, 175, 55, 0.25);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid rgba(212, 175, 55, 0.35);
    backdrop-filter: blur(10px);
}

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

.logo-container {
    display: flex;
    align-items: center;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.45));
}

.logo {
    height: 70px;
    width: auto;
    animation: gentleGlow 3s ease-in-out infinite;
}

@keyframes gentleGlow {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.35)); }
    50% { filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.6)); }
}

/* Hero Section */
.hero {
    background:
        radial-gradient(circle at 20% 20%, var(--fern-glow) 0%, transparent 45%),
        radial-gradient(circle at 78% 25%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--bark-glow) 0%, transparent 55%),
        linear-gradient(135deg, rgba(27, 56, 33, 0.96) 0%, rgba(12, 24, 15, 0.98) 100%);
    color: var(--parchment);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
    box-shadow: inset 0 0 120px rgba(8, 16, 8, 0.65);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(8, 16, 9, 0.9) 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: -10%;
    background-image:
        repeating-linear-gradient(45deg, rgba(60, 47, 27, 0.08) 0px, rgba(60, 47, 27, 0.08) 2px, transparent 2px, transparent 14px),
        radial-gradient(circle at 15% 40%, rgba(212, 175, 55, 0.18) 0%, transparent 55%);
    mix-blend-mode: screen;
    opacity: 0.7;
    pointer-events: none;
    animation: canopyDrift 20s linear infinite alternate;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, #FFF8DC 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.45);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: titleShimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

@keyframes titleShimmer {
    0%, 100% { filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.6)); }
    50% { filter: drop-shadow(0 0 32px rgba(212, 175, 55, 0.85)); }
}

@keyframes canopyDrift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(2%, -2%, 0); }
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #B8D89F;
    text-shadow: 0 0 14px rgba(148, 194, 126, 0.6);
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--parchment);
    line-height: 2;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--bark);
    padding: 18px 50px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow:
        0 0 22px rgba(212, 175, 55, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.15);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 40px rgba(212, 175, 55, 0.7),
        inset 0 0 28px rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, #FAD77A 0%, var(--gold) 100%);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--deep-forest) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gold);
    position: relative;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

.section-title::after {
    content: '\2726\00A0\2726';
    display: block;
    font-size: 2rem;
    color: #B8D89F;
    margin: 1.5rem auto 0;
    text-shadow: 0 0 14px rgba(148, 194, 126, 0.6);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(32, 54, 37, 0.8) 0%, rgba(44, 33, 20, 0.75) 100%);
    padding: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow:
        0 0 30px rgba(12, 31, 18, 0.4),
        inset 0 0 30px rgba(12, 24, 15, 0.35);
    position: relative;
}

.about-content::before,
.about-content::after {
    content: '\2698';
    position: absolute;
    top: 20px;
    color: var(--gold);
    font-size: 1.5rem;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.about-content::before {
    left: 20px;
}

.about-content::after {
    right: 20px;
}

.about-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--parchment);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(27, 45, 29, 0.98) 0%, rgba(12, 24, 15, 0.98) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.45) 50%, transparent 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 4rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(32, 54, 37, 0.85) 0%, rgba(44, 33, 20, 0.7) 100%);
    padding: 50px 35px;
    border-radius: 0;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow:
        0 0 22px rgba(12, 31, 18, 0.4),
        inset 0 0 25px rgba(10, 22, 13, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.85), rgba(148, 194, 126, 0.6), rgba(212, 175, 55, 0.85));
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 0 50px rgba(212, 175, 55, 0.35),
        0 0 30px rgba(148, 194, 126, 0.3),
        inset 0 0 30px rgba(10, 22, 13, 0.4);
    border-color: var(--gold);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--parchment);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15, 26, 18, 1) 0%, rgba(8, 16, 9, 0.96) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.45) 50%, transparent 100%);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(44, 33, 20, 0.75) 0%, rgba(27, 46, 32, 0.7) 100%);
    padding: 60px 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow:
        0 0 40px rgba(12, 31, 18, 0.45),
        inset 0 0 35px rgba(10, 18, 12, 0.4);
}

.contact-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--parchment);
    font-style: italic;
}

.contact-email {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    padding: 18px 40px;
    border: 3px solid rgba(212, 175, 55, 0.8);
    border-radius: 0;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: rgba(12, 24, 15, 0.6);
    box-shadow:
        0 0 24px rgba(212, 175, 55, 0.35),
        inset 0 0 20px rgba(12, 24, 15, 0.4);
}

.contact-email:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--bark);
    box-shadow:
        0 0 45px rgba(212, 175, 55, 0.55),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.contact-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(244, 237, 219, 0.65);
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    color: rgba(244, 237, 219, 0.6);
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 90px 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        font-size: 1.1rem;
    }

    .contact-text {
        font-size: 1.1rem;
    }

    .logo {
        height: 60px;
    }

    .about-content,
    .contact-content {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .about,
    .services,
    .contact {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 40px 25px;
    }

    .contact-note {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
}
