* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #fff;
}

header {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's on top of other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow effect */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 8px;
    background-color: #fff;
}


/* === HEADER === */
.logo img {
    width: 140px;
}

.navbar a {
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

.navbar {
    display: flex;
    gap: 20px;
}

/* Hide the navbar on mobile view */
.menu-toggle {
    display: none;
    font-size: 26px;
    margin-top: 15px;
    background: none;
    border: none;
    color: black;
}

.navbar a {
    text-decoration: none;
    color: #003060;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #F97FAF; /* Change to pink on hover */
}

/* ===  ORDER ===*/

.order_text{
    font-size: 20px;
    color: #003060;
}


/* === INFO === */
.info{
    margin-top: 8px;
    margin-bottom: 50px;
    padding-left: 80px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.order_title{
    text-align: left;
    font-size: 45px;
    color: #22b1d9;
}
.order_text{
    font-size: 22px;
}
.order_text a{
    text-decoration: none;
    color: #F97FAF;
}
.order_text a:hover{
    color: #0a4785; /* Pink on hover */
}

.info_title{
    text-align: left;
    font-size: 45px;
    color: #22b1d9;
}
.info_text{
    font-size: 22px;
    color: #003060;
}
.info_text a{
    text-decoration: none;
    color: #F97FAF;
}
.info_text a:hover{
    color: #0a4785; /* Pink on hover */
}

.info_social_icons{
    text-align: left;
}
.info_social_icons a{
    color: #003060;
    font-size: 60px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.info_icon{
    display: flex;
}
.info_icon p{
    text-align: left;
    font-size: 20px;
    margin-left: 20px;
    margin-top: auto;
    margin-bottom: auto;
}

.info_social_icons a:hover{
    color: #F97FAF; /* Pink on hover */
}


/* === FOOTER ===*/
footer {
    background-color: #003060;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 15px;
}
.social-icons{
    text-align: left;
}
.social-icons a{
    color: white;
    margin-right: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover{
    color: #F97FAF; /* Pink on hover */
}


.map-container iframe {
    width: 100%;
    border-radius: 5px;
}

h3 {
    margin-bottom: 15px;
    color: #00C1C1;
}

.footer-ending{
    margin-top: 15px;
    text-align: center;
}

/* MOBILE STYLES (Responsive) */
@media (max-width: 768px) {

    header {
        flex-direction: row;
        align-items: flex-start;
    }

    /* === NAVBAR === */
    .logo img {
        width: 100px;
    }
    .navbar {
        display: none; /* Hide initially on mobile */
        width: 100%; 
        justify-content: center;
        flex-direction: column; /* Stacked by default on mobile */
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    /* Show the navbar in a row when toggled */
    .navbar.active {
        display: flex; /* Display flex when active */
        flex-wrap: wrap; /* Allow wrapping of items */
        justify-content: center;
        gap: 10px; /* Adds space between items */
    }

    .navbar a {
        padding: 10px;
        text-align: center;
        color: #003060;
        font-weight: bold;
    }


    /* === INFO === */
    .info{
        margin-top: 80px;
        margin-bottom: 50px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .order_title{
        text-align: left;
        font-size: 30px;
        color: #22b1d9;
    }
    .info_title{
        text-align: left;
        font-size: 30px;
        color: #22b1d9;
    }
    .info_text{
        font-size: 18px;
        color: #003060;
    }
    .info_social_icons a{
        color: #003060;
        font-size: 50px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .info_icon p{
        color: #003060;
        text-align: left;
        font-size: 16px;
        margin-left: 10px;
        margin-top: auto;
        margin-bottom: auto;
    }


    /* === Feature ===*/
    .footer-logo{
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .features-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-container {
        flex-direction: column;
        align-items: column;
        text-align: left;
    }

    .footer-container p{
        text-align: center;
    }
    .footer-section {
        min-width: 100%;
    }
    .social-icons {
        margin-top: 15px;
        text-align: center;
    }
}