/* ============================================
   STORMY MARIE - NEON PINK & BLACK
   Theme: Neon Pink, Deep Magenta, Black
   "Dangerously Beautiful. Unforgettable."
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Josefin+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Backgrounds - Deep Black */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-elevated: #1A0D1A;
    --bg-overlay: rgba(10, 5, 10, 0.95);

    /* Primary - Neon Pink */
    --whiskey: #FF10F0;
    --whiskey-light: #FF5CF5;
    --whiskey-dark: #CC0DC0;
    --rust: #B024A8;
    --rust-light: #D42EC8;
    --rust-dark: #8A1B82;

    /* Secondary - Dark Feminine Palette */
    --leather: #3D1A3D;
    --leather-light: #5A2D5A;
    --cream: #F5E8F3;
    --hay: #D4B8D0;
    --dirt: #5A3356;

    /* Text */
    --text-primary: #F5E8F3;
    --text-secondary: #B89AB5;
    --text-muted: #7A5C78;

    /* Gradients */
    --gradient-whiskey: linear-gradient(135deg, var(--whiskey-dark) 0%, var(--whiskey-light) 100%);
    --gradient-rust: linear-gradient(135deg, var(--rust-dark) 0%, var(--rust-light) 100%);
    --gradient-leather: linear-gradient(135deg, #2A0D2A 0%, #5A2D5A 100%);

    /* Glows */
    --glow-whiskey: 0 0 20px rgba(255, 16, 240, 0.3), 0 0 40px rgba(255, 16, 240, 0.1);
    --glow-rust: 0 0 20px rgba(176, 36, 168, 0.3), 0 0 40px rgba(176, 36, 168, 0.1);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    --font-condensed: 'Josefin Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    color: var(--whiskey);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--whiskey-light);
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

.gradient-text {
    background: var(--gradient-whiskey);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
}

.section--alt {
    background: var(--bg-secondary);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(10, 5, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 16, 240, 0.1);
    transition: var(--transition-normal);
}

.nav.scrolled {
    padding: var(--space-sm) 0;
    background: rgba(10, 5, 10, 0.98);
}

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

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

.nav__logo-img {
    height: 55px;
    max-height: 55px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

/* Visually hidden for SEO */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__link {
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-whiskey);
    transition: var(--transition-normal);
}

.nav__link:hover,
.nav__link--active {
    color: var(--cream);
}

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.nav__toggle span {
    width: 25px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition-normal);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.btn--primary {
    background: var(--gradient-whiskey);
    color: var(--bg-primary);
    box-shadow: var(--glow-whiskey);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 16, 240, 0.5), 0 0 60px rgba(255, 16, 240, 0.2);
}

.btn--secondary {
    background: transparent;
    color: var(--whiskey);
    border: 2px solid var(--whiskey);
}

.btn--secondary:hover {
    background: var(--whiskey);
    color: var(--bg-primary);
}

.btn--rust {
    background: var(--gradient-rust);
    color: var(--cream);
    box-shadow: var(--glow-rust);
}

.btn--rust:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(176, 36, 168, 0.5), 0 0 60px rgba(176, 36, 168, 0.2);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(80px + var(--space-3xl)) var(--space-lg) var(--space-3xl);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 16, 240, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(164, 74, 42, 0.1) 0%, transparent 50%),
        var(--bg-primary);
    z-index: -1;
}

.hero__texture {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.hero__content {
    position: relative;
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero__logo {
    margin-bottom: var(--space-xl);
    display: flex;
    justify-content: center;
}

.hero__logo img {
    max-width: 400px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 16, 240, 0.3));
}

@media (max-width: 768px) {
    .hero__logo img {
        max-width: 280px;
        max-height: 140px;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 16, 240, 0.15);
    border: 1px solid rgba(255, 16, 240, 0.3);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
    font-family: var(--font-condensed);
    font-weight: 600;
    color: var(--whiskey);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 16, 240, 0.3); }
    50% { box-shadow: 0 0 20px 5px rgba(255, 16, 240, 0.2); }
}

.hero__badge svg {
    width: 20px;
    height: 20px;
    fill: var(--whiskey);
}

.hero__title {
    margin-bottom: var(--space-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__tagline {
    font-family: var(--font-condensed);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-2xl) 0;
    border-top: 1px solid rgba(255, 16, 240, 0.1);
    border-bottom: 1px solid rgba(255, 16, 240, 0.1);
}

.stat {
    text-align: center;
    padding: var(--space-lg);
}

.stat__value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--whiskey);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat__label {
    font-family: var(--font-condensed);
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 16, 240, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 16, 240, 0.3);
    box-shadow: var(--glow-whiskey);
}

.card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.card__content {
    padding: var(--space-lg);
}

.card__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.card__description {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.gallery__item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 5, 10, 0.9), transparent 50%);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

/* ============================================
   FORMS
   ============================================ */
.form__group {
    margin-bottom: var(--space-lg);
}

.form__label {
    display: block;
    font-family: var(--font-condensed);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg-card);
    border: 1px solid rgba(255, 16, 240, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: var(--transition-normal);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    outline: none;
    border-color: var(--whiskey);
    box-shadow: 0 0 0 3px rgba(255, 16, 240, 0.1);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid rgba(255, 16, 240, 0.1);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    margin-bottom: var(--space-md);
}

.footer__logo-img {
    max-width: 180px;
    height: auto;
}

.footer__tagline {
    color: var(--text-muted);
    font-style: italic;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link {
    color: var(--text-secondary);
}

.footer__link:hover {
    color: var(--whiskey);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.footer__social a:hover {
    background: var(--whiskey);
    color: var(--bg-primary);
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 16, 240, 0.1);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   PRODUCTS/MERCH
   ============================================ */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.product {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 16, 240, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-whiskey);
}

.product__image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-secondary);
}

.product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product__content {
    padding: var(--space-lg);
}

.product__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.product__price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--whiskey);
    margin-bottom: var(--space-md);
}

/* ============================================
   BADGES & TAGS
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.badge--gold {
    background: var(--gradient-whiskey);
    color: var(--bg-primary);
}

.badge--rust {
    background: var(--gradient-rust);
    color: var(--cream);
}

.tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 16, 240, 0.1);
    border: 1px solid rgba(255, 16, 240, 0.2);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--whiskey);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section__subtitle {
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 600;
    color: var(--whiskey);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-sm);
}

.section__title {
    margin-bottom: var(--space-md);
}

.section__description {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.hidden { display: none !important; }
.visible { display: block !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--bg-primary);
        padding: var(--space-lg);
        gap: var(--space-md);
        border-bottom: 1px solid rgba(255, 16, 240, 0.1);
    }

    .nav__menu.active {
        display: flex;
    }

    .nav__toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: calc(80px + var(--space-2xl)) var(--space-md) var(--space-2xl);
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        max-width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .products {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
