/* ===================================
   Robinmood Café - Glassmorphic & Scroll-telling Design
   Immersive, Cozy, Modern Experience
   =================================== */

/* CSS Variables */
:root {
    --robin-orange: #ff7043;
    --robin-red: #ef5350;
    --robin-brown: #6d4c41;
    --robin-cream: #fff3e0;
    --robin-dark: #3e2723;
    --robin-light: #fffaf0;
    --robin-gray: #8d6e63;
    --accent-gold: #ffb300;
    --white: #ffffff;
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: "Poppins", sans-serif;
    color: var(--robin-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 50%, #ffccbc 100%);
    background-attachment: fixed;
    position: relative;
}

/* Animated Background Particles */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 112, 67, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(239, 83, 80, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 179, 0, 0.1) 0%,
            transparent 50%
        );
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes particleFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Language Toggle - Glassmorphic */
.language-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lang-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--robin-brown);
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--robin-orange), var(--robin-red));
    transition:
        width 0.5s,
        height 0.5s,
        top 0.5s,
        left 0.5s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.lang-btn.active::before {
    width: 200%;
    height: 200%;
}

.lang-btn.active {
    color: var(--white);
    transform: scale(1.05);
}

.lang-btn:hover:not(.active) {
    color: var(--robin-orange);
    background: rgba(255, 255, 255, 0.2);
}

/* Navigation - Glassmorphic */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--robin-orange), var(--robin-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--robin-brown);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--robin-brown);
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--robin-orange), var(--robin-red));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 0.15;
}

.nav-link:hover {
    color: var(--robin-orange);
    transform: translateY(-2px);
}

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

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 30% 40%,
            rgba(255, 112, 67, 0.3) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 70% 60%,
            rgba(239, 83, 80, 0.25) 0%,
            transparent 60%
        );
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 700;
    background: linear-gradient(
        135deg,
        var(--robin-brown),
        var(--robin-orange),
        var(--robin-red)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    animation: titleReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.2;
    letter-spacing: -2px;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    color: var(--robin-gray);
    margin-bottom: 50px;
    animation: subtitleReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--robin-orange), var(--robin-red));
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: buttonReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s backwards;
    box-shadow: 0 10px 40px rgba(255, 112, 67, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 112, 67, 0.5);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 35px;
    height: 55px;
    border: 3px solid var(--robin-orange);
    border-radius: 30px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-indicator span::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--robin-orange);
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(25px);
    }
}

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

/* Section Styles - Glassmorphic Cards */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(
        135deg,
        var(--robin-brown),
        var(--robin-orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.title-underline {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--robin-orange), var(--robin-red));
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(255, 112, 67, 0.3);
}

/* About Section */
.about {
    position: relative;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content.reveal {
    opacity: 1;
    transform: translateY(0);
}

.about-text {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.about-paragraph {
    font-size: 1.2rem;
    color: var(--robin-dark);
    margin-bottom: 30px;
    line-height: 2;
    text-align: center;
}

.about-paragraph:last-of-type {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature.reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 112, 67, 0.2);
    background: rgba(255, 255, 255, 0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 25px;
    filter: drop-shadow(0 5px 15px rgba(255, 112, 67, 0.3));
    animation: floatIcon 3s ease-in-out infinite;
    color: var(--robin-orange);
}

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

.feature-title {
    font-size: 1.4rem;
    color: var(--robin-brown);
    font-weight: 600;
}

/* Menu Section */
.menu {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
}

.menu-category.reveal {
    opacity: 1;
    transform: translateY(0);
}

.menu-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(255, 112, 67, 0.15);
}

.category-title {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    background: linear-gradient(
        135deg,
        var(--robin-brown),
        var(--robin-orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.category-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--robin-orange), var(--robin-red));
    border-radius: 2px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(109, 76, 65, 0.15);
    transition: all 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.item-header {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 10px;
}

.item-name {
    font-weight: 600;
    color: var(--robin-brown);
    font-size: 1.2rem;
}

/* Removed .item-price styles as prices are no longer displayed */

.item-description {
    color: var(--robin-gray);
    font-size: 1rem;
    font-style: italic;
}

/* Gallery Section - Immersive */
.gallery {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.reveal {
    opacity: 1;
    transform: scale(1);
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--robin-orange), var(--robin-red));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    mix-blend-mode: multiply;
}

.gallery-item:hover::before {
    opacity: 0.3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 35px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

/* Contact Section - Glassmorphic */
.contact {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 100%
    );
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-50px);
}

.info-item.reveal {
    opacity: 1;
    transform: translateX(0);
}

.info-item:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 112, 67, 0.15);
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 10px rgba(255, 112, 67, 0.3));
}

.info-title {
    font-weight: 600;
    color: var(--robin-brown);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-text p {
    color: var(--robin-dark);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-wrapper.reveal {
    opacity: 1;
    transform: translateY(0);
}

.form-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    background: linear-gradient(
        135deg,
        var(--robin-brown),
        var(--robin-orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 35px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: var(--robin-dark);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--robin-gray);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--robin-orange);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(255, 112, 67, 0.2);
    transform: translateY(-2px);
}

.submit-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--robin-orange), var(--robin-red));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 112, 67, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 112, 67, 0.4);
}

/* Footer - Glassmorphic */
.footer {
    background: rgba(62, 39, 35, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--robin-cream);
    padding: 60px 0 35px;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

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

.footer-content {
    max-width: 700px;
    margin: 0 auto;
}

.footer-brand {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        var(--robin-cream),
        var(--robin-orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.footer-text {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 35px;
}

.social-link {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    font-size: 1.6rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--robin-orange), var(--robin-red));
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(255, 112, 67, 0.4);
}

.copyright {
    font-size: 0.95rem;
    opacity: 0.7;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 350px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

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

    .nav-link {
        font-size: 1.2rem;
    }

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

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

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

    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    .about-text {
        padding: 40px 30px;
    }

    .about-paragraph {
        font-size: 1.05rem;
    }

    .menu-categories {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .menu-category {
        padding: 40px 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }

    .language-toggle {
        top: 20px;
        right: 20px;
    }

    .info-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 26px;
    }

    .hero {
        min-height: 600px;
    }

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

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

    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .about-text {
        padding: 35px 25px;
    }

    .about-paragraph {
        font-size: 1rem;
    }

    .menu-category {
        padding: 35px 25px;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

/* Scroll Reveal Utilities */
.reveal {
    animation: revealElement 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.6s ease;
}

/* Print Styles */
@media print {
    .navbar,
    .language-toggle,
    .scroll-indicator,
    .contact-form-wrapper {
        display: none;
    }
}
