/* Eco-Luxury Design System - Galya Enterprises */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Eco-Luxury Colors */
    --primary: #047857;
    /* Deep Emerald */
    --primary-dark: #064E3B;
    /* Darker Emerald */
    --gold: #C5A059;
    /* Luxury Gold */
    --gold-light: #E5C580;
    /* Soft Gold */
    --cream: #FDFBF7;
    /* Warm White */
    --dark: #022c22;
    /* Near Black Green */

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Radii */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 50px;
}

/* Base Reset */
html,
body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Utility Classes */
.text-gold {
    color: var(--gold) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-cream {
    background-color: var(--cream) !important;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #B8904A 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
    color: white;
}

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

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

/* Navbar - Minimal & Glass */
.top-navbar {
    display: none;
    /* Hidden for cleaner look as per mockup */
}

header {
    position: absolute;
    /* Floating over hero */
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--dark) !important;
    /* Dark text for readability on light bg sections, will override for Hero */
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-nav-action {
    background: var(--gold);
    color: white !important;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #FDFBF7 0%, #E2E8F0 100%);
    /* Fallback */
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    overflow: hidden;
}

/* Pseudo-element for Hero Background Image needs to be handled inline or separate class */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 5rem;
    /* Huge Typography */
    line-height: 1;
    color: var(--gold);
    /* Gold Text */
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 50px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-title span {
    display: block;
    font-size: 6rem;
    color: var(--primary-dark);
    /* Contrast */
}

/* Glass Cards */
.glass-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 30px;
    width: 220px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.15);
}

.glass-icon {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: inline-block;
    background: var(--gold-light);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
}

.glass-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.btn-glass-sm {
    font-size: 0.8rem;
    padding: 6px 15px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary-dark);
}

.section-title p {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
}

/* Product Cards - Minimal */
.product-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.product-img-box {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #f8f8f8;
    border-radius: var(--radius-md);
}

.product-img-box img {
    max-height: 80%;
    transition: 0.5s;
}

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

/* Footer */
footer {
    background: var(--dark);
    color: var(--gold-light);
    padding: 80px 0 30px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-title span {
        font-size: 3.5rem;
    }

    .glass-card {
        width: 45%;
        margin-bottom: 15px;
    }

    .glass-container {
        gap: 10px;
    }

    .top-navbar {
        display: block;
        background: var(--primary-dark);
        color: white;
        padding: 5px 0;
        text-align: center;
        font-size: 0.8rem;
    }

    header {
        position: relative;
        background: white;
    }
}