/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-color: #2c4c3b; /* Deep forest green */
    --primary-light: #4a7c59;
    --secondary-color: #d4af37; /* Soft gold */
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --bg-light: #faf9f6; /* Off white */
    --bg-dark: #1e2923;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

/* Typography Helpers */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-dark-forest { background-color: var(--bg-dark) !important; color: var(--text-light); }

/* Buttons */
.btn-custom {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: 1px solid var(--secondary-color);
    transition: var(--transition);
}
.btn-custom:hover {
    background-color: transparent;
    color: var(--secondary-color);
}
.btn-outline-custom {
    background-color: transparent;
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: 1px solid var(--secondary-color);
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Navbar */
.navbar {
    background-color: rgba(30, 41, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color) !important;
    letter-spacing: 2px;
}
.nav-link {
    color: var(--text-light) !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--secondary-color) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}
.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}
.hero-content h1 {
    font-size: 64px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-content p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* Page Header */
.page-header {
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 76px; /* navbar height */
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}
.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 48px;
    color: #fff;
}

/* Cards & Elements */
.luxury-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.luxury-card img {
    transition: var(--transition);
}
.luxury-card:hover img {
    transform: scale(1.05);
}
.card-body-luxury {
    padding: 30px;
    background-color: #fff;
    text-align: center;
}

/* Features */
.feature-box {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border: 1px solid #eee;
    transition: var(--transition);
}
.feature-box:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}
.footer h4 {
    color: var(--secondary-color);
    margin-bottom: 25px;
}
.footer p, .footer li {
    color: #ccc;
    font-size: 15px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--secondary-color);
}
.bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.form-control {
    border-radius: 0;
    padding: 15px;
    border: 1px solid #ddd;
}
.form-control:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

/* Utilities */
.section-padding { padding: 100px 0; }
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 40px;
    position: relative;
    padding-bottom: 20px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 40px; }
    .section-padding { padding: 60px 0; }
    .page-header h1 { font-size: 32px; }
}


/* Lenis required CSS */
html.lenis, html.lenis body { height: auto; width: 100vw; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }
