/* Global Reset n Base Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F7F5F0; 
    color: #2D2D2D; 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    line-height: 1.6;
}

/* Navigation Bar */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background-color: #F7F5F0;
    border-bottom: 1px solid #E5E5E5;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.main-nav nav a {
    margin-left: 24px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    color: #2D2D2D;
    transition: color 0.3s ease;
}

.main-nav nav a:hover {
    color: #7A7A7A;
}

/* Hero Banner Container */
.hero {
    position: relative;
    width: 100%;
    height: 75vh; 
    overflow: hidden;
    background-color: #1A1A1A; 
}

/* Hero Image Properties */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.80); /* Dims image to boost text readability */
}

/* Floating Text Overlay Box */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F7F5F0;
    margin-bottom: 24px;
}

/* Call to Action Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #F7F5F0;
    color: #2D2D2D;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #2D2D2D;
    color: #F7F5F0;
}

/* Outline button variant */
.btn-outline {
    background-color: transparent;
    color: #2D2D2D;
    border: 1px solid #2D2D2D;
}

.btn-outline:hover {
    background-color: #2D2D2D;
    color: #F7F5F0;
}

/* Product Grid Section */
.featured-products {
    padding: 80px 40px;
    text-align: center;
    background-color: #F7F5F0;
}

.featured-products h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1rem;
    color: #7A7A7A;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    /* Responsive layout: creates 4 equal columns that wrap on small screens */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.product-card {
    text-align: left;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    /* Standardizes image height */
    aspect-ratio: 3 / 4; 
    object-fit: cover;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.02);
}

.product-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.product-card .price {
    font-size: 0.9rem;
    color: #5A5A5A;
}

/* Brand Story Section */
.brand-story {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    padding: 0;
    border-top: 1px solid #E5E5E5; 
}

.story-content {
    flex: 1;
    padding: 60px 80px;
}

.story-content h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1rem;
    color: #5A5A5A;
    margin-bottom: 30px;
    max-width: 500px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 100%;
    max-height: 600px; 
    object-fit: cover;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    background-color: #F7F5F0;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #7A7A7A;
    border-top: 1px solid #E5E5E5;
}