:root {
    --primary-color: #D4AF37; /* Gold */
    --primary-hover: #F9D768;
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

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

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 1px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--primary-color), #B08D22);
    color: var(--bg-darker);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.cta-button.outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.outline:hover {
    background: var(--primary-color);
    color: var(--bg-darker);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    max-width: 250px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('assets/hero_bg.jpg') center/cover no-repeat;
    text-align: center;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Philosophy */
.philosophy {
    padding: 100px 0;
    background-color: var(--bg-darker);
    text-align: center;
}

.philosophy-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.belief-card {
    max-width: 700px;
    margin: 40px auto 0;
}

.belief-card h3 {
    color: #FF5555;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Products */
.products {
    padding: 100px 0;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-img-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.5s ease;
}

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

.filter-blue {
    filter: hue-rotate(200deg) saturate(1.5); /* Quick tint for All-in-One Spray placeholder */
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.product-size {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-usps {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-usps li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.product-usps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
    border-top: 1px solid var(--glass-border);
    padding-top: 15px;
}
.price-desc {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* Tips Section */
.tips {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.tips .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -20px;
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tip-card {
    position: relative;
    padding-top: 30px;
}
.tip-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.tip-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Events Section */
.events {
    padding: 100px 0;
}

.event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.event-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.event-highlights {
    list-style: none;
    margin-bottom: 30px;
}

.event-highlights li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.event-image-wrapper {
    padding: 10px;
    border-radius: 20px;
}

.event-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 60px 0 20px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.footer-tagline {
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 30px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .event-content {
        grid-template-columns: 1fr;
    }
}
