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

.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{
  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;
}

#menu-toggle{
  display: none;
}

.hamburger{
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span{
  width: 26px;
  height: 2px;
  background: white;
  display: block;
}

.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;
}

.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{
  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);
}

.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;
}

.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);
}

.contact-page{
  padding: 120px 60px 80px;
  background: black;
  min-height: 100vh;
}

.contact-name{
  margin: 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 2px;
  color: white;
}

.contact-title{
  margin: 120px 0 40px;
  text-align: center;
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
}

.contact-form{
  max-width: 980px;
  margin: 0 auto;
}

.contact-label{
  display: block;
  margin: 30px 0 10px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
}

.contact-input{
  width: 100%;
  height: 60px;
  padding: 0 18px;
  border: none;
  outline: none;
  background: #3a3a3a;
  color: white;
  font-size: 14px;
  letter-spacing: 1px;
}

.contact-textarea{
  width: 100%;
  height: 220px;
  padding: 18px;
  border: none;
  outline: none;
  background: #3a3a3a;
  color: white;
  font-size: 14px;
  letter-spacing: 1px;
  resize: vertical;
}

.contact-input::placeholder,
.contact-textarea::placeholder{
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.contact-button{
  margin-top: 28px;
  padding: 18px 42px;
  border: none;
  border-radius: 999px;
  background: white;
  color: black;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-button:hover{
  opacity: 0.9;
}

.contact-button:active{
  transform: scale(0.98);
}

@media (max-width: 768px){
  .text{
    left: 20px;
    right: 20px;
  }

  .text h1{
    font-size: 48px;
  }

  .preview-section{
    padding: 70px 20px;
  }

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

  .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-title{
    font-size: 40px;
  }

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

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

  .contact-page{
    padding: 110px 20px 60px;
  }

  .contact-name{
    font-size: 40px;
  }

  .contact-title{
    margin-top: 70px;
  }

  .right{
    gap: 18px;
  }
}

@media (max-width: 520px){
  .top{
    padding: 18px 18px;
  }

  .hamburger{
    display: flex;
  }

  .right{
    display: none;
    position: absolute;
    top: 58px;
    right: 18px;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    gap: 18px;
    padding: 18px 22px;
    align-items: flex-start;
  }

  #menu-toggle:checked ~ .right{
    display: flex;
  }

  .right a{
    font-size: 12px;
    letter-spacing: 2px;
    padding-bottom: 2px;
  }

  .left a{
    font-size: 12px;
    letter-spacing: 2px;
  }

  .text p{
    font-size: 14px;
  }

  .btn{
    padding: 12px 18px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}