/* Global Styles */
:root {
    --primary-color: #8B4513;
    /* Saddle Brown - Leather tone */
    --primary-dark: #5D2906;
    --text-color: #1a1a1a;
    --bg-color: #ffffff;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
    --accent-color: #d4a017;
    /* Gold/Bronze for luxury feel */
    --white: #ffffff;
    --black: #000000;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--black);
    position: relative;
    display: inline-block;
}

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

.text-center .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

/* Advertisement Note Top */
.ad-note-top {
    background-color: #f0f0f0;
    color: #666;
    font-size: 0.8rem;
    text-align: center;
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
}

/* Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background-color: #eee;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

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

@keyframes loading {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Header & Navbar */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.navbar {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-color);
    font-size: 1.05rem;
}

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

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-btn .bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--black);
    margin: 5px 0;
    transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 75%;
    height: auto;
    /* Height according to elements */
    min-height: 300px;
    /* Minimal height so it doesn't look broken */
    max-height: 100vh;
    overflow-y: auto;
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 0 0 0 20px;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 5px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active .mobile-nav-content {
    right: 0;
}

.mobile-nav-cta {
    margin-top: 20px;
    text-align: center;
    width: 100%;
    background-color: var(--black);
    /* Make it distinct in menu */
    color: var(--white);
    border-color: var(--black);
}

.mobile-nav-cta:hover {
    background-color: transparent;
    color: var(--black);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.brand-name-mobile {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.close-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--black);
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--black);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 90%;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-content {
    padding-right: 20px;
}

.about-image-wrapper {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.section-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

/* Features Section */
.features-section {
    background-color: var(--light-bg);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border-top: 5px solid transparent;
}

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

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

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

.feature-desc {
    color: #666;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border: 1px solid #eee;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--black);
    text-align: right;
}

/* FAQ Section */
.faq-section {
    background-color: #fcfcfc;
}

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

.faq-item {
    background-color: var(--white);
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #555;
}

.faq-question.active+.faq-answer {
    max-height: 200px;
    /* Adjust if content is longer */
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

/* Footer */
.footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 20px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-heading {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 8px;
}

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

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

.footer-address {
    font-style: normal;
    line-height: 1.8;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    border-top: 1px solid #222;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-ad-note {
    text-align: center;
    font-size: 0.75rem;
    color: #444;
    margin-top: 10px;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 5px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #777;
}

.modal-content h3 {
    margin-bottom: 20px;
    color: var(--black);
    font-size: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-left: 5px solid var(--primary-color);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    border: none;
    transition: var(--transition);
}

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

.cookie-btn.accept:hover {
    background-color: var(--primary-dark);
}

.cookie-btn.reject {
    background-color: #f0f0f0;
    color: #444;
}

.cookie-btn.reject:hover {
    background-color: #e0e0e0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

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

@media (max-width: 768px) {

    .nav-links,
    .hamburger-btn {
        display: none;
        /* Hide default nav, show hammer in script/css logic if needed */
    }

    .hamburger-btn {
        display: block;
        /* Show hamburger on mobile */
    }

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

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        order: -1;
        /* Image on top on mobile */
        max-width: 500px;
        margin: 0 auto;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 50px 0;
    }

    .modal-content {
        padding: 25px;
    }
}