/* Custom CSS for Athlean Fitness */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&family=Oswald:wght@300;400;500;700&family=Roboto:wght@300;400;500;700&display=swap');

/* Typography */
:root {
    --bg-color: #000000;
    --bg-off-color: #111111;
    --text-color: #ffffff;
    --text-muted: #9ca3af;
    --border-color: #1f2937;
    --card-bg: #000000;
    --brand-pink: #FF3278;
    /* Cult.fit style pink */
    --brand-gradient: linear-gradient(135deg, #FF3278 0%, #FF5C93 100%);

    /* Aurora Colors - Dark */
    --aurora-1: #000000;
    --aurora-2: #1a050d;
    --aurora-3: #2b0014;
}

.light-theme {
    --bg-color: #ffffff;
    --bg-off-color: #f3f4f6;
    --text-color: #000000;
    --text-muted: #4b5563;
    --border-color: #e5e7eb;
    --card-bg: #ffffff;
    --brand-pink: #FF3278;
    --brand-gradient: linear-gradient(135deg, #FF3278 0%, #FF5C93 100%);

    /* Aurora Colors - Light */
    --aurora-1: #ffffff;
    --aurora-2: #fff1f2;
    /* Rose 50 */
    --aurora-3: #ffe4e6;
    /* Rose 100 */
}

/* Brand Utilities */
/* Brand Utilities */
.text-brand {
    color: var(--brand-pink);
}

.bg-brand {
    background-color: var(--brand-pink);
}

.bg-gradient-brand {
    background: var(--brand-gradient);
}

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

.border-brand {
    border-color: var(--brand-pink);
}

/* Aurora Effect - subtle moving heavy gradients */
.aurora-bg {
    background: linear-gradient(-45deg, var(--aurora-1), var(--aurora-2), var(--aurora-3), var(--aurora-1));
    background-size: 400% 400%;
    animation: aurora 15s ease infinite;
}

@keyframes aurora {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Cult.Fit Style Clean Hover */
.cult-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cult-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

/* Remove neon glow, keep it clean */
.neon-shadow {
    display: none;
}

.neon-hover:hover {
    border-color: transparent;
    /* Remove border on hover for cleaner look */
    /* Add a subtle shine or lift instead */
}

.skew-divider {
    transform: skewY(-3deg);
    transform-origin: 0;
}



body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Parallax Utilities */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 2;
}

.parallax-content {
    position: relative;
    z-index: 3;
}

/* Glassmorphism */
.glass {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Hover Effects */
.hover-card {
    transition: all 0.4s ease;
    /* filter: grayscale(100%); Cult.fit is vibrant, removing grayscale */
}

.hover-card:hover {
    transform: translateY(-10px);
    filter: grayscale(0%);
    box-shadow: 0 20px 25px -5px rgba(255, 255, 255, 0.1), 0 10px 10px -5px rgba(255, 255, 255, 0.04);
}

/* Image Grayscale Toggle */
.grayscale-img {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.grayscale-img:hover {
    filter: grayscale(0%);
}

/* Text Selection */
::selection {
    background: #fff;
    color: #000;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}