/* ===== CSS Variables - Update These Colors Based on Your Image ===== */
:root {
    /* Base Colors - Update these with the colors surrounding your logo */
    --primary: #1a1a1a;       /* Main dark color (likely from logo surround) */
    --secondary: #d4af37;     /* Gold accent (adjust to match your gold) */
    --accent: #8b7355;        /* Optional secondary accent (e.g., brown/tan) */

    /* Derived Neutrals */
    --black: #1a1a1a;
    --dark: #333333;
    --medium: #666666;
    --light: #f8f5f0;         /* Cream/off-white */
    --white: #ffffff;

    /* Golden Palette */
    --gold: #d4af37;          /* Main gold */
    --gold-light: #f0e6c3;    /* Light gold for highlights */
    --gold-dark: #b8941f;     /* Dark gold for hover */

    /* Spacing */
    --section-padding: 5rem 2rem;
    --container-width: 1200px;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.btn-hero {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-size: 1.2rem;
    padding: 15px 40px;
    margin-top: 20px;
}

.btn-hero:hover {
    background: var(--white);
    color: var(--black);
}

.gold-accent {
    color: var(--gold);
    font-weight: 700;
}

/* ===== Navigation ===== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    position: relative;
}

.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--black);
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1498804103079-a6351b050096?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2067&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-overlay {
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-tagline {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== Page Header (for Menu & Contact) ===== */
.page-header {
    background: var(--light);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--medium);
}

/* ===== Intro & Features ===== */
.intro {
    padding: var(--section-padding);
    text-align: center;
    background: var(--white);
}

.intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--medium);
}

.features {
    padding: var(--section-padding);
    background: var(--light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--gold-light);
    font-style: italic;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--gold);
    padding-left: 10px;
}

.footer-links a {
    display: block;
    margin-bottom: 0.8rem;
    color: #ccc;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-social a {
    display: inline-block;
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #ccc;
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* ===== Contact Page Styles ===== */
.contact-page {
    padding: 3rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    color: var(--gold);
    font-size: 1.8rem;
}

.contact-text {
    margin-bottom: 2.5rem;
    color: var(--medium);
}

.info-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--gold);
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.social-contact {
    margin-top: 2.5rem;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1.2rem;
    background: var(--light);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold-light);
    color: var(--black);
}

.contact-form {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-label input {
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    background: var(--black);
    color: var(--white);
    font-size: 1.2rem;
    padding: 15px;
}

.btn-submit:hover {
    background: var(--gold);
    color: var(--black);
}

.map-container {
    margin-top: 4rem;
}

.map-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-placeholder {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.map-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.btn-map {
    background: var(--gold);
    color: var(--black);
    margin-top: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: 0.3s ease;
        z-index: 999;
    }
    .nav-menu.active {
        right: 0;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
