/* 
    Theme: Modern Gold Minimal
    Primary: #1F3D2B (Dark Green - used as deep tint)
    Secondary: #7A4A2E (Brown - used for accents)
    Accent: #C9A24D (Gold - Primary Highlight)
    Background: Dark Charcoal/Black (#121212)
*/

:root {
    --primary-color: #C9A24D;
    --secondary-color: #7A4A2E;
    --dark-bg: #121212;
    --card-bg: #1A1A1A;
    --text-light: #EFE6D8;
    --text-white: #FFFFFF;
    --text-muted: #A0A0A0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-alt: 'Inter', sans-serif;
    --spacing-unit: 8px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.section-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: var(--text-light);
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: var(--font-alt);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    border: 2px solid var(--primary-color);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #000;
}

.btn-sm {
    padding: 8px 24px;
    font-size: 0.8rem;
}

/* Header & Navigation */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

header.sticky {
    position: fixed;
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 10px 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    background: transparent !important;
    object-fit: contain;
    max-width: 150px;
    height: auto;
    display: block;
}

.desktop-nav {
    display: flex;
    gap: 40px;
}

.desktop-nav a {
    color: var(--text-light);
    font-family: var(--font-alt);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icons a {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background-color: #1a1a1a;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #333;
}

.mobile-menu a {
    display: block;
    padding: 15px;
    color: var(--text-light);
    border-bottom: 1px solid #333;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: url('https://images.pexels.com/photos/12737661/pexels-photo-12737661.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
    animation: fadeIn 1.5s ease;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Collections Section */
.collections-section {
    background-color: var(--dark-bg);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.collection-card {
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

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

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(201, 162, 77, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.card-details {
    padding: 25px;
    text-align: center;
}

.card-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.card-details p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-family: var(--font-alt);
}

/* Roots Section */
.roots-section {
    background-color: #151515;
}

.roots-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.roots-image-wrapper {
    flex: 1;
    position: relative;
}

.image-frame {
    border: 1px solid var(--primary-color);
    padding: 15px;
    position: relative;
}

.image-frame img {
    width: 100%;
    display: block;
}

.roots-content {
    flex: 1;
}

.drop-cap-wrapper {
    display: flex;
    gap: 20px;
}

.drop-cap {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 0.8;
    color: var(--primary-color);
    float: left;
    margin-right: 20px;
}

.drop-cap-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.drop-cap-text p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Sustainability Section */
.sustainability-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1F3D2B 0%, #121212 100%);
    position: relative;
}

.sustainability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A24D' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.icons-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.icon-box {
    text-align: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.icon-box:hover .icon-circle {
    background-color: var(--primary-color);
    color: #000;
    transform: scale(1.1);
}

.icon-box h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Blog Section */
.blog-section {
    background-color: var(--dark-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: #181818;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: 0.3s;
}

.blog-card:hover {
    border-color: var(--primary-color);
}

.blog-img-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 3px solid var(--primary-color);
}

.blog-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.blog-content p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background-color: #151515;
    border-top: 1px solid #333;
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-brand h4 {
    color: var(--text-light);
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: #0f0f0f;
    padding: 60px 0 30px;
    border-top: 1px solid #222;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.footer-social a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .roots-layout {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-brand {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .icons-grid {
        gap: 40px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}