@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Inter:wght@400;500;600&display=swap');

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

html {
    scroll-behavior: smooth;
    /* Prevent content from hiding behind browser UI */
    -webkit-text-size-adjust: 100%;
}

:root {
    --primary-orange: #FFA500;
    --warm-yellow: #FFB84D;
    --graphite: #3A3A3A;
    --graphite-light: #5A5A5A;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --shadow: rgba(58, 58, 58, 0.1);
    --shadow-hover: rgba(58, 58, 58, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--off-white);
    color: var(--graphite);
    line-height: 1.6;
    padding-bottom: 40px;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevent content shift on mobile when address bar hides */
    min-height: 100dvh;
    padding-bottom: calc(40px + env(safe-area-inset-bottom, 0));
    overflow-x: hidden;
}

/* Burger Menu Button */
.burger-menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-menu-btn:hover {
    transform: scale(1.05);
}

.burger-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-orange), var(--warm-yellow));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: rgba(58, 58, 58, 0.8);
}

.burger-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: rgba(58, 58, 58, 0.8);
}

/* Burger Menu Overlay */
.burger-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--warm-yellow) 100%);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.burger-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
}

.burger-menu-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    transform: translateX(-50px);
    opacity: 0;
}

.burger-menu-overlay.active .burger-menu-item {
    transform: translateX(0);
    opacity: 1;
}

.burger-menu-overlay.active .burger-menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.burger-menu-overlay.active .burger-menu-item:nth-child(2) {
    transition-delay: 0.2s;
}

.burger-menu-overlay.active .burger-menu-item:nth-child(3) {
    transition-delay: 0.3s;
}

.burger-menu-item:hover {
    transform: translateX(10px);
    text-shadow: 3px 5px 12px rgba(0, 0, 0, 0.3);
}

.burger-menu-icon {
    font-size: 1.2em;
}

.hero {
    background-image:
        linear-gradient(
            135deg,
            rgba(255, 165, 0, 0.5) 0%,
            rgba(255, 184, 77, 0.5) 100%
        ),
        url('../common/images/header.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 60px 20px 50px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    color: var(--white);
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 3px 5px 12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    margin-top: 10px;
}

.home-link {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.home-link:hover h1 {
    transform: scale(1.05);
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.35);
}

.home-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    font-weight: 700;
    padding: 10px 20px;
    background: var(--white);
    color: var(--primary-orange);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: 15px;
    display: inline-block;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.home-btn:active {
    transform: translateY(-1px);
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--warm-yellow) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3em;
    margin-top: 12px;
    opacity: 1;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 30px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(58, 58, 58, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    will-change: transform;
}

.menu-nav.sticky {
    border-radius: 0 0 16px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow: 0 4px 20px rgba(58, 58, 58, 0.1), 0 2px 5px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 165, 0, 0.15);
    /* Add padding for notch/status bar on mobile */
    padding-top: calc(16px + env(safe-area-inset-top, 0));
}

@media (min-width: 1040px) {
    .menu-nav.sticky {
        max-width: 1000px;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8em;
    font-weight: 700;
    color: var(--graphite);
    text-decoration: none;
    padding: 10px 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--warm-yellow) 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item:hover {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--warm-yellow) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.3);
    border-color: var(--primary-orange);
}

.nav-item.active {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--warm-yellow) 100%);
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.nav-item.active::after {
    width: 80%;
}

.nav-item:active {
    transform: translateY(-1px);
}


/* Spacer for sticky nav */
.nav-spacer {
    height: 0;
    transition: height 0.3s ease;
}

.nav-spacer.active {
    height: 100px;
}

.menu-section {
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    margin-bottom: 20px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(58, 58, 58, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 4px solid var(--primary-orange);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    color: var(--graphite);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.menu-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 8px 25px var(--shadow-hover), 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 165, 0, 0.15);
}

.menu-item:active {
    transform: translateY(-4px);
}

.item-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--warm-yellow) 0%, var(--primary-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--graphite-light);
    font-size: 0.9em;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.item-image::before {
    content: '';
    font-size: 4em;
    opacity: 0.3;
    position: absolute;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.item-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.item-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    color: var(--graphite);
    font-weight: 700;
    flex: 1;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.item-description {
    font-family: 'Inter', sans-serif;
    color: var(--graphite-light);
    line-height: 1.7;
    font-size: 0.9em;
    margin-bottom: 16px;
    flex: 1;
    letter-spacing: 0.2px;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 2px solid #F8F9FA;
}

.item-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    background: linear-gradient(135deg, var(--primary-orange), var(--warm-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 1px;
}

.price-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.5em;
    color: var(--graphite-light);
    font-weight: 500;
    display: block;
}

.zestaw-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15em;
    color: var(--graphite);
    font-weight: 700;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.zestaw-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7em;
    color: var(--graphite-light);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.addon-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.8em;
    color: var(--graphite-light);
    font-weight: 500;
    margin-top: 4px;
    font-style: italic;
}

.sauce-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px var(--shadow), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sauce-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sauce-item {
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    color: var(--graphite);
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.sauce-item:hover {
    background: linear-gradient(135deg, var(--warm-yellow) 0%, var(--primary-orange) 100%);
    color: var(--white);
    transform: translateX(5px);
}

.sauce-item.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.sauce-item.unavailable::after {
    content: ' niedostępny';
    font-size: 0.8em;
    color: var(--graphite-light);
    font-style: italic;
    font-weight: 400;
    opacity: 1.75;
    font-family: 'Inter', sans-serif;
}

html[lang="en"] .sauce-item.unavailable::after {
    content: ' unavailable';
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: calc(30px + env(safe-area-inset-bottom, 0));
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--warm-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.6);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

.scroll-to-top::before {
    content: '↑';
    font-size: 24px;
    color: var(--white);
    font-weight: bold;
}

/* No image menu items */
.menu-item.no-image {
    flex-direction: row;
    align-items: center;
    min-height: auto;
}

.menu-item.no-image .item-content {
    padding: 18px 20px;
}

.menu-item.no-image .item-header {
    margin-bottom: 0;
}

.menu-item.no-image .item-footer {
    border: none;
    padding: 0;
}

/* Unavailable items */
.menu-item.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.menu-item.unavailable .item-name::after {
    content: ' niedostępny';
    font-size: 0.57em;
    color: var(--graphite-light);
    font-style: italic;
    font-weight: 400;
    opacity: 1.75;
    font-family: 'Inter', sans-serif;
}

html[lang="en"] .menu-item.unavailable .item-name::after {
    content: ' unavailable';
}

.menu-item.unavailable:hover {
    transform: none;
    box-shadow: 0 4px 15px var(--shadow), 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Language switcher */
.language-switcher {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.lang-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
    font-weight: 700;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-btn.active {
    background: var(--white);
    color: var(--primary-orange);
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.lang-btn:active {
    transform: translateY(0);
}

/* Tablet responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
        letter-spacing: 1.5px;
    }

    .hero {
        padding: 40px 20px 40px;
    }

    .language-switcher {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 15px;
        justify-content: center;
    }

    .home-btn {
        font-size: 0.85em;
        padding: 8px 16px;
        margin-top: 12px;
    }

    .section-title {
        font-size: 1.3em;
        letter-spacing: 1.2px;
    }

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

    .container {
        padding: 0 16px;
    }

    .item-name {
        font-size: 1.3em;
    }

    .menu-nav {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px;
        padding: 12px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .menu-nav::-webkit-scrollbar {
        display: none;
    }

    .menu-nav.sticky {
        padding: 8px 12px;
        padding-top: calc(8px + env(safe-area-inset-top, 0));
        border-radius: 0 0 12px 12px;
    }

    .nav-item {
        flex: 0 0 auto;
        min-width: 130px;
        white-space: nowrap;
        font-size: 0.85em;
        padding: 10px 14px;
    }

    .nav-spacer.active {
        height: 70px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
        letter-spacing: 1.2px;
    }

    .tagline {
        font-size: 0.9em;
    }

    .hero {
        padding: 35px 16px 35px;
    }

    .language-switcher {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 15px;
        justify-content: center;
    }

    .lang-btn {
        font-size: 0.8em;
        padding: 6px 12px;
    }

    .home-btn {
        font-size: 0.8em;
        padding: 7px 14px;
        margin-top: 10px;
    }

    .tagline {
        font-size: 1.1em;
    }

    .section-header {
        padding: 10px 14px;
    }

    .section-title {
        font-size: 1.2em;
        letter-spacing: 1px;
    }

    .item-content {
        padding: 16px;
    }

    .item-name {
        font-size: 1.2em;
    }

    .item-description {
        font-size: 0.87em;
        line-height: 1.6;
    }

    .item-price {
        font-size: 1.5em;
    }

    .zestaw-price {
        font-size: 1.05em;
    }

    .menu-grid {
        gap: 16px;
    }

    .menu-nav {
        padding: 10px;
        gap: 8px;
    }

    .menu-nav.sticky {
        padding: 8px 10px;
        padding-top: calc(8px + env(safe-area-inset-top, 0));
    }

    .nav-item {
        min-width: 130px;
        font-size: 0.85em;
        padding: 10px 14px;
    }

    .nav-spacer.active {
        height: 65px;
    }

    .scroll-to-top {
        bottom: calc(20px + env(safe-area-inset-bottom, 0));
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top::before {
        font-size: 20px;
    }
}

/* Section fade-in animation */
.menu-section:nth-child(1) { animation-delay: 0.1s; }
.menu-section:nth-child(2) { animation-delay: 0.2s; }
.menu-section:nth-child(3) { animation-delay: 0.3s; }

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--graphite) 0%, var(--graphite-light) 100%);
    color: var(--white);
    margin-top: 80px;
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-orange);
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.95em;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 50%;
    color: var(--primary-orange);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.9em;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer {
        margin-top: 60px;
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        margin-top: 40px;
        padding: 30px 0 15px;
    }

    .footer-section h3 {
        font-size: 1.1em;
    }

    .footer-section p {
        font-size: 0.9em;
    }

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

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}
