/* =====================================================
   NAT CHELLY MOHEL - Main Stylesheet (Redesign)
   ===================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lato:wght@300;400;700&display=swap');

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    /* Colors */
    --primary-blue: #0f3460;
    --primary-gradient: linear-gradient(90deg, #16213e 0%, #1a4a8d 50%, #16213e 100%);
    --header-gradient: linear-gradient(90deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    /* Deep blue/teal mix */

    /* The specific blue from the screenshots looks more like a deep royal blue */
    --royal-blue: #003366;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-muted: #666666;

    --bg-light: #ffffff;
    --bg-off-white: #f9f9f9;

    /* Typography */
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Transitions */
    --transition: 0.3s ease;
}

/* =====================================================
   Reset & Base Styles
   ===================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   Helper Classes
   ===================================================== */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.text-script {
    font-family: var(--font-script);
}

/* =====================================================
   Header
   ===================================================== */
/* =====================================================
   Header
   ===================================================== */
.header {
    background: linear-gradient(90deg, #103357 0%, #1e5588 100%);
    /* Premium Royal Blue Gradient */
    padding: 10px 0;
    color: #fff;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    /* Wider container for menu */
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-circle:hover {
    border-color: #ffd700;
    transform: scale(1.05);
}

.logo-circle i {
    font-size: 1.8rem;
    color: #fff;
    transform: rotate(-30deg);
    /* Slight tilt for style */
}

.nav-menu {
    display: flex;
    gap: 40px;
    margin: 0 auto;
    /* Center the menu items */
    padding-right: 60px;
    /* Balance the logo width for true centering */
}

.nav-link {
    color: #fff;
    font-size: 1rem;
    text-transform: none;
    /* As per screenshot 'Accueil' not 'ACCUEIL' */
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
    /* Gold */
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* =====================================================
   Hero Section (The Main Look)
   ===================================================== */
.hero {
    background-color: var(--bg-light);
    padding: 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: center;
    min-height: 80vh;
}

/* Side Images */
.hero-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 80vh;
}

.hero-image-container {
    height: 100%;
    overflow: hidden;
}

.hero-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

/* Center Content */
.hero-content {
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.main-title {
    font-family: var(--font-script);
    font-size: 4.5rem;
    color: var(--royal-blue);
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: 400;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--royal-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 300;
}

.sub-subtitle {
    font-size: 1.5rem;
    color: var(--royal-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 700;
}

.center-icon {
    width: 100px;
    height: 100px;
    background-color: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 40px;
}

.center-icon i {
    font-size: 3rem;
    color: white;
}

.hero-btn {
    background-color: #0f1c3f;
    /* Darker blue */
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(15, 28, 63, 0.2);
}

.hero-btn:hover {
    background-color: var(--royal-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 28, 63, 0.3);
}

.trust-text {
    margin-top: 30px;
    font-family: var(--font-script);
    color: var(--royal-blue);
    font-size: 1.8rem;
}

/* =====================================================
   Inner Pages & Sections
   ===================================================== */
.page-header {
    background-color: var(--bg-off-white);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.page-title {
    color: var(--royal-blue);
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}

.content-section {
    padding: 60px 0;
}

.section-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background-color: var(--royal-blue);
    color: white;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a:hover {
    color: #ffd700;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-container {
        display: none;
        /* Hide side images on tablet/mobile to focus on content */
    }

    .hero-content {
        padding: 60px 20px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f2027;
        /* Matches header start */
        padding: 20px;
        text-align: center;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }
}

/* =====================================================
   Brit Mila Specific Styles
   ===================================================== */
.section-banner {
    background-color: var(--royal-blue);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin: 50px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.section-banner h2 {
    margin: 0;
    font-size: 2.8rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.icon-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 80px 0;
    text-align: center;
}

.icon-col-item {
    padding: 20px;
}

.icon-col-img {
    font-size: 5rem;
    margin-bottom: 25px;
    color: #444;
    /* Dark grey icons like screenshot */
}

/* Specific icon colors if needed, but screenshot shows grey/black */
.fa-ring {
    color: #888;
}

.fa-question {
    color: #007bff;
    /* Blue question mark */
    font-weight: 900;
    font-size: 6rem;
}

.fa-wine-bottle {
    color: #333;
}

.icon-col-title {
    font-family: var(--font-script);
    color: var(--royal-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.watermark-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.watermark-icon {
    position: absolute;
    opacity: 0.1;
    /* Very faint */
    z-index: -1;
    color: #87ceeb;
    /* Sky blue tint */
}

.watermark-left {
    top: 50px;
    left: -100px;
    font-size: 25rem;
    transform: rotate(25deg);
}

/* =====================================================
   New Blue Bar Footer
   ===================================================== */
.footer-blue-bar {
    background-color: var(--royal-blue);
    /* Solid blue */
    color: white;
    padding: 30px 0;
    width: 100%;
}

.footer-bar-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
}

.footer-item i {
    font-size: 1.5rem;
    color: #ffd700;
    /* Gold/Yellow icon per screenshot */
}

.footer-item a {
    color: white;
    font-weight: 500;
}

.footer-item a:hover {
    text-decoration: underline;
}

/* =====================================================
   About Page Styles
   ===================================================== */
.about-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
}

.about-text-block {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: left;
    /* Justify or left per screenshot looks left/justify mix */
}

.about-slider-section {
    margin-top: 60px;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.slider-img {
    height: 300px;
    width: auto;
    border-radius: 5px;
    object-fit: cover;
}


.watermark-right {
    top: 50px;
    right: -100px;
    font-size: 25rem;
    transform: rotate(-25deg);
    color: #f0e68c;
    /* Pale yellow layout for bottle */
}

.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prep-list {
    list-style: none;
    font-size: 1.2rem;
    text-align: center;
    line-height: 2;
}


.prep-list li:before {
    content: "- ";
}

/* =====================================================
   FAQ Page Styles (Grid Layout)
   ===================================================== */
.faq-section-title {
    color: var(--royal-blue);
    font-size: 2.2rem;
    text-transform: uppercase;
    margin: 40px 0 30px;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.faq-card {
    background-color: rgba(255, 255, 255, 0.9);
    /* Semi-transparent white */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    text-align: center;
}

.faq-card h3 {
    color: #333;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.faq-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Background Image Container */
.faq-background-container {
    background: url('3f3a5b_d8392a4050bc40b5bb45d7bbe1396080~mv2.avif') no-repeat center center/cover;
    position: relative;
    padding: 60px 0;
}

.faq-overlay {
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.faq-content-relative {
    position: relative;
    z-index: 2;
}


.faq-contact-btn {
    display: inline-block;
    background-color: var(--royal-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
    text-transform: uppercase;
}

.faq-contact-btn:hover {
    background-color: #1a4a8d;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   New Premium Contact CTA Styles
   ===================================================== */
.contact-cta-wrapper {
    margin-top: 60px;
    position: relative;
    padding: 3px;
    background: linear-gradient(45deg, #ffd700, #b8860b, #ffd700);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-cta-box {
    background: white;
    padding: 40px;
    border-radius: 17px;
    text-align: center;
}

.contact-cta-title {
    color: var(--royal-blue);
    font-family: var(--font-header);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-cta-text {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--royal-blue) 0%, #1a4a8d 100%);
    color: white;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(15, 52, 96, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-premium:hover {
    background: white;
    color: var(--royal-blue);
    border-color: var(--royal-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 52, 96, 0.4);
}

.btn-premium i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-premium:hover i {
    transform: translateX(5px);
}