/*==================================================
GOODAYSUNSHINE
Version 1.0
==================================================*/


/*==================================================
RESET
==================================================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Inter",sans-serif;

    background:#f7f5f2;

    color:#222;

    line-height:1.75;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}


/*==================================================
VARIABLES
==================================================*/

:root{

    --green:#294542;

    --orange:#d18b29;

    --cream:#f7f5f2;

    --dark:#181818;

    --text:#4b4b4b;

    --container:1240px;

}


/*==================================================
TYPOGRAPHIE
==================================================*/

h1,
h2,
h3{

    font-family:"Cormorant Garamond",serif;

    font-weight:600;

    color:var(--dark);

}

h1{

    font-size:92px;

    line-height:.82;

    letter-spacing:3px;

}

h2{

    font-size:56px;

    margin-bottom:18px;

}

h3{

    font-size:34px;

}

h4{

    font-size:15px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    color:var(--orange);

    margin:18px 0;

}

p{

    font-size:18px;

    color:var(--text);

    line-height:1.9;

    margin-bottom:22px;

}


/*==================================================
LAYOUT
==================================================*/

.container{

    width:min(92%,var(--container));

    margin:auto;

}

.section{

    padding:85px 0;

}

.section-title{

    margin-bottom:60px;

}

.section-title h2{

    position:relative;

}

.section-title h2::after{

    content:"";

    display:block;

    width:70px;

    height:3px;

    margin-top:18px;

    background:var(--orange);

}


/*==================================================
HEADER
==================================================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    padding:20px 0;

    background:rgba(0,0,0,.08);

    backdrop-filter:blur(8px);

    transition:.35s;

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}


/*==================================================
LOGO
==================================================*/

.logo img{

    width:150px;

    transition:.35s;

}


/*==================================================
MENU
==================================================*/

nav ul{

    display:flex;

    gap:48px;

}

nav a{

    position:relative;

    color:white;

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    text-shadow:0 2px 10px rgba(0,0,0,.45);

    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--orange);

    transition:.3s;

}

nav a:hover{

    color:white;

}

nav a:hover::after{

    width:100%;

}


/*==================================================
HEADER AU SCROLL
==================================================*/

header.scrolled{

    background:rgba(255,255,255,.94);

    backdrop-filter:blur(12px);

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    padding:14px 0;

}

header.scrolled nav a{

    color:var(--dark);

    text-shadow:none;

}

header.scrolled .logo img{

    width:135px;

}

/*==================================================
HERO
==================================================*/

.hero{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    background-image:url("../images/hero/home.jpg");

    background-size:cover;

    background-position:60% center;

    background-repeat:no-repeat;

    overflow:hidden;

}


/*==================================================
OVERLAY
==================================================*/

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.55) 28%,
        rgba(0,0,0,.22) 58%,
        rgba(0,0,0,.05) 100%
    );

}


/*==================================================
CONTENU HERO
==================================================*/

.hero-content{

    position:relative;

    z-index:2;

    display:flex;

    align-items:center;

    height:100%;

}

.hero-text{

    max-width:620px;

    padding-top:60px;

}


/*==================================================
TITRES HERO
==================================================*/

.hero-text h1{

    color:white;

    font-size:96px;

    line-height:.82;

    letter-spacing:3px;

    margin-bottom:18px;

}

.hero-text h2{

    color:white;

    font-size:34px;

    font-weight:400;

    margin-bottom:35px;

}

.hero-text h2::after{

    display:none;

}

.hero-text p{

    color:rgba(255,255,255,.92);

    max-width:540px;

    font-size:21px;

    line-height:1.9;

    margin-bottom:50px;

}


/*==================================================
BOUTON
==================================================*/

.hero-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border:1px solid rgba(255,255,255,.9);

    color:white;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:13px;

    font-weight:600;

    transition:.35s;

}

.hero-button:hover{

    background:white;

    color:#181818;

}


/*==================================================
LIGNE DECORATIVE
==================================================*/

.hero-text::before{

    content:"";

    display:block;

    width:70px;

    height:3px;

    background:var(--orange);

    margin-bottom:32px;

}


/*==================================================
INDICATEUR SCROLL
==================================================*/

.hero::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:32px;

    width:2px;

    height:60px;

    background:rgba(255,255,255,.45);

    transform:translateX(-50%);

}


/*==================================================
RESPONSIVE HERO
==================================================*/

@media(max-width:900px){

    .hero{

        background-position:70% center;

    }

    .hero-text{

        max-width:100%;

    }

    .hero-text h1{

        font-size:64px;

    }

    .hero-text h2{

        font-size:28px;

    }

    .hero-text p{

        font-size:18px;

    }

}

@media(max-width:600px){

    .hero{

        background-position:74% center;

    }

    .hero-text{

        padding-top:40px;

    }

.hero-text h1{
    font-size:42px;
    letter-spacing:-1px;

    }

    .hero-text h2{

        font-size:22px;

    }

    .hero-text p{

        font-size:17px;

        line-height:1.7;

    }

    .hero-button{

        width:100%;

    }

}

/*==================================================
LE LABEL
==================================================*/

.label-grid{

    display:grid;

    grid-template-columns:0.50fr 1.50fr;

    gap:100px;

    align-items:center;

}

.label-photo{

    display:flex;

    justify-content:center;

}

.label-photo img{

    width:100%;

    max-width:400px;

    border-radius:12px;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

    transition:.45s;

}

.label-photo:hover img{

    transform:scale(1.03);

}

.label-text{

    max-width:700px;

}

.label-text p{

    font-size:18px;

    text-align:justify;

    line-height:2;

}


/*==================================================
ARTISTES
==================================================*/

.artist-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:45px;

}

.artist-card{

    position:relative;

    overflow:hidden;

    border-radius:10px;

    min-height:560px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.artist-card img{

    width:100%;

    height:560px;

    object-fit:cover;

    transition:.6s;

}

.artist-card:hover img{

    transform:scale(1.05);

}

.artist-content{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:40px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.92)
    );

}

.artist-content h3{

    color:white;

    margin-bottom:8px;

}

.artist-content h4{

    color:var(--orange);

    margin-bottom:18px;

}

.artist-content p{

    color:rgba(255,255,255,.88);

    margin-bottom:28px;

    line-height:1.7;

}

/*-------------------------
BOUTON ARTISTE
-------------------------*/

.artist-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border:1px solid rgba(255,255,255,.95);

    color:white;

    background:transparent;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:12px;

    font-weight:600;

    transition:.35s;

}

.artist-button:hover{

    background:white;

    color:#181818;

}


/*==================================================
CONTACT
==================================================*/

.contact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:50px;

}

.contact-grid div{

    padding:35px 0;

    border-top:2px solid var(--orange);

}

.contact-grid h3{

    margin-bottom:20px;

}

.contact-grid a{

    transition:.3s;

}

.contact-grid a:hover{

    color:var(--orange);

}


/*==================================================
FOOTER
==================================================*/

footer{

    margin-top:100px;

    background:var(--dark);

    color:white;

    border-top:2px solid var(--orange);

    padding:35px 0;

}

.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-content p{

    color:rgba(255,255,255,.70);

    margin:0;

    font-size:14px;

}


/*==================================================
ANIMATIONS
==================================================*/

.section{

    opacity:1;

    transform:none;

}


/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ece8e2;

}

::-webkit-scrollbar-thumb{

    background:var(--orange);

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1000px){

    .label-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .artist-grid{

        grid-template-columns:1fr;

    }

    .contact-grid{

        grid-template-columns:1fr;

    }

    .footer-content{

        flex-direction:column;

        gap:20px;

        text-align:center;

    }

}

@media(max-width:700px){

    .section{

        padding:80px 0;

    }

    h2{

        font-size:40px;

    }

    .label-photo img{

        max-width:300px;

    }

    .artist-card{

        min-height:420px;

    }

    .artist-card img{

        height:420px;

    }

    .artist-content{

        padding:28px;

    }

}

/*==================================================
PASTEUR HERO
==================================================*/

.pasteur-hero{

    background-image:url("../images/pasteur/clavier-statue.jpg");
    background-position:center center;

}

/*==================================================
PASTEUR - INFOS
==================================================*/

.info-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.info-card{

    background:white;

    padding:40px;

    border-radius:12px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.info-card h3{

    color:var(--orange);

    margin-bottom:15px;

    font-size:18px;

    text-transform:uppercase;

    letter-spacing:2px;

}

.info-card p{

    margin:0;

    line-height:1.8;

}

/*==================================================
VIDEO
==================================================*/

.video-wrapper{

    max-width:1000px;

    margin:0 auto;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.video-wrapper iframe{

    width:100%;

    aspect-ratio:16 / 9;

    display:block;

}


/*==================================================
GALERIE
==================================================*/

.gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

}

.gallery img{

    width:100%;

    aspect-ratio:1;

    object-fit:cover;

    border-radius:10px;

    transition:.35s;

    cursor:pointer;

}

.gallery img:hover{

    transform:scale(1.03);

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:800px){

    .gallery{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:600px){

    .gallery{

        grid-template-columns:1fr;

    }

}

/*==================================================
BOOKING
==================================================*/

.booking{

    max-width:700px;

    margin:auto;

    text-align:center;

}

.booking p{

    margin-bottom:20px;

}

.booking .hero-button{

    margin-top:25px;

}

/*==================================================
BOOKING BANNER
==================================================*/

.booking-banner{

    position:relative;

    min-height:70vh;

    background:url("../images/gumbo/scene-02.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

}

.booking-overlay{

    position:absolute;

    inset:0;

    background:rgba(15,15,15,.60);

}

.booking-content{

    position:relative;

    z-index:2;

    max-width:900px;

    color:white;

    padding:40px;

}

.booking-content h2{

    font-family:"Cormorant Garamond",serif;

    font-size:72px;

    line-height:1;

    margin-bottom:25px;

}

.booking-content p{

    font-size:24px;

    line-height:1.7;

    margin-bottom:40px;

    opacity:.95;

}

/*==================================================
BOOKING V2
==================================================*/

.booking-subtitle{

    display:block;

    margin-bottom:20px;

    color:var(--orange);

    letter-spacing:4px;

    font-size:13px;

    text-transform:uppercase;

}

.booking-content h2{

    color:white;

    font-size:72px;

    line-height:.95;

    margin-bottom:25px;

}

.booking-content p{

    color:white;

    font-size:22px;

    margin-bottom:40px;

}

.booking-link{

    display:block;

    margin-top:35px;

    color:white;

    opacity:.75;

    transition:.3s;

}

.booking-link:hover{

    opacity:1;

}

/*==================================================
VIDEO CARD
==================================================*/


}

.video-card img{

    display:block;

    width:100%;

    height:auto;

    transition:.45s;

}

.video-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.25);

    transition:.35s;

}

.video-card::after{

    content:"▶";

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:90px;

    height:90px;

    border-radius:50%;

    background:rgba(255,255,255,.90);

    color:#222;

    font-size:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.video-card:hover{

    transform:translateY(-6px);

    box-shadow:0 28px 55px rgba(0,0,0,.22);

}

.video-card:hover img{

    transform:scale(1.03);

}

.video-card:hover::before{

    background:rgba(0,0,0,.15);

}

.video-card:hover::after{

    transform:translate(-50%,-50%) scale(1.08);

    background:white;

}

.video-card{

    position:relative;

    display:block;

    max-width:650px;      /* avant 1000px */

    margin:0 auto;

    border-radius:14px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    transition:.35s;


}

.gumbo-hero{

    background-image:url("../images/gumbo/hero.jpg");

}

