/* Import Aptos Font */
@import url('https://fonts.googleapis.com/css2?family=Aptos:wght@400;500;600&display=swap');

/* General Styles */
body {
    margin: 0;
    font-family: 'Aptos', sans-serif;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
}
/* Header */
header {
    background-color: #003366; /* Royal blue */
    color: #fff;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center; /* Align logo and contact us */
    align-items: center; /* Vertically center items */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}



.header-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    max-width: 1200px; /* Limit the header width */
}

.logo-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.logo-text h1 {
    font-size: 18px;
    text-align: center;
}

.logo-text p {
    font-size: 12px;
    text-align: center;
}

#contact-us-btn {
    background-color: #ffffff; /* White */
    color: #003366; /* Royal blue */
    border: none;
    padding: 12px 25px; /* Adjusted padding */
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#contact-us-btn:hover {
    background-color: #003366; /* Royal blue on hover */
    color: #ffffff; /* White text on hover */
}

/* Main Content */
main {
    padding: 100px 20px 20px;
    text-align: center;
}

section {
    margin-bottom: 40px;
}

.about h2,
.order-section h2,
.visit-us h2 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 10px;
}

.about p,
.visit-us p {
    color: #555;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.order-section {
    margin-top: 30px;
}

#place-order-btn {
    background-color: #003366;
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#place-order-btn:hover {
    background-color: #005599;
}

/* Google Maps Embed */
.contact-map iframe {
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    height: 300px;
    border: none;
    margin: 0 auto;
    display: block;
}

/* Footer */
footer {
    background-color: #003366;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    font-size: 14px;
}

footer .footer-note {
    font-size: 14px;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text h1 {
        font-size: 16px;
    }

    .logo-text p {
        font-size: 10px;
    }

    #contact-us-btn {
        padding: 10px 20px; /* Adjusted padding for mobile */
        font-size: 12px;
    }

    #place-order-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    section {
        padding: 10px;
    }
}

