/* 
   Shreeja Divine - Premium Incense Stick Single-Page Website Stylesheet
   Design Language: Deep Charcoal, Antique Gold, Glassmorphism, Divine Indian Elegance
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --bg-primary: #0a0a0c;
    --bg-secondary: #121216;
    --bg-tertiary: #191921;
    --accent-gold: #c5a059;
    --accent-gold-bright: #e5c17d;
    --accent-gold-dark: #8c6a2d;
    --accent-gold-glow: rgba(197, 160, 89, 0.12);
    --accent-gold-glow-strong: rgba(197, 160, 89, 0.35);
    
    /* Text Colors */
    --text-primary: #f5f5f7;
    --text-secondary: #a5a5b2;
    --text-muted: #72727d;
    
    /* UI Borders & Shadows */
    --border-gold: rgba(197, 160, 89, 0.15);
    --border-gold-hover: rgba(197, 160, 89, 0.4);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px var(--accent-gold-glow);
    
    /* Typography Font Stacks */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transition Variables */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

.gold-text {
    background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 50%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

/* Ornate Underline ornament */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    margin: 0.75rem auto 0;
}

.section-title-ornament {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-top: 0.25rem;
    display: block;
    opacity: 0.8;
}

/* Premium Buttons & Links */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
    color: #000;
    border: 1px solid var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-bright) 100%);
}

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

.btn-secondary:hover {
    background: rgba(197, 160, 89, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.header.scrolled {
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(12px);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-gold);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-primary);
}

.logo img {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header.scrolled .logo img {
    height: 60px;
}

.logo-fallback {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-quick);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold-bright);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-quick);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    background: radial-gradient(circle at 75% 50%, rgba(140, 106, 45, 0.12) 0%, rgba(10, 10, 12, 0.98) 70%), 
                url('../images/hero_bg.png') no-repeat center right;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 12, 0.95) 30%, rgba(10, 10, 12, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--accent-gold-bright);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Smoke float element animation */
.smoke-particle {
    position: absolute;
    width: 150px;
    height: 300px;
    background: radial-gradient(ellipse at bottom, rgba(197, 160, 89, 0.05), transparent 70%);
    bottom: -100px;
    right: 15%;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: floatSmoke 12s infinite ease-in-out;
    z-index: 1;
}

.smoke-particle-2 {
    right: 25%;
    width: 250px;
    height: 400px;
    animation-delay: 4s;
    animation-duration: 16s;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-gold);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

/* Frame overlay */
.about-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    pointer-events: none;
    z-index: 1;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-top: 0.2rem;
}

.about-feature-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.about-feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Fragrance Catalog Section */
.catalog {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-secondary);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--accent-gold-bright);
    border-color: var(--accent-gold);
    background: rgba(197, 160, 89, 0.05);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
    color: #000;
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.25);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.catalog-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
}

.catalog-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-hover);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
}

.catalog-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--bg-tertiary);
}

.catalog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.catalog-card:hover .catalog-image {
    transform: scale(1.08);
}

.catalog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 10, 12, 0.85);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold-bright);
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.catalog-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.catalog-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    transition: var(--transition-quick);
}

.catalog-card:hover .catalog-title {
    color: var(--accent-gold-bright);
}

.catalog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.catalog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.catalog-meta-item svg {
    color: var(--accent-gold);
    width: 14px;
    height: 14px;
}

.catalog-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.catalog-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
    margin-top: auto;
}

.catalog-specs {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.catalog-specs strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.catalog-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold-bright);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-quick);
}

.catalog-btn:hover {
    color: #fff;
    transform: translateX(3px);
}

/* Why Choose Us Section */
.why-us {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-us-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-gold);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.why-us-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold-hover);
    box-shadow: var(--shadow-glow);
}

.why-us-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--accent-gold-bright);
    transition: var(--transition-smooth);
}

.why-us-card:hover .why-us-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
    color: #000;
    border-color: var(--accent-gold);
    transform: rotateY(180deg);
}

.why-us-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.why-us-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.why-us-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Export / Wholesale Callout Section */
.wholesale {
    padding: 8rem 0;
    background: linear-gradient(rgba(10, 10, 12, 0.9), rgba(10, 10, 12, 0.9)), 
                url('../images/hero_bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.wholesale::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(140, 106, 45, 0.1) 0%, rgba(10, 10, 12, 0.7) 100%);
}

.wholesale-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.wholesale h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.wholesale p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.wholesale-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.wholesale-benefit-item {
    background: rgba(18, 18, 22, 0.65);
    border: 1px solid var(--border-gold);
    padding: 1.5rem 1rem;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

.wholesale-benefit-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--accent-gold-bright);
    margin-bottom: 0.5rem;
}

.wholesale-benefit-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Inquiry / Contact Form Section */
.contact {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 5rem;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
}

.contact-detail-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.contact-detail-text p, .contact-detail-text a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-quick);
}

.contact-detail-text a:hover {
    color: var(--accent-gold-bright);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-btn:hover {
    background-color: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Glassmorphism Form */
.contact-form-wrapper {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
}

.form-control {
    width: 100%;
    background-color: rgba(10, 10, 12, 0.6);
    border: 1px solid var(--border-gold);
    color: var(--text-primary);
    padding: 1rem 1.25rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent-gold-bright);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.15);
    background-color: rgba(10, 10, 12, 0.9);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    font-size: 0.95rem;
}

/* Form Success & Error states */
.form-feedback {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
}

.form-feedback.success {
    display: block;
    background-color: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.3);
    color: #81c784;
}

.form-feedback.error {
    display: block;
    background-color: rgba(198, 40, 40, 0.1);
    border: 1px solid rgba(198, 40, 40, 0.3);
    color: #e57373;
}

/* Footer Section */
.footer {
    background-color: #050507;
    border-top: 1px solid var(--border-gold);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: var(--accent-gold-bright);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-quick);
}

.footer-links a:hover {
    color: var(--accent-gold-bright);
    padding-left: 5px;
}

.footer-contact-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.footer-contact-info strong {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: var(--transition-quick);
}

.footer-bottom-links a:hover {
    color: var(--accent-gold-bright);
}

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

@keyframes floatSmoke {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-80px) scale(1.15) rotate(15deg);
        opacity: 0.7;
    }
}

/* Scroll reveal triggers */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Breakpoints */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .about-grid {
        gap: 3rem;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
    
    .header.scrolled .logo img {
        height: 48px;
    }

    .nav-menu {
        display: none; /* Mobile menu toggled via JS */
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(12px);
        padding: 2.5rem;
        border-bottom: 1px solid var(--border-gold);
        gap: 1.5rem;
        text-align: center;
        z-index: 999;
        box-shadow: var(--shadow-premium);
    }
    
    .nav-menu.mobile-active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero {
        background: radial-gradient(circle at center, rgba(140, 106, 45, 0.12) 0%, rgba(10, 10, 12, 0.98) 100%);
        text-align: center;
        padding-top: 10rem;
    }
    
    .hero::before {
        background: rgba(10, 10, 12, 0.6);
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image-wrapper {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .wholesale-benefits {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
