﻿/* Custom CSS Variables - Warm Japandi Earth Palette */
:root {
    --primary-color: #555d50;  /* Muted Olive */
    --accent-color: #c97a64;   /* Terracotta / Soft Clay */
    --bg-light: #f6f3ed;       /* Warm Sand / Off-White */
    --bg-card: #eae3d5;        /* Light Linen */
    --text-dark: #3c3c3c;      /* Charcoal (Softer than pure black) */
    --text-light: #fdfbf7;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}


/* Base Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
}


/* Luxury Header Navigation */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: rgba(246, 243, 237, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    border-bottom: 1px solid rgba(193, 154, 107, 0.15);
}


.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-color);
}


.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}


.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}


/* Hero Section with Warm Overlay */
.hero {
    position: relative;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?q=80&w=1920') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(85, 93, 80, 0.35); /* Olive overlay */
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}


.subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
}


.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
}


.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
}


/* Minimalist Email Form */
.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}


.newsletter-form input {
    width: 70%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-family: var(--font-body);
    outline: none;
    border-radius: 0;
}


.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}


.newsletter-form button {
    width: 30%;
    background: var(--accent-color);
    border: none;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}


.newsletter-form button:hover {
    background: #b56753;
}


/* Sections Global Styling */
.meditations-section, .shop-section {
    padding: 100px 8%;
    text-align: center;
}


.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}


.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 50px;
    letter-spacing: 1px;
}


/* Video Player Layout */
.video-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}


.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}


/* Curated Shop Grid */
.shop-section {
    background-color: var(--bg-card);
}


.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}


.product-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border: 1px solid rgba(85, 93, 80, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(85, 93, 80, 0.05);
}


.product-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}


.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}


.product-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 30px;
    min-height: 80px;
}


.shop-btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}


.shop-btn:hover {
    background: var(--accent-color);
    color: var(--text-light);
}


/* Footer Section */
.luxury-footer {
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 40px 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}


/* Media Queries for Mobile Responsiveness */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .luxury-header {
        padding: 15px 5%;
    }
    .nav-links a {
        margin-left: 15px;
        font-size: 0.8rem;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input, .newsletter-form button {
        width: 100%;
        margin-bottom: 10px;
    }
}