:root {
    --bg-color: #1a1a1a;
    --card-bg: rgba(45, 45, 45, 0.6);
    --text-primary: #fdfdfd;
    --text-secondary: #aaaaaa;
    --accent-red: #cc0000;
    --accent-orange: #ff5500;
    --glass-border: rgba(204, 0, 0, 0.3);
    --glow-shadow: 0 0 20px rgba(255, 85, 0, 0.6);

    --font-heading: 'Bebas Neue', display;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 1px;
}

/* Typography Enhancements */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.fire-text {
    color: #ffeb99;
    text-shadow:
        0px -2px 4px rgba(255, 255, 255, 0.8),
        0px -6px 10px rgba(255, 255, 0, 0.8),
        0px -10px 20px rgba(255, 102, 0, 0.8),
        0px -20px 40px rgba(204, 0, 0, 0.8);
    animation: flicker-flame 1.5s ease-in-out infinite alternate;
}

@keyframes flicker-flame {

    0%,
    100% {
        text-shadow:
            0px -2px 4px rgba(255, 255, 255, 0.8),
            0px -6px 10px rgba(255, 255, 0, 0.8),
            0px -10px 20px rgba(255, 102, 0, 0.8),
            0px -20px 40px rgba(204, 0, 0, 0.8);
    }

    25% {
        text-shadow:
            0px -3px 5px rgba(255, 255, 255, 0.8),
            0px -8px 12px rgba(255, 204, 0, 0.8),
            0px -15px 25px rgba(255, 85, 0, 0.8),
            0px -25px 50px rgba(204, 0, 0, 0.9);
    }

    50% {
        text-shadow:
            0px -1px 3px rgba(255, 255, 255, 0.8),
            0px -5px 8px rgba(255, 255, 0, 0.8),
            0px -12px 18px rgba(255, 102, 0, 0.9),
            0px -22px 45px rgba(180, 0, 0, 0.8);
    }

    75% {
        text-shadow:
            0px -4px 6px rgba(255, 255, 255, 0.9),
            0px -10px 15px rgba(255, 204, 0, 0.9),
            0px -18px 30px rgba(255, 60, 0, 0.8),
            0px -28px 55px rgba(204, 0, 0, 1);
    }
}

.accent-text {
    color: var(--accent-red);
}

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

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 2rem;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hidden {
    display: none !important;
}

.mt-1 {
    margin-top: 1rem;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

/* Navigation */
.sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.nav-logo-img {
    height: 65px;
    width: 65px;
    background: white;
    border-radius: 50%;
    padding: 6px;
    margin-right: 12px;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 85, 0, 0.4);
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--accent-orange);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Reusable Components */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-orange);
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.25rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: var(--glow-shadow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.8);
}

.cta-button.full-width {
    width: 100%;
    text-align: center;
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 40px rgba(255, 85, 0, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 20px rgba(255, 85, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 85, 0, 0.8);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 85, 0, 0.4);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.floating-bottle {
    animation: float 6s ease-in-out infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Home / About Layout */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    padding: 2rem 5rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-box {
    position: relative;
    border-radius: 50%;
}

.glow-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.5) 0%, rgba(26, 26, 26, 0) 70%);
    z-index: -1;
    animation: pulse 4s infinite;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.about-content {
    padding: 6rem 0;
    background: linear-gradient(to bottom, transparent, rgba(204, 0, 0, 0.1));
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
}

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

.story-card h3 {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-hero {
    padding: 4rem 2rem 2rem;
}

.gallery-hero h1 {
    font-size: 3.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    padding-bottom: 6rem;
}

.gallery-item {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
    border: 4px solid transparent;
    background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
        linear-gradient(135deg, var(--accent-orange), var(--accent-red)) border-box;
    -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-caption h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent-orange);
}

/* Order Section */
.order-hero {
    padding: 4rem 2rem 2rem;
}

.order-hero h1 {
    font-size: 3.5rem;
}

.order-container {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
}

.order-image-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.order-img {
    height: 400px;
    border-radius: 16px;
    border: 4px solid transparent;
    background: linear-gradient(var(--bg-color), var(--bg-color)) padding-box,
        linear-gradient(135deg, var(--accent-orange), var(--accent-red)) border-box;
    -webkit-mask-image: radial-gradient(ellipse at center, black 65%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, black 65%, transparent 100%);
}

.price-tag {
    margin-top: 2rem;
}

.price-tag h2 {
    font-size: 3rem;
    color: var(--accent-red);
}

.price-tag .per-bottle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.order-form-col {
    flex: 1;
}

.order-form-col h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-orange);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

input,
select {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s, background 0.3s;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.1);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    width: max-content;
}

.qty-btn {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

.qty-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.quantity-selector input {
    width: 40px;
    text-align: center;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
    padding: 0;
    pointer-events: none;
}

.quantity-selector input:focus {
    outline: none;
    background: transparent;
}

.success-message {
    text-align: center;
    padding: 3rem;
    border-color: #00ff88 !important;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    background: rgba(20, 20, 20, 0.9);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-orange);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 860px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        padding-top: 4rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-image img {
        height: 400px;
    }

    .order-container {
        flex-direction: column;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1rem 0;
        border-bottom: 1px solid var(--glass-border);
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 1rem 2rem;
        display: block;
    }
}