/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* COLORS */
:root {
  --purple: #7b2cbf;
  --pink: #ff4da6;
  --white: #ffffff;
  --dark: #111;
  --light: #f8f8f8;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  color: var(--dark);
}

/* NAVBAR */
.navbar {
  background: white;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
}


.logo{
  font-size:22px;
  font-weight:bold;
}

nav{
  display:flex;
  gap:20px;
}

nav a{
  text-decoration:none;
  color:white;
}

nav a:hover{
  color:var(--pink);
}

#menu-toggle{
  display:none;
  font-size:24px;
  cursor:pointer;
}

/* HERO */
.hero{
  text-align:center;
  padding:100px 20px;
  background:rgba(0,0,0,0.5);
}

.hero h1{
  font-size:3rem;
  margin-bottom:20px;
}

.hero p{
  margin-bottom:25px;
  font-size:18px;
}

/* BUTTON */
.btn,
button{
  background:var(--purple);
  color:white;
  padding:12px 20px;
  border:none;
  border-radius:6px;
  text-decoration:none;
  cursor:pointer;
}

.btn:hover,
button:hover{
  background:var(--pink);
}

/* SECTIONS */
.about,
.quotes,
.gallery,
.share{
  padding:70px 5%;
  background:rgba(0,0,0,0.7);
  margin-top:20px;
}

.about h2,
.quotes h2,
.gallery h2,
.share h2{
  text-align:center;
  margin-bottom:30px;
}

/* ABOUT BOX */
.about-box{
  background:rgba(255,255,255,0.1);
  padding:30px;
  border-radius:12px;
}

.about-box ul{
  list-style:none;
}

.about-box li{
  margin-bottom:15px;
  font-size:18px;
}

/* QUOTES */
.quote-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.quote-card{
  background:white;
  color:black;
  padding:25px;
  border-radius:12px;
  transition:0.3s;
}

.quote-card:hover{
  transform:translateY(-5px);
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.gallery-card{
  background:white;
  color:black;
  padding:15px;
  border-radius:12px;
  text-align:center;
}

.gallery-card img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:10px;
}

/* SHARE */
textarea{
  width:100%;
  min-height:150px;
  padding:15px;
  border:none;
  border-radius:10px;
  margin-bottom:15px;
  resize:none;
}

/* FOOTER */
footer{
  background:black;
  text-align:center;
  padding:20px;
}

/* MOBILE */
@media(max-width:768px){

  nav{
    display:none;
    position:absolute;
    top:70px;
    right:0;
    background:black;
    flex-direction:column;
    width:200px;
    padding:20px;
  }

  nav.active{
    display:flex;
  }

  #menu-toggle{
    display:block;
  }

  .quote-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:2rem;
  }

}