/* Basic Reset & Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif; /* Consider adding Google Fonts link for Roboto */
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background-color: #004d40; /* Dark Teal */
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #80cbc4; /* Light Teal Accent */
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/mall-exterior-hero.jpg') no-repeat center center/cover; /* Placeholder background */
    color: #fff;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden; /* Ensure image doesn't overflow */
    min-height: 500px; /* Minimum height for hero */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero .container {
    position: relative;
    z-index: 2; /* Ensures text is above background image overlay */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the section */
    z-index: 0; /* Behind the content and overlay */
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #ff9800; /* Orange Accent */
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #e68900;
    transform: translateY(-2px);
}

.btn-small {
    display: inline-block;
    background-color: #00796b; /* Darker Teal */
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-small:hover {
    background-color: #00695c;
}

/* Info Cards Section */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h2 {
    color: #004d40;
    margin-bottom: 1rem;
    font-size: 1.7rem;
}

.card p {
    margin-bottom: 1rem;
    color: #555;
}

.card ul {
    list-style: none;
    margin-bottom: 1rem;
    text-align: left;
    padding-left: 1rem;
    color: #555;
}

.card ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.card ul li::before {
    content: '•';
    color: #00796b;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.card .note {
    font-size: 0.85rem;
    color: #777;
    margin-top: 1rem;
}


/* About Us Section */
.about-us {
    padding: 4rem 0;
    text-align: center;
    background-color: #e0f2f1; /* Lightest Teal */
    margin-bottom: 4rem;
    border-radius: 8px;
}

.about-us h2 {
    color: #004d40;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-us p {
    max-width: 800px;
    margin: 0 auto 1rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* Image Gallery */
.image-gallery {
    padding: 2rem 0 4rem;
    text-align: center;
}

.image-gallery h2 {
    color: #004d40;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* Page Content (for inner pages) */
main.page-content {
    padding: 4rem 0;
}

main.page-content h1 {
    color: #004d40;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

/* Store and Food Grids */
.store-category, .food-category {
    margin-bottom: 3.5rem;
}

.store-category h2, .food-category h2 {
    color: #004d40;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.store-category h2::after, .food-category h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ff9800;
    margin: 10px auto 0;
    border-radius: 2px;
}

.store-grid, .food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.store-item, .food-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.store-item:hover, .food-item:hover {
    transform: translateY(-5px);
}

.store-item h3, .food-item h3 {
    color: #004d40;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.store-item p, .food-item p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1rem;
    flex-grow: 1; /* Allows paragraph to take available space */
}

.store-item img, .food-item img {
    max-width: 100%;
    height: 150px; /* Fixed height for consistency */
    object-fit: contain; /* Ensures logo/image fits without cropping */
    margin-top: 1rem;
    border-radius: 5px;
}

.note {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Amenities Page */
.amenity-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.amenity-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: invert(19%) sepia(35%) saturate(3062%) hue-rotate(159deg) brightness(97%) contrast(101%); /* Teal filter */
}

.amenity-item h2 {
    color: #004d40;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.amenity-item p {
    color: #555;
    font-size: 1rem;
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.info-block {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.info-block h2 {
    color: #004d40;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.info-block p {
    color: #555;
    margin-bottom: 0.5rem;
}

.info-block a {
    color: #00796b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #004d40;
}

.map-section {
    margin-bottom: 3.5rem;
    text-align: center;
}

.map-section h2 {
    color: #004d40;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.map-container {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
}

.directions-section {
    margin-bottom: 3.5rem;
}

.directions-section h2 {
    color: #004d40;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.direction-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.direction-item h3 {
    color: #004d40;
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
}

.direction-item p {
    color: #555;
    font-size: 1rem;
}

.contact-form-section {
    background-color: #e0f2f1;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 4rem;
}

.contact-form-section h2 {
    color: #004d40;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #004d40;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #fcfcfc;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}
.form-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #777;
}

/* Footer */
footer {
    background-color: #003630; /* Darker Teal for Footer */
    color: #e0f2f1;
    padding: 3rem 0;
    margin-top: auto; /* Pushes footer to the bottom */
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.footer-col h3 {
    color: #80cbc4;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.footer-col p, .footer-col ul li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    color: #e0f2f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ff9800;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    margin: 0 0.5rem;
}

.social-icons img {
    width: 28px;
    height: 28px;
    filter: invert(90%) sepia(10%) saturate(200%) hue-rotate(100deg) brightness(120%) contrast(100%); /* Lighten icons */
    transition: filter 0.3s ease;
}

.social-icons img:hover {
    filter: invert(70%) sepia(70%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Orange hover */
}

.copyright {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #a7d9d7;
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }

    header nav {
        display: none; /* Hide desktop nav */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        background-color: #004d40;
        box-shadow: 0 5px 5px rgba(0,0,0,0.2);
    }

    header nav.active {
        display: flex; /* Show when active */
    }

    nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 0.5rem 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 4rem 0;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .info-cards, .gallery-grid, .store-grid, .food-grid, .amenity-list, .contact-info, .directions-grid, footer .container {
        grid-template-columns: 1fr;
    }

    main.page-content h1 {
        font-size: 2.5rem;
    }

    .store-category h2, .food-category h2, .map-section h2, .directions-section h2, .contact-form-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    .card h2, .store-item h3, .food-item h3, .amenity-item h2, .info-block h2, .direction-item h3 {
        font-size: 1.5rem;
    }
}

/* Custom fonts - uncomment if you want to use Google Fonts */
/*
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
body {
    font-family: 'Roboto', sans-serif;
}
*/