/* Base styling */
:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --accent-secondary: #666666;
    --accent-light: #999999;
    --text-color: #f5f5f5;
    --text-dark: #333;
    --font-primary: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    --font-secondary: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    --gradient-primary: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #666666 0%, #999999 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

*::selection {
    background-color: var(--accent-color);
    color: white;
}

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

body {
    font-family: var(--font-secondary);
    font-weight: normal;
    color: var(--text-color);
    background-color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Animated gradient background accent */
body:after {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    animation: backgroundShift 20s ease infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundShift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -30px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: normal;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-secondary);
    border-radius: 10px;
}

p {
    margin-bottom: 1rem;
    font-weight: normal;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-secondary);
}

a:hover {
    color: var(--accent-color);
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-secondary);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Larger touch targets on mobile */
    a,
    button,
    .menu-tab,
    .order-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .menu-item:hover,
    .order-option:hover,
    .contact-item:hover {
        transform: none;
    }

    /* Keep important interactions */
    .menu-item:active {
        transform: scale(0.98);
    }

    .order-btn:active {
        transform: scale(0.95);
    }
}

/* Loading state */
body {
    opacity: 0;
    animation: pageLoad 0.5s ease forwards;
}

@keyframes pageLoad {
    to {
        opacity: 1;
    }
}

section {
    padding: 6rem 0;
}

/* Section reveal animations */
.section-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in animation class */
.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.35;
    overflow: hidden;
    pointer-events: none;
    /* Fallback bakgrund för när video inte fungerar */
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(26, 26, 26, 0.95) 50%,
            rgba(0, 0, 0, 0.9) 100%);
}

.video-container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    object-fit: cover;
    pointer-events: none;
    /* Förhindrar att användare kan klicka på videon */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Mobilanpassning för video */
@media (max-width: 768px) {
    .video-container {
        opacity: 0.9;
        /* Ökar synlighet ännu mer på mobil */
        height: 100vh;
        position: fixed;
        overflow: hidden;
        z-index: -1;
    }

    /* Mycket ljusare filter på mobil för bättre synlighet */
    .video-container:after {
        background: radial-gradient(circle at center, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.08));
    }

    #background-video {
        /* Säkerställer att videon täcker hela skärmen på mobil */
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        object-fit: cover;
        object-position: center center;
        /* Förbättrad prestanda på mobil */
        will-change: transform;
        transform: translate3d(-50%, -50%, 0) scale(1.02);
    }

    /* Fallback om video inte fungerar på mobil - nu ljusare */
    .video-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(26, 26, 26, 0.8) 50%,
                rgba(0, 0, 0, 0.7) 100%);
        z-index: -1;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all var(--transition-base);
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: transform var(--transition-base);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: all var(--transition-base);
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul li a {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    font-weight: 500;
    transition: color var(--transition-base);
}

nav ul li a:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width var(--transition-base);
    border-radius: 2px;
}

nav ul li a:hover {
    color: white;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-logo img {
    width: auto;
    height: 250px;
    filter: brightness(0) invert(1);
    transition: transform var(--transition-base);
}

.hero-logo img:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-family: var(--font-primary);
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: var(--accent-color);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-family: var(--font-primary);
    margin-bottom: 2rem;
    color: var(--accent-light);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.7s;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.9s;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-base);
    color: var(--accent-light);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-order {
    display: inline-block;
    background: white;
    color: black;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all var(--transition-base);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.1s;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-order:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-order:hover:before {
    left: 100%;
}

.btn-order:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
    background: var(--accent-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.3s;
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 30px;
        opacity: 0.3;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.about:before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.about-text,
.about-image {
    flex: 1;
}

.about-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-text p:first-of-type:first-letter {
    font-size: 3.5rem;
    font-weight: bold;
    float: left;
    line-height: 1;
    margin: 0 0.1em 0 0;
    color: var(--accent-color);
}

.about-image {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-slow);
    border-radius: 15px;
}

.about-image:hover img {
    transform: scale(1.1);
}

/* Reviews Section */
.reviews {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.reviews h2 {
    color: var(--text-color);
    margin-bottom: 3rem;
}

.reviews-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.reviews-header {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #202124;
    font-family: 'Arial', sans-serif;
    line-height: 1;
}

.stars-small {
    color: #FBBC04;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.partial-star {
    background: linear-gradient(90deg, #FBBC04 80%, #dadce0 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.review-card {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    padding: 2rem;
    transition: all var(--transition-base);
}

.review-card:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.review-stars {
    color: #FBBC04;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.review-text {
    color: #3c4043;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e8e8e8;
}

.author-name {
    color: #202124;
    font-weight: 600;
    font-size: 0.95rem;
}

.review-date {
    color: #5f6368;
    font-size: 0.85rem;
}

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

.view-all-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #1a73e8;
    color: white;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.25px;
    transition: all var(--transition-base);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    font-family: 'Arial', sans-serif;
}

.view-all-btn:hover {
    background: #1765cc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Menu Section */
.menu {
    background-color: var(--primary-color);
    position: relative;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    gap: 0.5rem;
}

.menu-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin: 0.5rem;
    padding: 0.8rem 1.8rem;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-base);
    border-radius: 50px;
    overflow: hidden;
}

.menu-tab:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: white;
    border-radius: 50%;
    transition: all var(--transition-base);
    z-index: -1;
}

.menu-tab:hover:before,
.menu-tab.active:before {
    width: 120%;
    height: 300%;
}

.menu-tab:hover,
.menu-tab.active {
    color: black;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.menu-items {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.menu-items.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(450px, 100%), 1fr));
    gap: 2.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.menu-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s;
}

.menu-item:hover:before {
    left: 100%;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-item-image {
    width: 130px;
    height: 130px;
    position: relative;
    flex-shrink: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    transition: transform var(--transition-base);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1) rotate(5deg);
}

.menu-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-info h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 0.5rem;
    color: white;
    transition: color var(--transition-base);
}

.menu-item:hover .menu-item-info h3 {
    color: var(--accent-light);
}

.menu-item-info p {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.price {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--accent-light);
    font-weight: 600;
}

/* Wings options styling */
.wings-options {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.wing-box {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--accent-light);
    font-weight: 600;
    transition: all var(--transition-base);
    cursor: pointer;
}

.wing-box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

/* Order Section */
.order {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.order:before {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.order-options {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.order-option {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.order-option:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.order-option:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
}

.order-option:hover:before {
    opacity: 1;
}

.order-icon {
    margin-bottom: 2rem;
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.order-icon:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.order-option:hover .order-icon:after {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.order-option h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: white;
}

.order-option p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

.order-btn {
    display: inline-block;
    position: relative;
    padding: 1.2rem 2.5rem;
    background: white;
    color: black;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.btn-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transition: width 0.3s ease;
    z-index: 0;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
    background: var(--accent-light);
}

.order-btn:hover .btn-slide {
    width: 100%;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.order-divider {
    position: relative;
    width: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.order-divider:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 30%,
            rgba(255, 255, 255, 0.3) 70%,
            transparent 100%);
}

.order-divider span {
    background: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    font-family: var(--font-primary);
    font-style: italic;
    color: white;
    font-size: clamp(1rem, 2vw, 1.3rem);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    position: relative;
}

.company-logo {
    max-width: 70px;
    max-height: 70px;
    z-index: 5;
    transition: transform var(--transition-base);
}

.order-option:hover .company-logo {
    transform: scale(1.15) rotate(5deg);
}

/* Specific animations for different options */
.delivery-option .order-icon {
    animation: float 3s ease-in-out infinite;
}

.pickup-option .order-icon {
    animation: bounce 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

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

/* Contact Section */
.contact {
    background-color: var(--primary-color);
    position: relative;
}

.contact-content {
    display: flex;
    gap: 5rem;
    align-items: stretch;
}

.contact-info,
.contact-map {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.contact-item h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
    color: white;
}

.contact-item p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.contact-item p a {
    color: var(--accent-light);
    transition: all var(--transition-base);
    text-decoration: underline;
    text-decoration-color: rgba(153, 153, 153, 0.5);
    text-underline-offset: 3px;
}

.contact-item p a:hover {
    color: white;
    text-decoration-color: white;
    transform: translateX(5px);
}

.contact-map {
    flex: 1;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-base);
}

.contact-map:hover {
    transform: scale(1.02);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--primary-color) 0%, #000000 100%);
    padding: 5rem 0 1.5rem;
    position: relative;
}

footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: transform var(--transition-base);
}

.footer-logo img:hover {
    transform: scale(1.1);
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    transition: all var(--transition-base);
    overflow: hidden;
    position: relative;
}

.social-icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-secondary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.social-icon:hover {
    border-color: white;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.social-icon:hover:before {
    opacity: 0.2;
}

.social-media-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-base);
    position: relative;
    z-index: 2;
}

.social-icon:hover .social-media-icon {
    transform: scale(1.2);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: color var(--transition-base);
}

.footer-links a:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width var(--transition-base);
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover:after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* Responsive Design */

/* Tablets and below */
@media (max-width: 992px) {
    .hero-logo img {
        height: 180px;
    }

    .reviews-wrapper {
        padding: 2rem;
    }

    .google-badge {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        flex-direction: column;
        gap: 3rem;
    }

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

    .order-divider {
        width: 100%;
        height: 1px;
        min-height: auto;
        margin: 1rem 0;
    }

    .order-divider:before {
        width: 100%;
        height: 1px;
    }

    .order-divider span {
        background: var(--secondary-color);
        padding: 0.5rem 1.5rem;
    }

    html {
        font-size: 15px;
    }

    section {
        padding: 5rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-badges {
        gap: 0.8rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .about-content,
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }

    .about-image {
        padding: 1rem;
    }

    .contact-map {
        height: 350px;
    }

    .menu-items.active {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-item {
        padding: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .order-options {
        flex-direction: column;
        gap: 2rem;
    }

    .order-divider {
        width: 100%;
        min-height: auto;
        height: 80px;
        margin: 0;
    }

    .order-divider:before {
        width: 60%;
        height: 1px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: linear-gradient(to right,
                transparent 0%,
                rgba(255, 255, 255, 0.3) 30%,
                rgba(255, 255, 255, 0.3) 70%,
                transparent 100%);
    }

    .order-option {
        padding: 2.5rem 2rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {

    /* Video säkerhet för mobil */
    .video-container {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        /* Ännu högre opacity för bättre synlighet */
        opacity: 0.8 !important;
    }

    #background-video {
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        /* Förbättrad kvalitet och prestanda */
        filter: brightness(1.1) contrast(1.05);
    }

    .hero-logo img {
        height: 150px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .reviews-wrapper {
        padding: 1.5rem;
    }

    .google-badge {
        padding: 1.2rem 1.5rem;
    }

    .google-badge svg {
        width: 60px;
    }

    .rating-number {
        font-size: 2rem;
    }

    .stars-small {
        font-size: 1rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    html {
        font-size: 14px;
    }

    header {
        padding: 1rem 1.5rem;
    }

    header.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .logo img {
        height: 40px;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(26, 26, 26, 0.98));
        backdrop-filter: blur(20px);
        padding: 5rem 2rem 2rem;
        transition: right var(--transition-base);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        margin: 0;
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 0;
    }

    nav ul li a:after {
        display: none;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding: 2rem 0 6rem 0;
        /* Extra padding-bottom för scroll indicator */
        position: relative;
    }

    .hero-content {
        padding: 1.5rem;
        max-width: 100%;
    }

    .hero-logo img {
        height: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 0.5rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        width: 100%;
        max-width: 280px;
    }

    .btn-order {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        bottom: 3rem;
        width: 25px;
        height: 40px;
        z-index: 10;
    }

    /* Menu Section Mobile */
    .menu-categories {
        gap: 0.3rem;
    }

    .menu-tab {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        margin: 0.25rem;
    }

    .menu-items.active {
        gap: 1.5rem;
    }

    .menu-item {
        flex-direction: row;
        padding: 1rem;
        gap: 1rem;
    }

    .menu-item-image {
        width: 100px;
        height: 100px;
    }

    .menu-item-info h3 {
        font-size: 1.1rem;
    }

    .menu-item-info p {
        font-size: 0.85rem;
    }

    .price {
        font-size: 1.1rem;
    }

    /* Wings options mobile */
    .wings-options {
        gap: 0.4rem;
    }

    .wing-box {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }



    /* About Section Mobile */
    .about-image {
        padding: 0.5rem;
    }

    /* Order Section Mobile */
    .order-option {
        padding: 2rem 1.5rem;
    }

    .order-option:hover {
        transform: translateY(-5px) scale(1);
    }

    .order-icon {
        width: 80px;
        height: 80px;
    }

    .order-icon:after {
        width: 80px;
        height: 80px;
    }

    .company-logo {
        max-width: 55px;
        max-height: 55px;
    }

    .order-option h3 {
        font-size: 1.5rem;
    }

    .order-btn {
        padding: 1rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 300px;
    }

    /* Disable hover animations on mobile for menu items */
    .delivery-option .order-icon,
    .pickup-option .order-icon {
        animation: none;
    }

    /* Contact Section Mobile */
    .contact-map {
        height: 300px;
    }

    .contact-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Footer Mobile */
    footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-social {
        gap: 1rem;
        justify-content: center;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-media-icon {
        width: 22px;
        height: 22px;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    html {
        font-size: 14px;
    }

    section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Scroll indicator adjustments for small mobiles */
    .scroll-indicator {
        bottom: 4rem;
        width: 22px;
        height: 35px;
        border-width: 2px;
    }

    .scroll-indicator span {
        width: 4px;
        height: 4px;
        top: 6px;
    }

    /* Hero adjustments */
    .hero-logo img {
        height: 80px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-order {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    /* Menu mobile adjustments */
    .menu-tab {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    .menu-item-image {
        width: 120px;
        height: 120px;
        margin: 0 auto 1rem;
    }

    /* Order section mobile */
    .order-divider span {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    .order-option {
        padding: 2rem 1.2rem;
    }

    .order-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.8rem;
    }

    /* Company logos small mobile */
    .company-logo {
        max-width: 45px;
        max-height: 45px;
    }

    /* Contact mobile */
    .contact-item {
        padding: 1.2rem;
    }

    .contact-map {
        height: 250px;
    }

    /* Footer mobile */
    .footer-content {
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .menu-item-image {
        width: 100px;
        height: 100px;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.8rem;
    }

    /* Extra säkerhet för scroll indicator på mycket små skärmar */
    .scroll-indicator {
        bottom: 5rem;
        width: 20px;
        height: 32px;
    }

    .scroll-indicator span {
        width: 3px;
        height: 3px;
        top: 5px;
    }

    .hero {
        padding-bottom: 7rem;
    }

    /* Maximal videossynlighet på mycket små skärmar */
    .video-container {
        opacity: 0.85 !important;
    }

    .video-container:after {
        background: radial-gradient(circle at center, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
    }
}