/* ================================================
   CURRY KING ANTALYA - Main Stylesheet
   ================================================ */

/* CSS Variables */
:root {
    --primary: #D4A017;
    --primary-dark: #B8860B;
    --primary-light: #F0D060;
    --secondary: #C0392B;
    --secondary-dark: #8B0000;
    --accent: #FF6B35;
    --dark: #0D0D0D;
    --dark-2: #1A1A1A;
    --dark-3: #2D2D2D;
    --dark-4: #3D3D3D;
    --light: #FFF8E7;
    --cream: #FFFDF5;
    --text: #E8E0D0;
    --text-muted: #A09080;
    --white: #FFFFFF;
    --green: #25D366;
    --instagram: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    --facebook: #1877F2;
    --twitter: #000000;
    --tiktok: #000000;
    --telegram: #0088cc;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 0 30px rgba(212, 160, 23, 0.15);
    
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================
   PRELOADER
   ================================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader span {
    font-size: 60px;
    display: block;
    margin-bottom: 10px;
}

.loader p {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.nav-logo .crown {
    font-size: 28px;
}

.nav-logo-img {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px;
    max-height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.highlight {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(212, 160, 23, 0.1);
}

.lang-switcher {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: var(--radius-full);
}

.lang-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.lang-btn.active {
    background: rgba(212, 160, 23, 0.2);
    box-shadow: 0 0 10px rgba(212, 160, 23, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(192, 57, 43, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        var(--dark);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    font-size: 20px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

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

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

.hero-badge {
    display: inline-block;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.2s both;
}

.crown-large {
    font-size: clamp(40px, 6vw, 70px);
    display: block;
    margin-bottom: 10px;
    animation: bounce 2s ease-in-out infinite;
}

.hero-logo-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 10px;
    border: 2px solid rgba(212, 160, 23, 0.25);
}

.preloader-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    animation: bounce 1.5s ease-in-out infinite;
}

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

.hero-subtitle {
    display: block;
    font-size: clamp(16px, 3vw, 28px);
    letter-spacing: 15px;
    color: var(--primary);
    font-weight: 400;
    margin-top: 5px;
}

.hero-desc {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--green);
    color: var(--white);
    font-size: 17px;
    padding: 16px 40px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.hero-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.info-item i {
    color: var(--primary);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease 1s both;
}

.hero-scroll a {
    color: var(--primary);
    font-size: 24px;
    animation: scrollDown 2s ease-in-out infinite;
    display: block;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* ================================================
   SECTIONS COMMON
   ================================================ */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================
   MENU SECTION
   ================================================ */
.menu-section {
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(212, 160, 23, 0.05) 0%, transparent 50%),
        var(--dark-2);
}

.spice-selector {
    text-align: center;
    margin-bottom: 40px;
}

.spice-selector h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 18px;
}

.spice-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.spice-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 2px solid var(--dark-4);
    border-radius: var(--radius-full);
    background: var(--dark-3);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 14px;
}

.spice-btn:hover, .spice-btn.active {
    border-color: var(--secondary);
    background: rgba(192, 57, 43, 0.1);
    color: var(--secondary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 50px;
}

.menu-card {
    background: var(--dark-3);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 160, 23, 0.2);
    box-shadow: var(--shadow-gold);
}

.menu-card.featured {
    border-color: rgba(212, 160, 23, 0.3);
    background: linear-gradient(135deg, var(--dark-3), rgba(212, 160, 23, 0.05));
}

.menu-card.deal-card {
    border-color: rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, var(--dark-3), rgba(255, 107, 53, 0.05));
}

.menu-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(212, 160, 23, 0.15);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.menu-badge.badge-rind {
    background: rgba(192, 57, 43, 0.15);
    color: var(--secondary);
}

.menu-badge.badge-vegan {
    background: rgba(39, 174, 96, 0.15);
    color: #27AE60;
}

.menu-badge.badge-side {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

.menu-badge.badge-deal {
    background: rgba(255, 107, 53, 0.2);
    color: var(--accent);
}

.menu-badge.badge-kids {
    background: rgba(52, 152, 219, 0.15);
    color: #3498DB;
}

.menu-emoji {
    font-size: 32px;
    min-width: 40px;
    text-align: center;
}

.menu-info {
    flex: 1;
}

.menu-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.menu-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.menu-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.tag-beef { color: var(--secondary); background: rgba(192, 57, 43, 0.1); }
.tag-vegan { color: #27AE60; background: rgba(39, 174, 96, 0.1); }
.tag-spicy { color: var(--accent); background: rgba(255, 107, 53, 0.1); }
.tag-side { color: var(--primary); background: rgba(212, 160, 23, 0.1); }
.tag-deal { color: var(--accent); background: rgba(255, 107, 53, 0.1); }
.tag-kids { color: #3498DB; background: rgba(52, 152, 219, 0.1); }

.menu-price {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.order-section {
    text-align: center;
}

.order-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 15px;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-section {
    background: var(--dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: 15px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--dark-2);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature:hover {
    border-color: rgba(212, 160, 23, 0.2);
}

.feature i {
    color: var(--primary);
    font-size: 18px;
}

.feature span {
    font-size: 14px;
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.about-emoji-large {
    font-size: 60px;
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ================================================
   HOURS SECTION
   ================================================ */
.hours-section {
    background: var(--dark-2);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.hours-card {
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.hours-card:hover {
    border-color: rgba(212, 160, 23, 0.2);
}

.hours-card.active-day {
    border-color: var(--primary);
    background: rgba(212, 160, 23, 0.05);
}

.hours-card .day {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    font-size: 14px;
}

.hours-card .time {
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
}

/* ================================================
   QR CODE SECTION
   ================================================ */
.qr-section {
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(212, 160, 23, 0.05) 0%, transparent 50%),
        var(--dark);
}

.qr-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.qr-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

#qrcode-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.qr-url {
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
}

.qr-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ================================================
   SHARE SECTION
   ================================================ */
.share-section {
    background: linear-gradient(135deg, var(--dark-2), rgba(212, 160, 23, 0.05));
    padding: 80px 0;
}

.share-content {
    text-align: center;
}

.share-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 10px;
}

.share-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-share { background: var(--green); }
.facebook-share { background: var(--facebook); }
.twitter-share { background: var(--twitter); border: 1px solid rgba(255,255,255,0.2); }
.telegram-share { background: var(--telegram); }
.copy-share { background: var(--dark-4); border: 1px solid rgba(255,255,255,0.1); }

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section {
    background: var(--dark-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(212, 160, 23, 0.2);
    transform: translateY(-4px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary);
}

.contact-card h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
}

.contact-link:hover {
    color: var(--primary-light);
}

.map-container {
    position: relative;
}

.map-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

/* ================================================
   SOCIAL SECTION
   ================================================ */
.social-section {
    background: var(--dark);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--dark-2);
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.social-card i {
    font-size: 36px;
    transition: var(--transition);
}

.social-card span:first-of-type {
    font-weight: 600;
    color: var(--white);
    font-size: 16px;
}

.social-handle {
    font-size: 13px;
    color: var(--text-muted);
}

.social-card.instagram:hover {
    background: linear-gradient(135deg, rgba(240, 148, 51, 0.1), rgba(204, 35, 102, 0.1));
    border-color: rgba(240, 148, 51, 0.3);
}

.social-card.instagram:hover i { color: #E1306C; }

.social-card.facebook:hover {
    background: rgba(24, 119, 242, 0.08);
    border-color: rgba(24, 119, 242, 0.3);
}

.social-card.facebook:hover i { color: var(--facebook); }

.social-card.whatsapp:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.3);
}

.social-card.whatsapp:hover i { color: var(--green); }

.social-card.tiktok:hover {
    background: rgba(255, 0, 80, 0.05);
    border-color: rgba(255, 0, 80, 0.3);
}

.social-card.tiktok:hover i { color: #FF0050; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-brand .crown {
    font-size: 28px;
}

.footer-logo-img {
    width: 26px !important;
    height: 26px !important;
    max-width: 26px;
    max-height: 26px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    width: 100%;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 13px;
}

/* ================================================
   FLOATING WHATSAPP
   ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ================================================
   TOAST NOTIFICATION
   ================================================ */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-3);
    border: 1px solid rgba(212, 160, 23, 0.3);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.toast.show {
    bottom: 100px;
}

.toast i {
    color: var(--primary);
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-2);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 5px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .lang-switcher {
        order: -1;
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .hero-logo-img {
        width: 50px;
        height: 50px;
    }

    .nav-logo-img {
        width: 26px;
        height: 26px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-subtitle {
        letter-spacing: 8px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .share-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .hero-logo-img {
        width: 44px;
        height: 44px;
    }

    .menu-card {
        flex-direction: row;
        text-align: left;
        padding: 12px;
        gap: 10px;
    }

    .menu-emoji {
        font-size: 26px;
        min-width: 34px;
    }

    .menu-name {
        font-size: 14px;
    }

    .menu-desc {
        font-size: 12px;
    }
    
    .menu-price {
        font-size: 18px;
    }
    
    .menu-tags {
        gap: 4px;
    }

    .menu-badge {
        top: 8px;
        right: 8px;
        font-size: 10px;
        padding: 2px 8px;
    }
}

/* Print Styles */
@media print {
    .navbar, .whatsapp-float, .hero-scroll, .share-section, .qr-section, .social-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        padding: 30px 0;
    }
}
