
/* =========================
   ROOT
========================= */
        :root{
  --td:#0B2B2B; --tm:#155E5E; --tr:#1A7A7A; --tb:#219898;
  --tl:#A8D8D8; --tp:#E4F4F4;
  --g:#C9A84C; --gl:#E2C47A; --gp:#F7EDD3;
  --w:#FFFFFF; --ow:#F9FAFA;
  --tx:#0B2B2B; --tx2:#2D5555; --tx3:#6B9090;
  --fd:'Playfair Display',serif; --fb:'DM Sans',sans-serif;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--cream);
  overflow-x:hidden;
}
/* ================= HERO ================= */
.hero{
  min-height:80vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:linear-gradient(140deg,#0B2B2B 0%,#0C3A3A 40%,#114848 70%,#0B2B2B 100%);
}
/* CIRCLES */
.hero::before{
  content:'';
  position:absolute;
  width:600px;
  height:600px;
  border-radius:50%;
  border:1px solid rgba(201,168,76,0.1);
  top:-150px;
  right:-100px;
}

.hero::after{
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  border-radius:50%;
  border:1px solid rgba(26,122,122,0.2);
  top:50px;
  right:50px;
}

/* CONTENT */
.hero-content{
  z-index:2;
  max-width:700px;
  padding:0 80px;
  animation:fadeUp 1.2s ease;
}

.hero-label{
  color:var(--g);
  font-size:11px;
  letter-spacing:4px;
  margin-bottom:20px;
}

.hero h1{
  font-family:'Playfair Display',serif;
  font-size:90px;
  line-height:0.95;
  color:white;
}

.hero h1 span{
  color:var(--g);
}

.hero-sub{
  font-size:20px;
  color:#219898;
  margin:20px 0;
  font-style:italic;
}

.hero p{
  color:rgba(255,255,255,0.6);
  margin-bottom:30px;
}

.hero-btn{
  padding:14px 35px;
  background:var( --g);
  color:var(--dark);
  text-decoration:none;
  font-size:12px;
  letter-spacing:2px;
  transition:0.3s;
}

.hero-btn:hover{
  background:#E2C47A;
  transform:translateY(-3px);
}

/* IMAGE */
.hero-img{
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:40%;
}

.hero-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.6;
}

.hero-img::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to right,#0B2B2B 0%,transparent 100%);
}

/* ANIMATION */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(40px);}
  to{opacity:1;transform:none;}
}

/* =========================
   EVENT VIDEOS
========================= */

.video-section{
  padding:30px 70px;
  background:var(#F9FAFA);
}

.section-title{
  text-align:center;
  margin-bottom:20px;
}

.section-title span{
  color:var( --g);
  letter-spacing:3px;
  font-size:11px;
}

.section-title h2{
  font-size:50px;
  color:var(--td);
  margin:20px 0;
  font-family:'Cormorant Garamond',serif;
}

.section-title p{
  max-width:700px;
  margin:auto;
  line-height:1.9;
  color:var(--mid);
}

.video-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.video-card{
  background:#fff;
  border-radius:26px;
  overflow:hidden;
  border: 1px solid var(--tb);
  box-shadow:0 15px 40px rgba(0,0,0,.06);
  transition:.4s;
}

.video-card:hover{
  transform:translateY(-8px);
}

.video-box{
  position:relative;
  height:280px;
  overflow:hidden;
}

.video-box video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:75px;
  height:75px;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(10px);
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  font-size:20px;
  border:1px solid rgba(255,255,255,.2);
}

.video-content{
  padding:25px;
}

.video-content h3{
  font-size:30px;
  margin-bottom:10px;
  color:var(--td);
  font-family:'Cormorant Garamond',serif;
}

.video-content p{
  color:var(--td);
  line-height:1.8;
  font-size:14px;
}

/* =========================
   EVENT COLLAGE
========================= */

.collage-section{
  padding:30px 7%;
  background:linear-gradient(to bottom,var(--td),#103939);
}

.collage-section .section-title h2,
.collage-section .section-title p{
  color:var(--ow);
}

.collage-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:220px;
  gap:18px;
}

.collage-item{
  overflow:hidden;
  border-radius:22px;
  position:relative;
}

.collage-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.collage-item:hover img{
  transform:scale(1.08);
}

.big{
  grid-row:span 2;
}

.wide{
  grid-column:span 2;
}

/* =========================
   GIFTING SECTION
========================= */

.gifting{
  padding:30px 9%;
  background:var(--ow);
}

.gift-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.gift-card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.06);
  transition:.4s;
  border: 1px solid var(--td);
}

.gift-card:hover{
  transform:translateY(-8px);
}

.gift-media{
  height:280px;
  overflow:hidden;
  position:relative;
}

.gift-media img,
.gift-media video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gift-content{
  padding:18px;
}

.gift-content h3{
  font-size:25px;
  margin-bottom:10px;
  color:var(--dark);
  font-family:'Cormorant Garamond',serif;
}

.gift-content p{
  color:var(--mid);
  line-height:1.8;
  font-size: 15px;
}

/* =========================
   CTA
========================= */

.cta{
  padding:60px 7%;
  background:
  linear-gradient(rgba(11,43,43,.88),
  rgba(11,43,43,.88)),
  url('https://ledamascafe.com/wp-content/uploads/2020/08/cozy-place.jpg') center/cover no-repeat;

  text-align:center;
}

.cta h2{
  font-size:40px;
  color:var(--gp);
  margin-bottom:10px;
  font-family:'Cormorant Garamond',serif;
}

.cta p{
  color:rgba(247,237,211,.8);
  max-width:700px;
  margin:auto;
  font-size: 12px;
  line-height:1.9;
  margin-bottom:40px;
}
.button{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.lux-btn1{
  text-decoration:none;
  padding:10px 22px;
  border-radius:50px;
  display: grid;
  margin-left: 450px;
  height: 50px;
  float: left;
  width: 200px;
  background:#C9A84C;
  color:white;
  border: 1px solid var(--g);
}

.lux-btn1:hover{
  background:var(--gl);
  color:var(--td);
  transform:translateY(-5px);
}
/* SECOND BUTTON */

.lux-btn2{
  text-decoration:none;
  padding:10px 22px;
  border-radius:50px;
  display: grid;
  height: 50px;
  margin-left: 10px;
  float: left;
  width: 200px;
  background:#C9A84C;
  color:white;
  border: 1px solid var(--g);
}

.lux-btn2:hover{
  background:var(--gl);
  color:var(--td);
  transform:translateY(-5px);
}
/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

  .video-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gift-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:991px){

  .collage-grid{
    grid-template-columns:repeat(2,1fr);
  }

  /* HERO */
  .hero{
    min-height:auto;
    padding:80px 0;
    flex-direction:column;
    justify-content:center;
  }

  .hero-content{
    max-width:100%;
    padding:0 40px;
    text-align:center;
  }

  .hero h1{
    font-size:60px;
  }

  .hero-sub{
    font-size:18px;
  }

  .hero-img{
    position:relative;
    width:100%;
    height:350px;
    visibility: hidden;
    margin-top:40px;
    display:none;
  }

  .hero-img::before{
    background:linear-gradient(to top,#0B2B2B 0%,transparent 100%);
  }
  
  .collage-grid{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:220px;
  }

  .wide{
    grid-column:span 2;
  }

  .big{
    grid-row:span 1;
  }

    .cta a{
    margin: 10px;
  }
}

@media(max-width:768px){


  .section-title h2,
  .cta h2{
    font-size:50px;
  }

    .collage-section{
    padding:80px 5%;
  }

  .collage-grid{
    grid-template-columns:1fr;
    grid-auto-rows:260px;
    gap:16px;
  }

  .wide,
  .big{
    grid-column:span 1;
    grid-row:span 1;
  }

  .collage-item{
    border-radius:20px;
  }

  .video-grid,
  .gift-grid,
  .footer-grid,
  .collage-grid{
    grid-template-columns:1fr;
  }
  .video-section{
    margin: -10px;
  }
  .hero-media{
    height:500px;
  }

  .card1{
    width:230px;
    height:320px;
  }

  .card2{
    width:170px;
    height:190px;
  }

  .card3{
    width:160px;
    height:180px;
    right:160px;
  }
  .cta a{
    margin: 10px;
  }
  .cta{
  padding:170px 7%;
  background:
  linear-gradient(rgba(11,43,43,.88),
  rgba(11,43,43,.88)),
  url('https://ledamascafe.com/wp-content/uploads/2020/08/cozy-place.jpg') center/cover no-repeat;

  text-align:center;
}
.cta a{
    margin-left:45px ;
}
}
