* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tinos', serif;

}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.brand {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}

.menu {
    display: flex;
    gap: 15px;
}

.menu a {
    color: #fff;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
}

header {
    height: 100vh;
    /* background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}


.banner {
    position: relative;
    background-image: url('attire1.jpg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 100vh;
    /* Adjust the height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    width: 50%;
    position: absolute;
    color: white;
    margin-top: 10%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adds a semi-transparent background to the text */
    padding: 20px;
    border-radius: 10px;
    animation: fadeInUp 2s ease-in-out;


}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.banner-text h1 {
    margin: 0;
    font-size: 2em;
    font-family: fantasy;
}



main {
    padding: 20px;
}

main section {
    padding: 60px 0;
}

main section h2 {
    font-size: 32px;
    width: 70%;
    text-align: center;
    margin-left: 16%;
}





main section h4 {
    font-size: 25px;
    width: 70%;
    margin-left: 22%;
    margin-top: 2%;
    font-family: Georgia, serif;
}


main section p {
    width: 60%;
    font-size: 1.2em;
    margin-left: 22%;
    margin-top: 3%;
}


/* Responsive styles */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: black;
    }

    .menu a {
        padding: 15px;
        border-top: 1px solid black;
    }

    .hamburger {
        display: flex;
    }

    .menu.active {
        display: flex;
    }
}

.menu li {
    color: white;
}

.transparent {
    background-color: transparent;
}

.solid {
    background-color: rgba(0, 0, 0, 10);
}


.dropdown .dropbtn {
    cursor: pointer;

}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 10);
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.dropdown-content li {
    color: white;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dropdown:hover .dropdown-content {
    display: block;
}

main {
    padding: 20px;
}

main section {
    padding: 60px 0;
}

main section h2 {
    font-size: 32px;
    width: 70%;
    text-align: center;
    margin-left: 16%;
}

main section h3 {
    font-size: 32px;
    width: 70%;
    text-align: center;
    margin-left: 16%;
    font-family: fantasy;
}

main section p {
    width: 50%;
    font-size: 1.2em;
    margin-left: 27%;
    margin-top: 3%;
}

/* gallery */


.photo-overlay h1 {
    font-size: 1.5em;
    line-height: 8em;
}

#modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-container {
    margin: 5% auto;
    width: 70%;
    height: 80%;
    display: flex;
}

.modal-container img {
    height: 100vh;
    max-width: 100%;
    margin: 0 auto;
    animation-name: modalopen;
    animation-duration: 1s;

}

.container {
    max-width: 950px;
    margin-top: -5%;
    /* margin: auto; */
    border: white solid 3px;
    background-color: white;
}

.imgs img {
    width: 100%;
    height: 70vh;
    box-shadow: 5px 5px 2px rgba(40, 62, 80, 0.20);
}

.imgs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    cursor: pointer;
    margin-top: 20px;
}


.photo-overlay {
    opacity: 0;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .45);
    transition: opacity 0.3s linear;
}

.photo-overlay:hover {
    opacity: 1;
}

.img-container {
    position: relative;
}

@keyframes modalopen {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.texts h2{
    margin-top: 4%;
    text-align: center;
}

/* parallex */
#box-1 {
    height: 100vh;
    width: 100%;
    background-image: url('hh.jpg');
    background-size: cover;
    display: table;
    background-attachment: fixed;
  }
  
  #box-1 h1 {
    color: white;
    font-family: Arial;
    font-weight: bold;
    text-align: center;
    margin: 0;
    font-size: 40px;
    display: table-cell;
    vertical-align: middle;
  }
/* box text */
.card-title {
    text-align: center;

}

.col-md-3 {
    margin-left: 7%;
    padding-top: 5%;
}

.card-body {
    width: 100%;

}


/* footer */

.footer {
    background-color: white;
    color: black;
    padding: 20px 0;
    text-align: left;
    border-top: 1px solid grey;
    margin-top: 5%;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  .footer-section {
    flex: 1;
    margin: 10px;
    min-width: 250px;
  }
  
  .footer-section h2 {
    margin-left: 13%;
    font-size: 1.5em;
    margin-bottom: 14px;
  }
  
  .footer-section p {
    margin-bottom: 20px;
  }
  
  .footer-section form input {
    background-color: lightgray;
    border: none;
    color:black;
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
    border-radius: 20px;
  }
  
  .footer-section ul {
    list-style: none;
    margin-left: 5%;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: black;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
  
    .footer-section {
        margin: 10px 0;
    }
  }
  
  
  
  