/* Core Variables & Resets */
:root {
    --primary-maroon: #4a1c22;
    --secondary-green: #1a3330;
    --accent-gold: #c6a25b;
    --bg-cream: #f9f6f0;
    --text-dark: #333333;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

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

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

header {
    background-color: var(--primary-maroon);
    padding: 6px 0;
    /* Reduced padding slightly to accommodate the new line */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Space between logo and contact info */
}

.logo {
    font-family: "Eczar", serif;
    font-weight: 500;
    font-size: 20px;
    font-style: normal;
    color: var(--accent-gold);
}


.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* About / Introduction Section */
#about {
    padding: 70px 0;
    background-color: var(--white);
    /* White background to contrast with the cream services section */
}

.about-container {
    max-width: 850px;
    /* Keeps the text from stretching too far, making it easier to read */
    text-align: center;
    margin: 0 auto;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.about-subtitle {
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 35px;
}

.about-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Styles the final sentence beautifully to make it stand out */
.highlight-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem !important;
    color: var(--primary-maroon) !important;
    font-weight: 500;
    margin-top: 40px !important;
    padding: 25px 0;
    border-top: 1px solid rgba(198, 162, 91, 0.4);
    /* Subtle gold top line */
    border-bottom: 1px solid rgba(198, 162, 91, 0.4);
    /* Subtle gold bottom line */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    #about {
        padding: 50px 0;
    }

    #about h2 {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .highlight-quote {
        font-size: 1.2rem !important;
        padding: 20px 0;
    }
}

/* Services Section */
#services {
    padding: 60px 0;
    background-color: var(--bg-cream);
}

#services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

#services h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 10px auto 0;
}

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent-gold);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-green);
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Contact / WhatsApp Section */
/* Contact / Social Media Section */
#contact {
    padding: 60px 0;
    background-color: var(--secondary-green);
    color: var(--white);
    text-align: center;
}

#contact h2 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

#contact p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* New Wrapper for Multiple Buttons */
.contact-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    /* Ensures buttons wrap to the next line on mobile */
}

/* Base style for all contact buttons */
.contact-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    min-width: 160px;
    /* Makes buttons look uniform */
}

.contact-social-btn:hover {
    transform: translateY(-3px);
    /* Gentle lift effect instead of scale */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Individual Brand Colors */
.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-facebook {
    background-color: #1877F2;
}

.btn-facebook:hover {
    background-color: #165bb5;
}

.btn-instagram {
    /* Instagram's official gradient */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-instagram:hover {
    /* Slightly darker gradient on hover */
    background: linear-gradient(45deg, #d8852e 0%, #cf5d36 25%, #c6233c 50%, #b8205c 75%, #a9167a 100%);
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 600px) {
    .contact-buttons-wrapper {
        gap: 15px;
        flex-direction: column;
        /* Stacks buttons vertically on very small screens */
    }

    .contact-social-btn {
        width: 100%;
        max-width: 280px;
        /* Prevents buttons from becoming too wide */
    }
}

/* Form Section */
#query {
    padding: 60px 0;
}

.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 700px;
}

#query h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

#query p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-maroon);
}

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

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-maroon);
    color: var(--accent-gold);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #361419;
}

/* Footer */
footer {
    background-color: var(--primary-maroon);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Video Testimonials Section - Horizontal Scroll */
#testimonials {
    padding: 60px 0;
    background-color: var(--bg-cream);
}

#testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
}

#testimonials h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 10px auto 0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Slider Container & Buttons */
.testimonial-slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

.scroll-btn {
    background-color: var(--primary-maroon);
    color: var(--accent-gold);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.scroll-btn:hover {
    background-color: var(--secondary-green);
    transform: scale(1.1);
}

.scroll-left {
    left: -20px;
}

.scroll-right {
    right: -20px;
}

/* The Scrollable Track */
.video-scroll-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 5px 30px 5px;
    /* Bottom padding for shadow visibility */
    -webkit-overflow-scrolling: touch;
    /* Smooth swiping on iOS */
    width: 100%;
}

/* Hide the ugly default scrollbar for a cleaner look */
.video-scroll-track::-webkit-scrollbar {
    display: none;
}

.video-scroll-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Individual Video Cards */
.video-card {
    flex: 0 0 auto;
    /* Prevents cards from shrinking */
    width: 320px;
    /* Fixed width for each card */
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-bottom: 4px solid var(--accent-gold);
    scroll-snap-align: center;
    /* Snaps beautifully when scrolling */
}

.video-card:hover {
    transform: translateY(-5px);
}

.testimonial-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    background-color: #000;
    display: block;
    object-fit: cover;
}

.video-caption {
    padding: 20px;
    text-align: center;
}

.video-caption h4 {
    color: var(--primary-maroon);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.video-caption p {
    font-size: 0.9rem;
    color: var(--secondary-green);
    font-weight: 500;
}

/* Hide scroll buttons on mobile so users just swipe */

.header-contact-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;

}

.header-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--primary-maroon);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contact-link:hover {
    color: var(--accent-gold);
}

.contact-divider {
    color: var(--accent-gold);
    opacity: 0.6;
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
    .header-contact-bar {
        flex-direction: column;
        /* Stacks the number and email on small screens */
        gap: 5px;
    }

    .contact-divider {
        display: none;
        /* Hides the vertical line when stacked */
    }
}

@media (max-width: 768px) {
    .scroll-btn {
        display: none;
    }

    .video-card {
        width: 280px;
    }

    /* Slightly smaller cards on mobile */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }

    #services h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 25px;
    }

    .whatsapp-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 15px;
    }
}