/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: Arial, sans-serif; line-height:1.6; color:#333; }

/* Header */
header { background:#222; color:#fff; padding:10px 0; }
header .container { display:flex; justify-content:space-between; align-items:center; max-width:1200px; margin:0 auto; padding:0 20px; }
.nav-menu { list-style:none; display:flex; gap:20px; }
.nav-menu li a { color:#fff; text-decoration:none; }
.contact-buttons a { margin-left:10px; padding:5px 10px; background:#f90; color:#fff; text-decoration:none; border-radius:4px; }

/* Hero */
.hero { background:url('../images/backgrounds/hero.jpg') center/cover no-repeat; height:400px; display:flex; justify-content:center; align-items:center; color:#fff; text-align:center; }
.hero .btn { display:inline-block; margin:10px; padding:10px 20px; background:#f90; color:#fff; text-decoration:none; border-radius:5px; }

/* Collections */
.collections { padding:50px 20px; text-align:center; }
.collection-grid { display:flex; justify-content:center; flex-wrap:wrap; gap:20px; margin-top:30px; }
.collection-card { width:220px; border:1px solid #ddd; border-radius:5px; overflow:hidden; }
.collection-card img { width:100%; height:150px; object-fit:cover; }
.collection-card h3 { padding:10px; }

/* Products */
.products-grid { display:flex; flex-wrap:wrap; gap:20px; justify-content:center; margin-top:30px; }
.product-card { border:1px solid #ddd; border-radius:5px; width:250px; overflow:hidden; text-align:center; padding:10px; }
.product-card img { width:100%; height:180px; object-fit:cover; }
.price { font-weight:bold; color:#f90; margin:10px 0; }
.product-card .btn { display:inline-block; margin-bottom:10px; padding:8px 15px; background:#f90; color:#fff; text-decoration:none; border-radius:4px; }

/* Product Detail */
.product-detail { display:flex; flex-wrap:wrap; gap:30px; padding:50px 20px; justify-content:center; }
.product-images img { width:300px; margin-bottom:10px; border:1px solid #ddd; }
.product-info { max-width:400px; }
.product-info h1 { margin-bottom:20px; }
.product-info .btn { margin-right:10px; }

/* About / Contact */
.about-us, .contact-form { padding:50px 20px; max-width:800px; margin:0 auto; text-align:center; }
.contact-form input, .contact-form textarea { width:100%; padding:10px; margin:10px 0; border-radius:5px; border:1px solid #ccc; }

/* Footer */
footer { background:#222; color:#fff; padding:30px 20px; margin-top:50px; }
footer a { color:#f90; text-decoration:none; }
footer .footer-container { display:flex; flex-wrap:wrap; gap:20px; justify-content:space-between; }
.footer-bottom { text-align:center; margin-top:20px; font-size:14px; color:#aaa; }

/* ===== MOBILE HEADER ALIGNMENT ===== */
@media(max-width: 768px) {
    header .header-container {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin-bottom: 10px;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        padding: 8px 0;
    }

    .contact-buttons {
        margin-top: 8px;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}



/* ===== ABOUT PAGE STYLING ===== */

.about-us {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
    color: #333;
}

.about-us .container {
    max-width: 900px;
    margin: 0 auto;
}

.about-us h2 {
    color: #004080;
    font-size: 2.2rem;
    margin-bottom: 15px;
    border-bottom: 3px solid #c8102e;
    display: inline-block;
    padding-bottom: 8px;
}

.about-us p {
    font-size: 1.06rem;
    margin-bottom: 18px;
    line-height: 1.8;
    color: #444;
}

/* Commitment Header */
.about-us h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #004080;
    margin-top: 40px;
}

/* List Styling */
.about-us ul {
    list-style: none;
    margin-top: 10px;
    padding: 0;
}

.about-us ul li {
    text-align: left;
    margin: 10px 0;
    padding: 12px 15px;
    border-left: 4px solid #c8102e;
    background: #f5f8ff;
    font-size: 1rem;
    color: #333;
    border-radius: 4px;
    transition: 0.3s;
}

.about-us ul li:hover {
    background: #d9e8ff;
    transform: translateX(5px);
    border-left-color: #004080;
}

/* Signature Phrase */
.about-us strong {
    color: #c8102e;
    font-weight: bold;
}


