body{
  margin: 0;
  background: black;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
}


/* hero section styles */
.hero{
  height: 100vh;
  position: relative;

  background-image: url("../img/hero.jpeg");
  background-size: cover;
  background-position: center;
}

.overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}


/*top nav styles */
.top{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

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

  padding: 18px 28px;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

.left a{
  color: white;
  text-decoration: none;
  letter-spacing: 3px;
  font-size: 14px;
  text-transform: uppercase;
}

.right{
  display: flex;
  gap: 50px;
}

.right a{
  color: white;
  text-decoration: none;
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
  padding-bottom: 6px;
}

.right a:hover{
  border-bottom: 2px solid #f4b6c8;
}


/* hero text styles */
.text{
  position: absolute;
  left: 60px;
  bottom: 90px;
  z-index: 2;
}

.text h1{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 85px;
  font-weight: normal;
}

.text p{
  margin: 18px 0 30px;
  font-size: 16px;
  letter-spacing: 1px;
}


/*button styles */
.btn{
  position: relative;
  z-index: 3;

  display: inline-block;
  padding: 14px 22px;

  border: 2px solid #f4b6c8;
  color: white;
  background: transparent;

  text-decoration: none;
  letter-spacing: 2px;
  font-size: 13px;

  transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.btn:active{
  background-color: black;
  color: white;
}



.scroll-indicator{
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;

  color: white;
  font-size: 12px;
  letter-spacing: 3px;
  z-index: 5;
}

.arrow{
  margin: 12px auto 0 auto;
  width: 1px;
  height: 40px;
  background: #f4b6c8;
  position: relative;
}

.arrow::after{
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #f4b6c8;
  border-bottom: 2px solid #f4b6c8;
}


/*preview section */
.preview-section{
  background-color: black;
  padding: 100px 60px;
}

.preview-header{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.preview-header h2{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color:rgba(255,255,255,0.9);
  margin: 0;
}

.preview-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}


.preview-item{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5; 
  overflow: hidden;
  background: black;
  display: block;        
}

.preview-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.preview-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244,182,200,0);
  transition: background 0.2s ease;
  pointer-events: none;
}

.preview-item:hover::after{
  background: rgba(255,255,255,0.18);
}


@media (max-width: 800px){
  .preview-section{
    padding: 70px 20px;
  }
  .preview-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .text{
    left: 20px;
    right: 20px;
  }
  .text h1{
    font-size: 48px;
  }
  .right{
    gap: 18px;
  }
}

/*about page */

.about-page{
  padding: 120px 60px 80px;   
}

.about-hero h1{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 1px;
}

.about-subtitle{
  margin: 14px 0 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-content{
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}


.about-photo{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}


.about-right h2{
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 1px;
}

.about-right p{
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

@media (max-width: 900px){
  .about-page{
    padding: 110px 20px 60px;
  }

  .about-content{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-hero h1{
    font-size: 48px;
  }

  .about-photo{
    height: 420px;
  }
}

/* gallery page */

.gallery-page{
  padding-top: 90px;  
  background: black;
}

.gallery-section{
  padding: 40px 0 70px;
}

.gallery-title{
  margin: 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 300;
  letter-spacing: 2px;
  color: white;
  padding: 40px 20px;
}


.gallery-grid{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 2px solid black;    
  border-left: 2px solid black;
}

.gallery-item{
  position: relative;
  aspect-ratio: 16 / 9;          
  overflow: hidden;
  border-right: 2px solid black;  
  border-bottom: 2px solid black;
}


.gallery-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


.gallery-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
  pointer-events: none;
}

.gallery-item:hover::after{
  background: rgba(255,255,255,0.80);
}

@media (max-width: 900px){
  .gallery-title{
    font-size: 40px;
  }

  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .gallery-item{
    aspect-ratio: 4 / 3;
  }
}