*{
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    overflow-x: hidden;
}

body{
    font-family: "Nunito", sans-serif;
}

.navbar{
    background-color: #fff;
    height: 4vh;
    align-items: center;
    display: flex;
    flex-direction: row;
    width: 100%;
}

.navbar img{
    width: auto;
    height: 2.5vh;
    margin-left: 10vw;
    position: absolute;
}

.navbar div{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 4vw;
    text-align: center;
    align-items: center;
    width: 100%;
    padding-right: 20vw;
}

.navbar a{
    font-size: 2vh;
    color: #B42F64;
    text-decoration: none;
    cursor: pointer;
    left: 100%;
}

#home-btn{
    border: 0.15rem solid #B42F64;
    padding: 0.1vh 0.7vw 0.1vh 0.7vw;
    border-radius: 0.5rem;
}

header{
    height: 90vh;
    overflow: hidden;
}

.header-img-container img {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.header-img-container {
    position: relative;
    width: 100%;
    height: 90vh; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.header-img-container::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(59, 49, 53, 0.8), rgba(0, 0, 0, 0));
    z-index: 1;
}

.header-content {
    position: absolute;
    top: 20%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: none;
    max-width: 60%;
    margin-left: 10vw;
    z-index: 1;
}

header h1{
    color: #fdaeae;
    font-size: 8vh;
}

header h2{
    color: #fff;
    font-size: 1.75vh;
}

header h3{
    color: #fff;
    font-size: 2.5vh;
    width: 30%;
}

header button{
    position: absolute;
    color: #fff;
    font-size: 2.5vh;
    letter-spacing: 2%;
    font-weight: bold;
    border-radius: 5vh;
    background-color: #B42F64;
    padding: 2vh 3vw;
    transition: 0.3s;
    cursor: pointer;
    margin-left: 10vw;
    bottom: 9vh;
    border: none;
    z-index: 1;
}

header button:hover{
    background-color: #8f244f;
}

#imageGallery{
    display: none;
}

  .slider-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 10000;
    flex-direction: column;
  }

  .slider-overlay.show {
    display: flex;
  }

  .slider-image {
    max-width: 90vw;
    max-height: 90vh;
    transition: opacity 0.3s ease;
    opacity: 1;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 11000;
  }

  .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 11000;
  }

  .nav-button.prev {
    left: 30px;
  }

  .nav-button.next {
    right: 30px;
  }

h1{
    color: #B42F64;
    font-size: 5vh;
}

h2{
    font-size: 2.5vh;
}

p{
    color: #000;
    font-size: 1.8vh;
}

footer{
    background-color: #FFD7D7;
    text-align: center;
    justify-content: center;
    margin-top: 5vh;
    border-top-left-radius: 5rem;
    border-top-right-radius: 5rem;
    height: fit-content;
    padding-bottom: 0.5rem;
}

footer h1{
    padding-top: 2vh;
    margin-bottom: 1vh;
}

footer h2{
    width: 60%;
    justify-self: center;
}

.footer-btns{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1vw;
    margin-top: 4rem;
}

footer button {
  font-size: 2.5vh;
  font-weight: bold;
  border-radius: 10vh;
  border: 0.5vh solid #B42F64;
  background-color: transparent;
  padding: 2vh 6vh;
  cursor: pointer;
  transition: 0.5s;
}

footer button:hover{
    background-color: #B42F64;
}

.sm-icons{
    display: flex;
    flex-direction: row;
    gap: 2vw;
    justify-content: center;
    margin-top: 5vh;
}

footer p {
  width: 60%;
  margin: auto;
  font-size: 1.8vh;
}

footer a{
    color: #B42F64;
    text-decoration: none;
    margin-bottom: 2vh;
    transition: 0.5s;
    font-size: 2vh;
}

footer a:hover{
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1366px) {
  .navbar a {
    display: none;
  }

  header{
    height: 90vh;
  }

  .header-content {
    position: absolute;
    top: 25%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: none;
    max-width: 80%;
    margin-left: 10vw;
    z-index: 1;
}

.header-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

header h1{
    color: #fff;
    font-size: 8vh;
}

header h2{
    color: #FFD7D7;
    font-size: 1.75vh;
}

header h3{
    color: #f7e6e6;
    font-size: 2.5vh;
    width: 90%;
}

header button{
    position: absolute;
    color: #fff;
    font-size: 2.5vh;
    letter-spacing: 2%;
    font-weight: bold;
    border-radius: 5vh;
    background-color: #B42F64;
    padding: 2vh 3vw;
    transition: 0.3s;
    cursor: pointer;
    margin-left: 10vw;
    bottom: 9vh;
    border: none;
    z-index: 1;
}

  footer h2 {
    width: 80%;
  }
}