/* CSS Variables for a premium palette */
:root {
    --primary-color: #C5A059;
    --primary-light: #D4AF37;
    --primary-dark: #A6803E;
    --secondary-color: #1A1A1A;
    --text-color: #333333;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-ivory: #FDFCF0;
    --bg-muted: #F8F8F8;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --header-height: 80px;
}

/* Reset and Base Styles - Avoiding * and direct tag styling where possible */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.loader-bar {
    width: 150px;
    height: 2px;
    background: rgba(197, 160, 89, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    animation: loading 1.5s infinite;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loading {
    to {
        left: 100%;
    }
}

/* Ad Bars */
.top-ad-bar {
    background: var(--bg-muted);
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.ad-text-top {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.ad-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Header */
.main-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.logo-link {
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    text-align: center;
    white-space: nowrap;
}

.header-cta {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-color);
}

.btn-outline:hover {
    background: var(--bg-muted);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-mobile-close {
    display: none;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: var(--bg-ivory);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 8vw, 4rem);
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.image-gradient-bg {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(197, 160, 89, 0.05));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    animation: blobMove 10s infinite alternate;
}

.hero-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

@keyframes blobMove {
    from {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    to {
        border-radius: 30% 70% 50% 50% / 50% 30% 70% 40%;
    }
}

/* Common Section Styling */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.text-center {
    text-align: center;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-section {
    padding: 100px 0;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 15px;
}

.shadow {
    box-shadow: var(--shadow-medium);
}

/* Features */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Details Section */
.details-section {
    padding: 100px 0;
}

.details-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.details-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
}

.details-list li strong {
    color: var(--secondary-color);
    width: 120px;
    display: inline-block;
}

.details-cta {
    margin-top: 40px;
}

.gallery-main img {
    width: 100%;
    margin-bottom: 20px;
}

.gallery-thumbs {
    display: flex;
    gap: 15px;
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumb:hover {
    border-color: var(--primary-color);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--secondary-color);
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* FAQ */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question svg {
    width: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Footer */
.main-footer {
    padding: 80px 0 40px;
    background: var(--bg-muted);
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-light);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 40px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 500px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: none;
    animation: slideUp 0.5s forwards;
}

.cookie-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cookie-btns {
    display: flex;
    gap: 15px;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    animation: scaleIn 0.3s forwards;
}

.modal-header {
    background: var(--bg-muted);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
}

.modal-close {
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .details-card {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

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

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .main-header {
        padding: 0;
    }

    .hamburger-menu {
        display: flex;
        order: 3;
    }

    .logo-area {
        order: 1;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
        order: 2;
    }

    .header-cta {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: white;
        z-index: 2000;
        display: flex;
        flex-direction: column;
        padding: 100px 40px;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-mobile-close {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        color: var(--secondary-color);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .details-list li strong {
        width: auto;
        display: block;
        margin-bottom: 5px;
    }

    /* Fix hero button alignment */
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn-secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        padding: 12px 24px;
    }

    .cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 20px;
    }

    .cookie-btns {
        flex-direction: column;
    }
}

/* Animations for Scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}