/* Global Styles */
:root {
    --primary-color: #5d4037;
    /* Leather Brown */
    --secondary-color: #1a1a1a;
    --background-color: #fdfbf7;
    /* Slight warm off-white */
    --text-color: #333333;
    --light-grey: #e0e0e0;
    --border-radius: 4px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
    --max-width: 1200px;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #3e2723;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ddd;
    color: #333;
}

.btn-secondary:hover {
    color: #333;
}

.btn-secondary:hover {
    background-color: #ccc;
}

/* Top Advertisement Disclaimer */
.top-ad-disclaimer {
    background-color: #f0f0f0;
    /* Grey */
    color: #000000;
    /* Black */
    font-size: 13px;
    text-align: center;
    padding: 8px 0;
    width: 100%;
}

/* Page Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    padding: 25px;
    border-radius: var(--border-radius);
    width: 300px;
    z-index: 1000;
    display: none;
    border-left: 5px solid var(--primary-color);
}

.cookie-title {
    margin-top: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.cookie-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #666;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
}

.cookie-accept,
.cookie-reject {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: var(--secondary-color);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.header-btn {
    font-size: 0.85rem;
    padding: 10px 20px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(to right, #fdfbf7 50%, #fff 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #555;
    font-weight: 300;
}

.hero-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.hero-feature-item {
    margin-bottom: 12px;
    font-weight: 500;
    color: #444;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 20px 20px 0px rgba(93, 64, 55, 0.1);
    /* Stylized shadow */
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #555;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: #fff;
    padding: 35px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--primary-color);
}

.feature-title {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.feature-desc {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fafafa;
    padding: 40px;
    border-radius: var(--border-radius);
    position: relative;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 20px;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* FAQs */
.faq-section {
    padding: 80px 0;
    background-color: #fdfbf7;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
}

.faq-question {
    margin: 0 0 10px 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.faq-answer {
    margin: 0;
    color: #666;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 70px 0 20px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-heading {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.footer-text,
.footer-link,
.footer-small {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-link-list {
    list-style: none;
    padding: 0;
}

.footer-small {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
}

.footer-advertisement {
    border-top: 1px solid #444;
    padding-top: 25px;
    text-align: center;
}

.ad-heading {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.ad-note {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.3s;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    margin-top: 0;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.modal-body {
    line-height: 1.6;
    color: #444;
}

.modal-body p {
    margin-bottom: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        background: #fdfbf7;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-features-list {
        display: inline-block;
        text-align: left;
    }

    .cookie-popup {
        width: auto;
        left: 20px;
        right: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}