/*
Theme Name: Nonaloom Custom
Description: Custom E-commerce theme for Nonaloom Clothing Accessories.
Author: Nonaloom
Version: 1.0
*/

/* Reset */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f7;
    color: #1d1d1f;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* 
   NOTE: We have removed the global 'header' CSS rule 
   because it was breaking the header.php layout.
   All header styles are now contained within header.php 
   to ensure they work correctly. 
*/

/* --- Homepage Styles --- */
.hero {
    background-color: #eaeaea; 
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 4px;
}

.hero-content h1 {
    margin-top: 0;
    font-size: 2.5rem;
}

.btn-primary {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #333;
}

.features {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.feature-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 40px;
}

.feature-box {
    flex: 1;
    background: #fff;
    padding: 40px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Make it responsive for mobile phones */
@media (max-width: 768px) {
    .feature-grid {
        flex-direction: column;
    }
}