/* 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;
}

.main-nav nav a.active-link {
    color: #7A7A7A;
    border-bottom: 1px solid #7A7A7A;
    padding-bottom: 2px;
}

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

.hero { height: 75vh; }
.story-hero { height: 60vh; }

.hero-image, .story-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.80); 
}

.hero-text, .story-hero-text, .banner-bottom-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;
}

.story-hero-text h1 {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #F7F5F0;
}

/* 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;
}

.btn-outline {
    background-color: transparent;
    color: #2D2D2D;
    border: 1px solid #2D2D2D;
}

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

/* Shop Page Header */
.shop-header {
    padding: 60px 40px 20px 40px;
    text-align: center;
}

.shop-header h1 {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #7A7A7A;
    cursor: pointer;
}

.shop-filters span:hover {
    color: #2D2D2D;
    border-bottom: 1px solid #2D2D2D;
}

.shop-container {
    padding: 0 40px 80px 40px;
}

/* 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;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

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

.product-image-wrapper {
    overflow: hidden; 
    margin-bottom: 16px;
    background-color: #E5E5E5; 
}

.product-card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4; 
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

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

.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 Layout */
.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;
}

/* Editorial Page Layout */
.editorial-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 60px;
}

.editorial-text {
    flex: 1;
}

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

.editorial-text p {
    font-size: 1.05rem;
    color: #5A5A5A;
    margin-bottom: 20px;
    line-height: 1.8;
}

.editorial-image {
    flex: 1;
}

.editorial-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

/* Bottom Banner */
.story-banner-bottom {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.story-banner-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.banner-bottom-text h2 {
    font-size: 2.2rem;
    color: #F7F5F0;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

/* Responsive adjustment for editorial section */
@media (max-width: 800px) {
    .editorial-container, .brand-story {
        flex-direction: column;
        padding: 60px 20px;
    }
}

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