/* ===================================
   Global Styles & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2a4a6f;
    --dark-color: #1e3a5f;
    --light-color: #e8e8e8;
    --text-dark: #1e3a5f;
    --text-light: #fff;
    --accent-color: #1e3a5f;
    --overlay-dark: rgba(30, 58, 95, 0.7);
    --section-bg-dark: #1e3a5f;
    --section-bg-light: #e8e8e8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text x="0" y="24" font-size="24">🐺</text></svg>'), auto;
}

/* Override cursor for clickable elements */
a, button, .btn, .gallery-item, .review-card, input, select, textarea {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text x="0" y="24" font-size="24">🐾</text></svg>'), pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4a6f 100%);
    color: var(--text-light);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    background-color: #2a2a2a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #3a3a3a;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 40px;
}

.logo a {
    color: var(--text-light);
    display: block;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: -5px;
}

.logo p {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
}

.main-nav {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

.nav-list a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

.nav-list a:hover {
    color: #cccccc;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.order-btn {
    background-color: var(--primary-color);
    padding: 10px 24px !important;
    border-radius: 4px;
    margin-left: 20px;
    border: 2px solid var(--primary-color);
}

.order-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.order-btn::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.75) 0%, rgba(42, 74, 111, 0.65) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 40px;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

/* Hero Animations */
.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
    padding: 40px 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 19px;
    max-width: 950px;
    margin: 0 auto 45px;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.2s ease;
}

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

/* ===================================
   Section Styles
   =================================== */
.order-section,
.specials-section,
.welcome-section,
.reviews-section,
.newsletter-section {
    padding: 100px 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .order-section,
    .specials-section,
    .welcome-section,
    .reviews-section,
    .newsletter-section {
        padding: 60px 20px;
    }
}

.order-section {
    background: linear-gradient(135deg, #ff8a00 0%, #e52e71 50%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 138, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(229, 46, 113, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.order-section .container {
    position: relative;
    z-index: 1;
}

.order-section h2 {
    color: #fff;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
}

.order-section .section-subtitle {
    color: rgba(255,255,255,0.95);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.order-section .section-description {
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.order-section .btn-primary {
    background-color: #fff;
    color: #1e3a5f;
    border-color: #fff;
    font-size: 1.2rem;
    padding: 16px 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.order-section .btn-primary:hover {
    background-color: #1e3a5f;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.specials-section {
    background-color: #ffffff;
}

.welcome-section {
    background-color: var(--section-bg-light);
}

.reviews-section {
    background-color: #ffffff;
}

.newsletter-section {
    background-color: var(--section-bg-dark);
    color: var(--text-light);
}

section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a00 0%, #e52e71 50%, #1e3a5f 100%);
    border-radius: 2px;
}

.newsletter-section h2 {
    color: var(--text-light);
}

.section-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: #ff8a00;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.newsletter-section .section-subtitle {
    color: #ff8a00;
}

.section-description {
    max-width: 850px;
    margin: 0 auto 40px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: #4a5568;
    font-weight: 400;
}

.newsletter-section .section-description {
    color: #ffffff;
}

/* ===================================
   Photo Gallery
   =================================== */
.photo-gallery {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.photo-gallery h2 {
    color: var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUpStagger 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1s; }
.gallery-item:nth-child(11) { animation-delay: 1.1s; }

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(42, 74, 111, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

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

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.25);
}

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

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

/* Gallery Video Styles */
.gallery-item.gallery-video {
    aspect-ratio: 16/9;
}

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

.gallery-item.gallery-video:hover video {
    transform: scale(1.05);
}

/* ===================================
   Slideshow
   =================================== */
.slideshow-container {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.slideshow-wrapper {
    position: relative;
    height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    font-size: 36px;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.slide-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slide-nav.prev {
    left: 20px;
}

.slide-nav.next {
    right: 20px;
}

.slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slide-dot.active {
    background-color: var(--text-light);
}

.freshly-prepared {
    margin-top: 60px;
}

.freshly-prepared h3 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: var(--text-dark);
}

/* ===================================
   Reviews Section
   =================================== */
.reviews-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.reviews-header {
    text-align: center;
    margin-bottom: 70px;
}

.reviews-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.reviews-header .section-subtitle {
    font-size: 1.1rem;
    color: #ff8a00;
    font-weight: 700;
    letter-spacing: 3px;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 140px;
    color: rgba(30, 58, 95, 0.04);
    font-family: Georgia, serif;
    line-height: 1;
    transition: all 0.5s ease;
}

.review-card:hover::before {
    color: rgba(30, 58, 95, 0.08);
    transform: scale(1.1);
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff8a00 0%, #e52e71 50%, #1e3a5f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.review-card:hover::after {
    transform: scaleX(1);
}

.review-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.2);
    border-color: rgba(30, 58, 95, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.review-stars {
    font-size: 1.6rem;
    color: #ff8a00;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 5px;
}

.review-stars span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.review-card:hover .review-stars span {
    animation: starBounce 0.6s ease;
}

.review-card:hover .review-stars span:nth-child(1) { animation-delay: 0s; }
.review-card:hover .review-stars span:nth-child(2) { animation-delay: 0.1s; }
.review-card:hover .review-stars span:nth-child(3) { animation-delay: 0.2s; }
.review-card:hover .review-stars span:nth-child(4) { animation-delay: 0.3s; }
.review-card:hover .review-stars span:nth-child(5) { animation-delay: 0.4s; }

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

.review-author {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.review-platform {
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-date {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.reviews-cta {
    text-align: center;
    margin-top: 60px;
}

.reviews-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 25px;
}

.reviews-cta .btn {
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* ===================================
   Newsletter Form
   =================================== */
.newsletter-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4a6f 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.newsletter-section .container {
    position: relative;
    z-index: 1;
}

.newsletter-form {
    max-width: 650px;
    margin: 50px auto 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 300px;
    padding: 18px 24px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form .btn-primary {
    background: linear-gradient(135deg, #ff8a00 0%, #e52e71 100%);
    color: #ffffff;
    border: 2px solid transparent;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.newsletter-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.4);
}

/* ===================================
   Location Section
   =================================== */
.location-section {
    padding: 80px 20px;
    background-color: var(--section-bg-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff8a00 0%, #e52e71 50%, #1e3a5f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(30, 58, 95, 0.2);
}

.info-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #555555;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.info-card a:hover {
    color: var(--secondary-color);
}

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

.social-links a {
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ===================================
   Hiring Banner
   =================================== */
.hiring-banner {
    background-color: var(--primary-color);
    padding: 30px 20px;
    text-align: center;
}

.hiring-banner p {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

/* ===================================
   Floating Action Button
   =================================== */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8a00 0%, #e52e71 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 138, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 24px;
}

.fab-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 138, 0, 0.5);
}

.scroll-to-top {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4a6f 100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-to-top:hover {
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.5);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: #2a2a2a;
    color: var(--text-light);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #3a3a3a;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-content p {
    font-size: 14px;
    color: #cccccc;
}

.footer-content a {
    color: #ffffff;
}

.footer-content a:hover {
    color: #cccccc;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--text-light);
}

/* ===================================
   Form Sections
   =================================== */
.application-section,
.reservation-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.form-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.job-application-form,
.reservation-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #777;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* ===================================
   Contact Info Section
   =================================== */
.contact-info-section {
    background-color: var(--section-bg-light);
    padding: 60px 20px;
    text-align: center;
}

.contact-info-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info-section p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info-section a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-section a:hover {
    color: var(--secondary-color);
}

.hours-info {
    margin-top: 30px;
}

.hours-info h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.hours-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .main-nav {
        justify-content: flex-end;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(42, 42, 42, 0.98) 0%, rgba(30, 58, 95, 0.98) 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 80%;
        max-width: 350px;
        padding: 80px 30px 30px;
        gap: 25px;
        transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 1000;
        overflow-y: auto;
    }

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

    .nav-list li {
        width: 100%;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.4s ease;
    }

    .nav-list.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-list.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-list.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-list.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-list.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-list.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-list.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-list.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-list.active li:nth-child(8) { transition-delay: 0.45s; }

    .nav-list a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: 18px;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-list a:hover {
        border-left-color: #ff8a00;
        background: rgba(255, 255, 255, 0.05);
        padding-left: 30px;
    }

    .order-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
        display: block;
        padding: 15px 20px !important;
    }

    .header-content {
        gap: 20px;
    }

    /* Mobile overlay for menu */
    .nav-list.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    section h2 {
        font-size: 32px;
    }

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

    .info-cards {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .slideshow-wrapper {
        height: 350px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 36px);
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: clamp(14px, 3vw, 18px);
        letter-spacing: 1px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-hero {
        width: 100%;
        padding: 14px 30px;
    }

    .scroll-indicator {
        display: none;
    }

    section h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .section-subtitle {
        font-size: clamp(0.8rem, 3vw, 1rem);
    }

    .logo-image {
        height: 45px;
    }

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

    .gallery-item {
        border-radius: 12px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 30px 25px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        min-width: 100%;
    }

    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .fab-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-card {
        padding: 25px 20px;
    }

    .slideshow-wrapper {
        height: 300px;
    }

    .order-section,
    .specials-section,
    .welcome-section,
    .reviews-section,
    .newsletter-section {
        padding: 50px 15px;
    }
}
