:root {
    --primary-color: #88E6A7;
    --primary-dark: #6BD98F;
    --bg-dark: #0b101e;
    --bg-darker: #05070a;
    --bg-middle: #c5c5c5;
    --bg-light: #f4f5f8;
    --bg-dark-middle: #1b2131;
    --text-light: #ffffff;
    --text-dark: #111827;
    --text-muted: #9ca3af;
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    /* Trikot-Animation Variablen */
    --black: #05070a;
    --white: #ffffff;
    --accent: #88E6A7;
    --muted: rgba(255, 255, 255, 0.55);
    --font-display: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.legal-section {
    padding: 140px 0 80px;
    /* More top padding to account for fixed navbar */
    min-height: calc(100vh - 300px);
    /* Ensure footer stays at bottom */
    background: linear-gradient(110deg, #1b2131 0%, #3a4150 40%, #878c9a 100%);
    position: relative;
    z-index: 1;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: -1;
}

.legal-content {
    background: var(--bg-dark);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--text-light);
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-light);
}

.legal-content p,
.legal-content ul,
.legal-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.legal-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.dark-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 16px 0;
    background-color: var(--bg-dark);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--primary-color);
}

.logo-img {
    height: 55px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(136, 230, 167, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(110deg, #1b2131 0%, #3a4150 40%, #878c9a 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.05;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s 1s ease both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

.section-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

/* 3D Trikot */
.jersey-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 2rem;
}

.jersey-section-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 100%),
        var(--bg-dark);
}

.jersey-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 500px;
    width: 100%;
}

.jersey-label-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(70, 228, 50, 0.6);
    transition: all 0.4s ease;
}

.label-text {
    font-family: var(--font-family);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--white);
    transition: all 0.5s ease;
}

.label-desc {
    color: var(--muted);
    font-size: 0.95rem;
    text-align: center;
    max-width: 380px;
    line-height: 1.7;
    transition: all 0.5s ease;
}

.card-scene {
    width: 340px;
    height: 420px;
    perspective: 1000px;
}

.card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 2.2s cubic-bezier(0.68, -0.15, 0.27, 1.15);
}

.card.flipped {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: visible;
}

.card-back {
    transform: rotateY(180deg);
}

/* Jersey image layers */
.jersey-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.jersey-print {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.floating-elem {
    position: absolute;
    object-fit: contain;
    pointer-events: none;
    opacity: 0;
}

/* Wappen: starts top-left, flies into position on the shirt */
#floatWappen {
    width: 42px;
    /*height: 50px;*/
    top: 73px;
    left: 192px;
    /* final resting position on shirt chest */
    transform: translate(-250px, -200px) scale(2.5) rotate(-30deg);
    opacity: 0;
    filter: drop-shadow(0 0 20px rgba(70, 228, 50, 0.6));
    transition:
        transform 1.6s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.8s ease,
        filter 1.6s ease;
}

/* Sponsor: starts from bottom, flies up into position */
#floatSponsor {
    width: 130px;
    /*height: 80px;*/
    bottom: 195px;
    left: 167px;
    transform: translateX(-50%) translateY(300px) scale(0.4) rotate(15deg);
    opacity: 0;
    filter: drop-shadow(0 0 20px rgba(70, 228, 50, 0.6));
    transition:
        transform 1.8s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.8s ease,
        filter 1.8s ease;
    transition-delay: 0.4s;
}

/* Active states (elements land on shirt) */
#floatWappen.landed {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(70, 228, 50, 0.6));
}

#floatSponsor.landed {
    transform: translateX(-50%) translateY(0) scale(1) rotate(0deg);
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(70, 228, 50, 0.6));
}

/* Merged state: floating elements fade out, print image fades in */
#floatWappen.merged,
#floatSponsor.merged {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.replay-btn {
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease both;
}

/* ── Duo-View: beide Trikots gleichzeitig ── */
.jersey-duo {
    display: none;
    /* JS zeigt es via class 'visible' */
    position: relative;
    width: 360px;
    height: 420px;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.jersey-duo.visible {
    display: block;
    opacity: 1;
}

.duo-jersey {
    position: absolute;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.duo-jersey img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.6));
}

/* Rückseite: etwas kleiner, rechts-unten versetzt, leicht transparent */
.duo-back {
    right: -15px;
    top: 32px;
    width: 230px;
    transform: rotate(3deg);
    opacity: 0.85;
    z-index: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Vorderseite: größer, links-oben, ganz vorne */
.duo-front {
    left: -15px;
    top: 0;
    z-index: 2;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.8));
    transition: transform 0.3s ease;
}

.jersey-duo:hover .duo-back {
    transform: rotate(5deg) translateX(6px);
    opacity: 1;
}

.jersey-duo:hover .duo-front {
    transform: translateY(-6px);
}

.duo-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
}

/* Leistungen */
.services-section {
    padding: 6rem 2rem;
    background: var(--bg-middle);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-dark-middle);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(70, 228, 50, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #000;
    transform: rotate(-10deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Partner */
.partners-section {
    padding: 2.5rem 0;
    background: var(--bg-middle);
    overflow: hidden;
}

.partners-label {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark-middle);
    margin-bottom: 1.5rem;
}

.partners-ticker-wrap {
    display: flex;
    overflow: hidden;
}

.partners-ticker {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: ticker 25s linear infinite;
    width: max-content;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 2rem;
    opacity: 0.75;
    transition: opacity var(--transition);
    flex-shrink: 0;
}

.partner-item:hover {
    opacity: 1;
}

.partner-item img {
    height: 200px;
    width: auto;
    object-fit: contain;
    display: block;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Angebote */
.team-offers {
    background-color: var(--bg-dark);
}

.offers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.offers-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.offers-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 480px;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefits-list li {
    font-size: 1.05rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.check {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.offers-image-placeholder {
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-effect {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.45;
        transform: scale(1.1);
    }
}

@keyframes wobble {

    0%,
    100% {
        transform: translateY(0px) rotate(-3deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.floating-jersey {
    position: relative;
    z-index: 1;
    animation: wobble 4s ease-in-out infinite;
    transform-origin: center;
}

.jersey-mockup {
    width: 240px;
    height: 280px;
    background: linear-gradient(145deg, rgba(46, 56, 40, 0.95), rgba(17, 23, 34, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(136, 230, 167, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(136, 230, 167, 0.05);
}

/*
.jersey-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #46e432, transparent);
}

.jersey-mockup::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #46e432, transparent);
}
*/
.jersey-mockup h1 {
    font-size: 6rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.jersey-mockup p {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--text-light);
}

/* Animations */
@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes floatJersey {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .offers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .offers-text h2 {
        font-size: 2rem;
    }

    .jersey-mockup {
        width: 200px;
        height: 280px;
    }

    .jersey-mockup h1 {
        font-size: 3rem;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--bg-dark);
    padding: 6rem 2rem;
}

.faq-section .section-header h2 {
    color: var(--text-light);
}

.faq-section .section-header p {
    color: var(--text-muted);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-dark-middle);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 11px;
    left: 4px;
    width: 16px;
    height: 2px;
}

.faq-icon::after {
    top: 4px;
    left: 11px;
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    transition: max-height 0.4s ease-in-out;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    color: var(--text-light);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}


.footer-brand {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand .logo {
    justify-content: center;
    width: 100%;
}

.footer-logo-img {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 24px;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    color: var(--text-light);
    font-weight: bold;
    font-size: 0.9rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer .instagram-link {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
}

.footer .instagram-link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    transition: opacity var(--transition);
}

.footer .instagram-link img.instagram-hover {
    opacity: 0;
}

.footer .instagram-link:hover img.instagram-default {
    opacity: 0;
}

.footer .instagram-link:hover img.instagram-hover {
    opacity: 1;
}

.footer-bottom {
    background-color: #030406;
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(230, 57, 70, 0.4));
    }

    50% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 24px rgba(230, 57, 70, 0.7));
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}


/* Responsive Variables */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .offers-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .navbar .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .offers-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .offers-text p {
        margin: 0 auto 30px auto;
    }

    .benefits-list li {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .offers-text h2 {
        font-size: 2.2rem;
    }
}