/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import Google Font for a more professional look */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* keep page background white so image edges don't appear black */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    position: relative;
    background: #ffffff;
    min-height: auto;
    padding: 2rem 0;
    width: 100%;
    flex: 1 0 auto;
}

main .container {
    position: relative;
    z-index: 2; /* Place content above the overlay */
    background: transparent;
    padding: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    color: inherit;
}

/* Header container (formerly hero banner) - simplified for minimalist layout */
.hero-banner {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    display: block;
    margin-top: 0;
}

.hero-banner::before { display: none; }

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1rem 1rem 0;
    margin-bottom: 0; /* spacing handled by nav block */
}

.banner-content h1 {
    color: inherit;
    font-size: 2.5rem;
    font-weight: 700;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    text-align: center;
}

/* Global home icon styling so it is visible across pages */
.home-icon {
    position: absolute;
    left: 2rem;
    top: 2rem;
    display: inline-block;
    z-index: 1100;
}
.home-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.6));
}

/* Lightweight top bar for non-home pages */
.page-topbar {
    position: relative;
    min-height: 72px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}
.page-topbar .home-icon {
    top: 1rem;
}
#cart-mount {
    position: relative; /* for cart absolute positioning */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #2c3e50;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 0;
    text-align: center;
    margin-top: 0;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 3;
}
/* About Us section styles */
.about-section {
    margin-top: 6rem;
    margin-bottom: 2rem;
    margin-left: 2.5rem;
    max-width: 600px;
    color: #111;
    text-align: left;
}
.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111;
    text-align: left;
}
.about-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #222;
    text-align: left;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Removed old duplicated nav/main/footer styles */