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

.gallery-hero{

    height:70vh;

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)
    ),

    url('../images/spa-banner.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:0 20px;

}

.hero-overlay span{

    color:#D4AF37;

    letter-spacing:5px;

    font-size:14px;

    font-weight:600;

}

.gallery-title{

    font-size:5rem;

    color:white;

    margin:20px 0;

    text-shadow:
    0 10px 30px rgba(0,0,0,.5);

}

.hero-overlay p{

    max-width:700px;

    margin:auto;

    color:#ddd;

    line-height:1.8;

    font-size:18px;

}

/* =========================
   ABOUT
========================= */

.gallery-about{

    padding:100px 10%;

    text-align:center;

    background:#0d0d0d;

}

.gallery-about h2{

    font-size:3rem;

    color:#D4AF37;

    margin-bottom:20px;

}

.gallery-about p{

    max-width:900px;

    margin:auto;

    color:#ccc;

    line-height:2;

    font-size:17px;

}

/* =========================
   GALLERY SECTION
========================= */

.gallery-section{

    padding:120px 8%;

    background:
    linear-gradient(
    180deg,
    #111111,
    #050505
    );

}

/* =========================
   GRID
========================= */

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(
    auto-fit,
    minmax(350px,1fr)
    );

    gap:35px;

}

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

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    height:420px;

    cursor:pointer;

    background:#111;

    border:
    1px solid rgba(212,175,55,.15);

    transition:.5s;

}

.gallery-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px
    rgba(212,175,55,.15);

}

/* =========================
   IMAGE
========================= */

.gallery-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.gallery-card:hover img{

    transform:
    scale(1.1);

}

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

.gallery-overlay{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;

    padding:30px;

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

}

.gallery-overlay h3{

    color:#D4AF37;

    font-size:2rem;

    margin-bottom:10px;

}

.gallery-overlay p{

    color:#eee;

    line-height:1.8;

}

/* =========================
   GOLD BORDER ANIMATION
========================= */

.gallery-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:30px;

    padding:1px;

    background:
    linear-gradient(
    135deg,
    transparent,
    rgba(212,175,55,.6),
    transparent
    );

    -webkit-mask:
    linear-gradient(#fff 0 0)
    content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:
    xor;

    pointer-events:none;

}

/* =========================
   FLOATING LIGHT
========================= */

.gallery-card::after{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:
    radial-gradient(
    circle,
    rgba(212,175,55,.15),
    transparent
    );

    top:-100px;
    right:-100px;

    opacity:0;

    transition:.5s;

}

.gallery-card:hover::after{

    opacity:1;

}

/* =========================
   SECTION TITLE
========================= */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#D4AF37;

    letter-spacing:4px;

}

.section-title h2{

    color:white;

    font-size:3rem;

    margin-top:15px;

}

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

@media(max-width:768px){

.gallery-title{

    font-size:3rem;

}

.gallery-grid{

    grid-template-columns:1fr;

}

.gallery-card{

    height:320px;

}

.gallery-about h2{

    font-size:2.2rem;

}

}

/* VIDEO GALLERY */

.video-gallery{

    margin-top:80px;

}

.video-gallery h2{

    color:#D4AF37;

    font-size:50px;

    margin-bottom:30px;

}

.video-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:25px;

}

.video-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    border:1px solid rgba(212,175,55,.2);

    background:#111;

}

.video-card video{

    width:100%;

    height:450px;

    object-fit:cover;

    display:block;

}

.video-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:25px;

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

}

.video-overlay h3{

    color:#D4AF37;

    font-size:38px;

    margin-bottom:10px;

}

.video-overlay p{

    color:#fff;

    font-size:18px;

    line-height:1.6;

}