:root {
    --royal-green: #0a3d2e;
    --emerald: #1b4d3e;
    --soft-gold: #c5a059;
    --bright-gold: #dfbd69;
    /* Added for better button visibility */
    --deep-gold: #996515;
    --ivory: #fcfaf5;
    --sand: #f4eee0;
    --text-dark: #1a1a1a;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--ivory);
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.royal-font {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gold-divider {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--soft-gold), transparent);
    margin: 20px auto;
}

.btn-royal {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid var(--soft-gold);
    background: transparent;
    color: var(--royal-green);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    font-weight: 700;
}

/* Hero Button Visibility Fix */
.btn-hero-primary {
    background: var(--bright-gold) !important;
    color: var(--royal-green) !important;
    border: 1px solid var(--bright-gold) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid white !important;
    backdrop-filter: blur(5px);
}

.section-padding {
    padding: 100px 10%;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(252, 250, 245, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--royal-green);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
}

#hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 61, 46, 0.7), rgba(10, 61, 46, 0.7)),
        url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--ivory);
    padding: 0 20px;
}

#hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background: white;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--sand);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--soft-gold);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--soft-gold);
    margin-bottom: 20px;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid var(--soft-gold);
    padding: 10px;
    background: white;
}

.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--royal-green);
    padding: 10px 0;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    border-top: 2px solid var(--soft-gold);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--soft-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Page Headers for sub-pages */
.page-header {
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    text-align: center;
    background-color: var(--royal-green);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 61, 46, 0.6);
}

.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
}

/* Footer Styles */
.site-footer {
    background-color: var(--royal-green);
    color: var(--ivory);
    border-top: 4px solid var(--soft-gold);
    padding: 70px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info h2 {
    color: var(--soft-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-info i {
    width: 25px;
    color: var(--soft-gold);
}

.map-container {
    height: 300px;
    background: #222;
    border: 1px solid var(--soft-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0.8;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* Added footer mobile styles */
    .mobile-nav {
        display: flex !important;
    }

    body {
        padding-bottom: 80px;
    }

    nav {
        padding: 0 20px;
    }

    .logo {
        font-size: 1rem;
        white-space: nowrap;
        gap: 10px;
    }

    .logo-img {
        height: 45px;
    }

    .logo span {
        font-size: 1rem;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-logo img {
        height: 65px;
    }

    header .btn-royal {
        padding: 8px 15px !important;
        font-size: 0.75rem;
    }
}