* {
    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('ban2.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;
}

.banner-text p {

    margin: 10px 0 0;
    font-size: 1.2em;
}

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: 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;
}



.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 60%;
    margin-left: 22%;

}

.gallery-item2 {
    overflow: hidden;
}

.gallery-item2 img {
    width: 45%;
    margin-left: 28%;

}



/* contact */
.container2 {
    margin-left: 17%;
    width: 70%;
    /* margin: 20px; */
    background-color: #ffebcd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;

    margin-top: 4%;
}

.content {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.image {
    /* width: 10%; */
    height: 50vh;
}

.content text {
    margin-top: 20px;
}

.content text h1 {
    font-size: 24px;
    color: #333;
}

.content text p {
    width: 70%;
    font-size: 16px;
    color: #666;
}

.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #4682b4;
    border: none;
    border-radius: 35px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #316a92;
}

@media (min-width: 400px) {
    .content {
        flex-direction: row;
        text-align: left;
    }

    .conten image {
        width: 30%;
        flex-shrink: 0;
    }

    .text {
        width: 50%;
        padding-left: 20px;
    }

    .text h1 {
        font-size: 28px;
    }

    .text p {
        font-size: 18px;
    }

    .contact-button {
        margin-top: 10px;
    }
}


/* Content */
.blog-post {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}




/* Blog Post */
.blog-post h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.blog-post p {
    line-height: 1.6;
    /* margin-bottom: 20px; */
}

/* 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;
    }
  }
  
  
  
  