/* =========================================
   GOOGLE FONT
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

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

html{
  scroll-behavior:smooth;
}

/* =========================================
   BODY
========================================= */

body{
  font-family:'Poppins', sans-serif;

  background:#1b1025;

  color:white;

  overflow-x:hidden;
}

/* =========================================
   BACKGROUND BLURS
========================================= */

.bg-blur{
  position:fixed;

  border-radius:50%;

  filter:blur(120px);

  z-index:-1;

  opacity:0.35;
}

.blur1{
  width:300px;
  height:300px;

  background:#db2777;

  top:-100px;
  left:-100px;
}

.blur2{
  width:350px;
  height:350px;

  background:#7c3aed;

  bottom:-120px;
  right:-120px;
}

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

.hero{
  min-height:70vh;

  display:flex;

  align-items:center;

  justify-content:center;

  text-align:center;

  padding:80px 20px 140px;

  position:relative;

  overflow:hidden;

  background:
    linear-gradient(
      135deg,
      #ff4d8d 0%,
      #db2777 30%,
      #9333ea 65%,
      #7c3aed 100%
    );
}

/* curved transition */

.hero::after{
  content:"";

  position:absolute;

  bottom:-1px;
  left:0;

  width:100%;
  height:120px;

  background:#1b1025;

  border-radius:
    100% 100% 0 0;
}

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

.hero-content{
  max-width:900px;

  position:relative;

  z-index:2;
}

.tag{
  display:inline-block;

  padding:10px 18px;

  border-radius:999px;

  background:rgba(255,255,255,0.12);

  border:1px solid rgba(255,255,255,0.14);

  color:#fff;

  margin-bottom:24px;

  font-size:0.9rem;

  backdrop-filter:blur(10px);
}

.hero h1{
  font-size:4rem;

  line-height:1.1;

  margin-bottom:20px;

  color:white;

  font-weight:700;
}

.hero-text{
  max-width:720px;

  margin:auto;

  color:#ffe4f3;

  font-size:1.1rem;

  line-height:1.9;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons{
  margin-top:35px;
}

.btn{
  display:inline-block;

  padding:14px 24px;

  border-radius:999px;

  text-decoration:none;

  margin:10px;

  transition:0.3s ease;

  font-weight:600;
}

.primary{
  background:white;

  color:#be185d;
}

.secondary{
  border:1px solid rgba(255,255,255,0.18);

  background:rgba(255,255,255,0.10);

  color:white;
}

.btn:hover{
  transform:translateY(-3px);
}

/* =========================================
   PAGE CONTENT
========================================= */

.page-content{
  position:relative;

  z-index:5;

  margin-top:-40px;

  max-width:1200px;

  margin-left:auto;
  margin-right:auto;

  padding:0 20px 80px;
}

/* =========================================
   SECTIONS
========================================= */

.section{
  margin-bottom:80px;
}

.section h2{
  text-align:center;

  font-size:2rem;

  margin-bottom:40px;

  color:#f9a8d4;
}

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

.grid{
  display:grid;

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

  gap:28px;
}

/* =========================================
   CARDS
========================================= */

.card,
.glass-box,
.instagram-box{
  background:#2a1c38;

  border:1px solid rgba(255,255,255,0.08);

  border-radius:28px;

  padding:24px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.25);

  transition:0.3s ease;
}

.card:hover{
  transform:translateY(-6px);

  border:1px solid rgba(255,255,255,0.14);
}

.card img{
  width:100%;

  height:280px;

  object-fit:cover;

  border-radius:20px;

  margin-bottom:18px;
}

.card h3{
  margin-bottom:10px;

  color:white;

  font-size:1.2rem;
}

.card p{
  color:#f5d0fe;

  line-height:1.8;
}

/* =========================================
   ABOUT & INSTAGRAM BOX
========================================= */

.glass-box,
.instagram-box{
  max-width:850px;

  margin:auto;

  text-align:center;
}

.glass-box p,
.instagram-box p{
  color:#f5d0fe;

  line-height:1.9;
}

/* =========================================
   LINKS
========================================= */

a{
  color:#f9a8d4;

  text-decoration:none;

  transition:0.3s ease;
}

a:hover{
  color:white;
}

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

footer{
  text-align:center;

  padding:45px 20px;

  color:#f9a8d4;

  border-top:
    1px solid rgba(255,255,255,0.08);

  margin-top:60px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

  .hero{
    min-height:60vh;

    padding:70px 20px 120px;
  }

  .hero h1{
    font-size:2.7rem;
  }

  .hero-text{
    font-size:1rem;
  }

  .section h2{
    font-size:1.7rem;
  }

  .card img{
    height:240px;
  }

  .btn{
    padding:12px 18px;

    font-size:0.92rem;
  }
}