@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: "Nunito Sans", serif;
    background-color: #FFFBF0;
    /* width: calc(100% - 40px); */
    overflow-x: hidden;
}


/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(45deg, #99582A, #603813);
    color: #ffffff;
    position: fixed;
    width: calc(100%);
    /* left: 50%; */
    /* transform: translateX(-50%); */
    z-index: 1000;
    height: 70px;
}

.logo img {
    width: 12%;
    margin-left: 5%;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: #F5F1E9;
    font-size: 16px;
    text-transform: uppercase;
    transition: 0.3s;
    font-family: "Montserrat", serif;
    font-weight: 800;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger ion-icon {
    font-size: 25px;
    font-weight: bold;
    /* background: white; */
    margin: 5px;
    transition: 0.4s;
}

/* Mobile Menu (Above Navbar) */
.mobile-menu {
    position: fixed;
    top: -100%;
    /* left: 20px;
    right: 20px; */
    width: calc(100%);
    /* Adjust width for margins */
    background: #99582A;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    transition: top 0.4s ease-in-out;
    z-index: 1100;
    border-radius: 10px;
    transition: .6s;
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin: 15px 0;
    transition: 0.3s;
    font-family: "Montserrat", serif;
    text-transform: uppercase;
    font-weight: bold;
}



.close-menu {
    font-size: 35px;
    cursor: pointer;
    color: #ffffff;
    position: absolute;
    right: 20px;
    top: 10px;
    font-weight: bold;
}

/* Media Queries */
@media only screen and (max-width: 1200px),
only screen and (max-width: 1024px),
only screen and (max-width: 768px),
only screen and (max-width: 480px),
only screen and (max-width: 414px),
only screen and (max-width: 375px),
only screen and (max-width: 320px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* =======================CONTACT============ */

.mybody1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 20px;

}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    /* background: #222; */
    border: 1px solid #191919;
    padding: 30px;
    border-radius: 10px;
}

.contact-header {
    text-align: center;
    width: 100%;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    color: #603813;
    margin-top: 5%;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-form h2 {
    margin-bottom: 3%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: transparent;
    color: #191919;
    border: none;
    border-radius: 5px;
    border: 1px solid #191919;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #99582A, #603813);
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Poppins", serif;
    font-weight: bold;
}



.contact-right {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-info {
    margin-bottom: 20px;
    margin-top: 20px;
}

ion-icon {
    font-size: 22px;
    font-weight: bold;
    align-items: center;
    margin-right: 2%;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 18px;

}

.contact-info i {
    margin-right: 10px;
}

.map-container {
    width: 100%;
    height: 200px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}


/* Media Queries */
@media (max-width: 600px) {
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 240px) {

    .contact-form input,
    .contact-form textarea {
        font-size: 12px;
        padding: 8px;
    }
}

@media (min-width: 241px) and (max-width: 320px) {
    .contact-container {
        width: 112%;
        border: none;
    }

    .contact-form input,
    .contact-form textarea {
        width: 90%;
    }

    .contact-form button {
        width: 90%;
    }

    .contact-info p {
        font-size: 12px;
        font-family: "Poppins", serif;
    }

    .contact-header {
        margin-top: 25%;
    }

   
}

@media (min-width: 321px) and (max-width: 375px) {
    .contact-header {
        font-size: 24px;
        margin-top: 25%;
    }

    .contact-info p {
        font-size: 12px;
    }
}

@media (min-width: 376px) and (max-width: 425px) {
    .contact-container {
        padding: 20px;
    }

    .contact-info p {
        font-size: 15px;
    }

    .contact-header {
        font-size: 24px;
        margin-top: 25%;
    }
}

@media (min-width: 426px) and (max-width: 600px) {
    .contact-form button {
        font-size: 14px;
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    .contact-container {
        flex-direction: row;
    }

    .contact-info p {
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-container {
        max-width: 90%;
    }
}

@media (min-width: 1025px) and (max-width: 1366px) {
    .contact-container {
        max-width: 1000px;
    }
}

@media (min-width: 1367px) and (max-width: 1600px) {
    .contact-container {
        max-width: 1100px;
    }
}

@media (min-width: 1601px) and (max-width: 1920px) {
    .contact-container {
        max-width: 1200px;
    }
}

/* =====================FOOTER=========== */

.footer {
    background: linear-gradient(45deg, #99582A, #603813);
    text-align: center;
    padding: 20px;
    margin-top: 3%;
}

.footer .logo img {
    width: 100px;
    /* Adjust the size as needed */
    height: auto;
}

.footer .nav2 {
    margin: 15px 0;
}

.footer .nav2 a {
    text-decoration: none;
    color: #ffffff;
    margin: 0 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", serif;
}

.footer .social-icons {
    margin: 10px 0;
}

.footer .social-icons a {
    margin: 0 5px;
    font-size: 18px;
}

.rights {
    background-color: #FFFBF0;
    color: #000000;
    padding: 10px;
    font-size: 22px;
    text-align: center;
    width: 100%;
}

.rights h6 {
    font-weight: 500;
    font-size: 15px;
    font-family: "Poppins", serif;
}

strong {
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    font-family: "Poppins", serif;
}

.contact-info2 {
    display: flex;
    justify-content: center;
    gap: 40px;
    color: #F5F1E9;
    font-family: "Poppins", serif;

}

/* Media Queries */
@media (max-width: 240px) {
    .footer .nav2 a {
        font-size: 10px;
        margin: 0 5px;
    }

    .footer .logo img {
        width: 80px;
    }

    .footer .social-icons a {
        font-size: 14px;
    }
}

@media (min-width: 241px) and (max-width: 320px) {

    .footer {
        width: 104%;
    }
    .footer .nav2 a {
        font-size: 12px;
        margin: 0 7px;
    }

    .footer .logo img {
        width: 80px;
    }

    .footer .social-icons a {
        font-size: 16px;
    }

    .contact-info2 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contact-info2 P {
        font-size: 10px;
    }

    .contact-info2 p ion-icon {
        align-items: center;
        justify-content: center;
    }



    .rights h6 {
        font-size: 10px;
    }

    .rights h6 strong {
        font-size: 10px;
    }
}

@media (min-width: 321px) and (max-width: 375px) {
    .footer .nav2 a {
        font-size: 13px;
        margin: 0 8px;
    }

    .footer .logo img {
        width: 100px;
    }

    .footer .social-icons a {
        font-size: 17px;
    }

    .rights h6 {
        font-size: 10px;
    }

    .contact-info2 {
        flex-direction: column;
    }
}

@media (min-width: 376px) and (max-width: 425px) {
    .footer .nav2 a {
        font-size: 14px;
        margin: 0 9px;
    }

    .footer .logo img {
        width: 120px;
    }

    .footer .social-icons a {
        font-size: 18px;
    }

    .contact-info2 {
        flex-direction: column;
    }

    .rights h6 {
        font-size: 12px;
    }
}

@media (min-width: 426px) and (max-width: 600px) {
    .footer .nav2 a {
        font-size: 15px;
        margin: 0 10px;
    }

    .footer .logo img {
        width: 130px;
    }

    .footer .social-icons a {
        font-size: 20px;
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    .footer .nav2 a {
        font-size: 16px;
        margin: 0 12px;
    }

    .footer .logo img {
        width: 140px;
    }

    .footer .social-icons a {
        font-size: 22px;
    }

    .contact-info2 p{
        font-size: 14px;

    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer .nav2 a {
        font-size: 17px;
        margin: 0 14px;
    }

    .footer .logo img {
        width: 150px;
    }

    .footer .social-icons a {
        font-size: 24px;
    }
}

@media (min-width: 1025px) and (max-width: 1366px) {
    .footer .nav2 a {
        font-size: 18px;
        margin: 0 15px;
    }

    .footer .logo img {
        width: 160px;
    }

    .footer .social-icons a {
        font-size: 26px;
    }
}

@media (min-width: 1367px) and (max-width: 1600px) {
    .footer .nav2 a {
        font-size: 19px;
        margin: 0 16px;
    }

    .footer .logo img {
        width: 170px;
    }

    .footer .social-icons a {
        font-size: 28px;
    }
}

@media (min-width: 1601px) and (max-width: 1920px) {
    .footer .nav2 a {
        font-size: 20px;
        margin: 0 18px;
    }

    .footer .logo img {
        width: 90px;
    }

    .footer .social-icons a {
        font-size: 30px;
    }
}