@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    background-color: #fff8ed;
    color: #156669;
    font-family: 'Ubuntu', sans-serif;
}

.logo img {
    height: 40px; /* Adjust the height as needed */
}
.menu-toggle {
    display: none;
    cursor: pointer;
}
nav {
    position: sticky;
    top: 0;
    z-index: 1001;
}

.navbar {
    background-color: #fff8ed;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
}

/* .navbar ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center; 
} */

.navbar li {
    margin: 0 15px;
    list-style: none;
}

.navbar a {
    text-decoration: none;
    color: #156669;
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
}

.navbar a:hover {
    color: #88b1b3;
}

.general-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 20px;
}

.cover {
    margin-right: 0;
    margin-bottom: 20px;
}

.cover img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    text-align: center;
}

.text h1 {
    font-size: 8vw;
    font-weight: normal;
    font-family: 'Playfair Display', serif;
    margin: 5px 0;
}

.text p {
    font-size: 18px;
    margin: 5px 0;
}

.text a {
    text-decoration: none;
}

.text button {
    width: 100%;
    max-width: 120px;
    height: 40px;
    margin: 5px auto;
    font-size: 18px;
    font-family: 'Ubuntu', sans-serif;
    border: 2px solid black;
    background-color: transparent;
    border-radius: 20px;
}

.text button:hover {
    cursor: pointer;
    border: 2px solid gray;
    color: gray;
}

.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 20px;
}

.heading h1 {
    font-size: 8vw;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.para {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 20px;
}

.para p,
.para ul {
    font-size: 18px;
    text-align: center;
}

.para li {
    margin: 0 0 15px 0;
}

.carousal-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 20px;
}

.image-box {
    text-align: center;
    margin: 10px;
    width: calc(100% / 2 - 20px);
    max-width: 200px;
}

.image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}

.image-box p {
    font-size: 18px;
}

.g-text {
    font-size: 24px;
    text-align: center;
    margin: 0 20px 50px 20px;
}

.g-text button {
    padding: 10px;
    font-size: 18px;
    font-family: 'Ubuntu', sans-serif;
    border: 2px solid black;
    background-color: transparent;
    border-radius: 12px;
}

.g-text button:hover {
    cursor: pointer;
    border: 2px solid gray;
    color: gray;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .text h1 {
        font-size: 10vw;
    }

    .general-section {
        margin: 50px 10px;
    }

    .cover img {
        width: 100%;
        margin-bottom: 20px;
    }

    .text button {
        max-width: 100%;
    }

    .heading h1 {
        font-size: 10vw;
    }
}

/* @media (max-width: 480px) {
    .navbar ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .navbar li {
        margin: 10px 0;
    }

    .text h1 {
        font-size: 12vw;
    }

    .heading h1 {
        font-size: 12vw;
    }

    .g-text {
        font-size: 18px;
    }
} */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        
        width: 100%;
        
        
    }

    .nav-links.active {
    
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    /* transition:0.3s; */
    }

    .nav-links li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
        
        font-size: 30px;
        /* width: 100%; */
        text-align: right;
    }
}
