/* Thriwana - CSS */
/* Color palette: warm earth tones, cream backgrounds, gold accents */

:root {
    --color-cream: #F5F1EB;
    --color-cream-dark: #E8E2D9;
    --color-gold: #C4A962;
    --color-text: #2C2C2C;
    --color-text-light: #5A5A5A;
    --color-accent: #8B7355;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(245, 241, 235, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.nav-logo-icon {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--color-text);
    color: white;
}

.btn-primary:hover {
    background: var(--color-accent);
}

.btn-secondary {
    background: var(--color-cream-dark);
    color: var(--color-text);
    border: 1px solid rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: white;
    border-color: var(--color-gold);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    padding: 60px;
    padding-left: 10%;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin: 24px 0 40px;
    letter-spacing: 1px;
}

.hero-image {
    height: 100vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Story Section */
.story {
    padding: 120px 0;
    background: white;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.story-lead {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.story-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.story-quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-accent);
    margin-top: 32px;
}

/* Collection Section */
.collection {
    padding: 120px 0;
    background: var(--color-cream-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 60px;
    font-size: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-info {
    padding: 24px;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 16px;
}

/* Impact Section */
.impact {
    padding: 120px 0;
    background: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.impact-card {
    text-align: center;
}

.impact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.impact-card h3 {
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.impact-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Sizes Section */
.sizes {
    padding: 80px 0;
    background: var(--color-cream);
    text-align: center;
}

.size-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.size-option {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.15);
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 2px;
}

.size-note {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Order Section */
.order {
    padding: 120px 0;
    background: var(--color-cream-dark);
}

.order-content {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
}

.order-info {
    margin-bottom: 40px;
}

.order-info p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.order-info ul {
    list-style: none;
    margin: 20px 0;
}

.order-info li {
    padding: 8px 0;
    color: var(--color-text-light);
}

.order-info li::before {
    content: "→ ";
    color: var(--color-gold);
}

.order-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--color-text);
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    margin: 6px 0;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream);
    z-index: 999;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    display: block;
    padding: 20px 24px;
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: var(--color-cream-dark);
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: 120px 24px 60px;
        text-align: center;
    }
    
    .hero-image {
        height: 60vh;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .order-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
}