/* =============================================
   SIROT & CHARON - Custom CSS
   Thème Sombre - Noir & Or
   Titres: Playfair Display
   ============================================= */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700;800&display=swap');

/* Variables */
:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #0d0d0d;
    --accent-gold: #d4af37;
    --accent-gold-light: #e8c547;
    --text-light: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border-color: #333333;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'EB Garamond', serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
}

h1, h2, h3, h4, h5 {
    font-family: 'Abel', sans-serif;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

.display-3 {
    font-family: 'Abel', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.display-5 {
    font-family: 'Abel', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.display-6 {
    font-family: 'Abel', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
}

/* Colors */
.text-gold {
    color: var(--accent-gold) !important;
}

.text-light-secondary {
    color: var(--text-secondary) !important;
    transition: color 0.3s ease;
}

/* Page header */
.page-header {
    padding-bottom: 0.5rem !important;
}

/* Navigation */
.navbar {
    background:
        linear-gradient(180deg, rgba(13, 13, 13, 0.08) 0%, rgba(13, 13, 13, 0.16) 100%),
        url('img/bandeau-texture-header.png') center center / auto 100% repeat-x !important;
    border-bottom: 2px solid var(--accent-gold);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.brand-text {
    color: var(--accent-gold) !important;
}

.nav-link {
    color: var(--text-light) !important;
    font-size: 1.1rem;
    margin-left: 1.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    background:
        linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, rgba(26, 26, 26, 0.4) 100%),
        url('img/roues-panoramique.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0)),
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.hero h1 {
    color: var(--text-light);
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero-logo {
    width: min(360px, 56%);
    height: auto;
    margin-top: 4rem;
}

.hero-location {
    font-family: 'Abel', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-handwritten {
    font-family: 'Birthstone', cursive;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1.1;
    color: var(--text-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-content {
    transform: translateY(-48px);
}

.hero .lead {
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.6s both;
    border-width: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero .btn-outline-light:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--secondary-dark);
}

.bottle-showcase {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
}

/* Presentation Section */
.presentation-section {
    background-color: var(--primary-dark);
    border-bottom: 1px solid var(--border-color);
}

.presentation-section h2 {
    position: relative;
    padding-bottom: 1rem;
}

.presentation-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
}

.presentation-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.presentation-section ul li i {
    color: var(--accent-gold);
}

.presentation-section ul li span {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.card {
    border-color: var(--border-color) !important;
    border-width: 2px;
    transition: all 0.3s ease;
    background-color: var(--secondary-dark) !important;
}

.card-link {
    text-decoration: none;
}



.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold) !important;
}

.card-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

.border-gold {
    border-color: var(--border-color) !important;
}



/* Footer */
footer {
    background-color: var(--secondary-dark) !important;
    border-top: 2px solid var(--accent-gold);
}

footer h5 {
    font-weight: 700;
    font-size: 1.3rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-gold) !important;
}

footer hr {
    border-color: var(--border-color) !important;
}

/* Buttons */
.btn {
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    font-size: 0.95rem;
}

.btn-outline-light {
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-start-visit {
    background-color: rgba(0, 0, 0, 0.22);
}

.btn-start-visit:hover {
    background-color: var(--accent-gold);
}

.btn-outline-light:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--secondary-dark);
}

.btn-primary {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--secondary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
}

/* Forms */
.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: 'EB Garamond', serif;
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

select.form-control {
    background-color: var(--secondary-dark);
    color: var(--text-light);
}

select.form-control option {
    background-color: var(--secondary-dark);
    color: var(--text-light);
}

select.form-control option:checked {
    background-color: #2a2a2a;
    color: var(--text-light);
}

.form-label {
    color: var(--text-light);
    font-weight: 600;
}

/* Links */
a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold-light);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Age Verification Modal */
.modal-content {
    background-color: var(--secondary-dark) !important;
}

.modal-header {
    border-bottom-color: var(--border-color) !important;
}

.modal-footer {
    border-top-color: var(--border-color) !important;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-body p {
    font-family: 'EB Garamond', serif;
}

.epilogue-poem {
    max-width: 980px;
}

@media (min-width: 992px) {
    .epilogue-poem {
        max-width: 760px;
        text-align: center;
    }

    .epilogue-poem p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1, .display-3 {
        font-size: 2.5rem;
    }

    h2, .display-5, .display-6 {
        font-size: 1.8rem;
    }

    .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }

    .hero .lead {
        font-size: 1.2rem;
    }

    .hero {
        min-height: 74vh;
        background-position: center top;
    }

    .hero-content {
        transform: translateY(-48px);
    }

    .presentation-section h2::after {
        width: 60px;
    }

    .card-body {
        padding: 2rem 1rem !important;
    }

    .bottle-showcase {
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    h1, .display-3 {
        font-size: 2rem;
    }

    h2, .display-5, .display-6 {
        font-size: 1.5rem;
    }

    body {
        font-size: 1rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .hero {
        min-height: 60vh;
        background-position: center top;
    }

    .hero-content {
        transform: translateY(-56px);
    }
}
