/* Tu Do Deli - Main Stylesheet */

:root {
    /* Color Palette - Matching Logo */
    --primary: #4A2C17;
    --primary-dark: #3D2314;
    --primary-light: #5C3A22;
    --secondary: #F7D000;
    --secondary-light: #FFDC2A;
    --secondary-dark: #E5C000;
    --accent: #F7D000;
    --cream: #FFFDF5;
    --cream-dark: #FFF8E7;
    --warm-gray: #6B5B4F;
    --dark: #3D2314;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 6rem 0;
    --container-max: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--dark);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 208, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background-color: var(--dark);
    color: var(--white);
}

.btn-light {
    border-color: var(--white);
    color: var(--white);
}

.btn-light:hover {
    background-color: var(--white);
    color: var(--dark);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--warm-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Placeholder Images */
.placeholder-img {
    background: linear-gradient(135deg, var(--cream-dark) 0%, #D4C4B4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-gray);
    font-size: 0.875rem;
    position: relative;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background-color: transparent;
}

.header.scrolled {
    background-color: var(--cream);
    box-shadow: 0 2px 20px rgba(44, 36, 32, 0.1);
    padding: 0.75rem 0;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.8))
            drop-shadow(0 0 2px rgba(255, 255, 255, 0.6))
            drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

.header.scrolled .logo-img {
    height: 50px;
    filter: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-list a {
    font-weight: 500;
    color: var(--white);
    position: relative;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header.scrolled .nav-list a {
    color: var(--dark);
    text-shadow: none;
}

.nav-list a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.header.scrolled .nav-list a:not(.nav-cta)::after {
    background-color: var(--primary);
}

.nav-list a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.625rem 1.5rem !important;
    text-shadow: none !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.header.scrolled .mobile-menu-btn span {
    background-color: var(--dark);
    box-shadow: none;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(61, 35, 20, 0.4) 0%, rgba(61, 35, 20, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    color: var(--secondary);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    z-index: 10;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scroll 1.5s ease-in-out infinite;
}

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

/* ==================== ABOUT ==================== */
.about {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(61, 35, 20, 0.25),
                0 15px 50px rgba(61, 35, 20, 0.15),
                0 0 0 1px rgba(61, 35, 20, 0.05);
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    animation: kenBurns 20s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.15) translate(-2%, -1%);
    }
    100% {
        transform: scale(1.1) translate(1%, 2%);
    }
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.1;
    border-radius: 8px;
    z-index: 1;
}

.about-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.about-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--warm-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--dark);
}

.feature h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.feature p {
    font-size: 0.875rem;
    color: var(--warm-gray);
}

/* ==================== MENU ==================== */
.menu {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.menu-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.75rem;
}

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

.menu-tab {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--warm-gray);
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab:hover {
    color: var(--dark);
}

.menu-tab.active {
    background-color: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(247, 208, 0, 0.5),
                0 2px 6px rgba(0, 0, 0, 0.1);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 36, 32, 0.08);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(44, 36, 32, 0.12);
}

.menu-item-image {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.menu-item-content {
    padding: 1.25rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
}

.featured-badge {
    color: var(--accent);
    margin-left: 0.25rem;
}

.menu-item-price {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.menu-item-description {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.menu-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
}

.menu-cta p {
    color: var(--warm-gray);
    margin-bottom: 1rem;
}

/* ==================== REVIEWS ==================== */
.reviews {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.reviews-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.75rem;
}

.reviews-carousel {
    position: relative;
    margin: 0 -1.5rem;
    padding: 0 3.5rem;
}

.carousel-viewport {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 1rem);
    margin: 0 0.5rem;
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(44, 36, 32, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(44, 36, 32, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.google-icon {
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    color: var(--secondary);
    font-size: 1.125rem;
    line-height: 1;
}

.review-text {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--dark);
}

.review-source {
    font-size: 0.8125rem;
    color: var(--warm-gray);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(44, 36, 32, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.carousel-arrow:hover {
    background-color: var(--cream);
    box-shadow: 0 6px 20px rgba(44, 36, 32, 0.18);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--dark);
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--cream-dark);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background-color: var(--secondary);
}

.reviews-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ==================== LOCATION ==================== */
.location {
    padding: var(--section-padding);
    background-color: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.location-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.location-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.location-detail {
    display: flex;
    gap: 1rem;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background-color: var(--cream);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.location-detail h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--warm-gray);
    margin-bottom: 0.375rem;
}

.location-detail p {
    color: var(--dark);
    line-height: 1.6;
}

.detail-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9375rem;
}

.detail-link:hover {
    color: var(--primary-dark);
}

.phone-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
}

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

.hours-section h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    color: var(--dark);
    font-weight: 500;
}

.hours-list .time {
    color: var(--warm-gray);
}

.hours-list li.closed .time {
    color: var(--primary);
    font-weight: 500;
}

.location-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-embed {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: 12px;
}

.map-placeholder {
    height: 280px;
    border-radius: 12px;
}

.location-image {
    height: 200px;
    border-radius: 12px;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--dark);
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.8))
            drop-shadow(0 0 2px rgba(255, 255, 255, 0.6))
            drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

.footer-tagline {
    color: rgba(253, 248, 243, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(253, 248, 243, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.social-links svg {
    width: 20px;
    height: 20px;
    color: var(--cream);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(253, 248, 243, 0.7);
    font-size: 0.9375rem;
}

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

.footer-contact address {
    font-style: normal;
}

.footer-contact p,
.footer-hours p {
    color: rgba(253, 248, 243, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-hours p {
    white-space: nowrap;
}

.footer-contact a {
    color: rgba(253, 248, 243, 0.7);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 248, 243, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(253, 248, 243, 0.5);
    font-size: 0.875rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--cream);
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 20px rgba(44, 36, 32, 0.1);
    }

    .nav.nav-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .nav-list a {
        font-size: 1.125rem;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-scroll {
        display: none;
    }

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

    .about-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-title,
    .location-title {
        font-size: 2rem;
    }

    .menu-tabs {
        gap: 0.375rem;
    }

    .menu-tab {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

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

    .review-card {
        flex: 0 0 calc(100% - 1rem);
    }

    .reviews-carousel {
        padding: 0 2.5rem;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .location-map {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CAREERS PAGE STYLES
   ========================================== */

.page-hero {
    background: linear-gradient(135deg, rgba(61, 35, 20, 0.92) 0%, rgba(74, 44, 23, 0.88) 100%),
                url('https://images.pexels.com/photos/1907244/pexels-photo-1907244.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--cream);
    position: relative;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Careers Intro Section */
.careers-intro {
    padding: 5rem 0;
    background-color: var(--cream);
}

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

.careers-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.careers-intro > .container > .careers-intro-content > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.careers-perks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.perk {
    text-align: center;
    padding: 1.5rem;
}

.perk-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.perk-icon svg {
    width: 28px;
    height: 28px;
    color: var(--dark);
}

.perk h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.perk p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Careers Listings */
.careers-listings {
    padding: 5rem 0;
    background-color: #f8f7f5;
}

.careers-listings .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.no-jobs {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.jobs-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.job-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.job-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
}

.job-department,
.job-type {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: #f0f0f0;
    color: var(--text-light);
}

.job-type {
    background: var(--secondary-light);
    color: var(--dark);
}

.job-body {
    padding: 1.5rem;
}

.job-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.job-salary {
    color: var(--primary);
    font-weight: 600;
}

.job-footer {
    padding: 1rem 1.5rem;
    background: #fafafa;
    display: flex;
    gap: 1rem;
}

.job-details-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.job-details-panel.active {
    max-height: 1000px;
}

.job-details-content {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.job-details-content h4 {
    font-size: 1rem;
    color: var(--dark);
    margin: 1.5rem 0 0.75rem;
}

.job-details-content h4:first-child {
    margin-top: 0;
}

.job-details-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Application Form Page */
.application-section {
    padding: 4rem 0;
    background-color: #f8f7f5;
}

.success-message {
    text-align: center;
    padding: 4rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}

.success-message svg {
    width: 80px;
    height: 80px;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.success-message h2 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.success-message .btn {
    margin-top: 2rem;
}

.error-message {
    background: #FFEBEE;
    border: 1px solid #FFCDD2;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.error-message ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #C62828;
}

.application-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.job-summary {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.job-summary h3 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.job-summary p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.application-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
}

.form-section-title:first-of-type {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-group .required {
    color: #C62828;
}

.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: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196, 92, 38, 0.1);
}

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

.form-help {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Skills Checklist */
.skills-checklist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--text);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Responsive for Careers */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.25rem;
    }

    .careers-perks {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .skills-checklist {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .form-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .careers-perks {
        grid-template-columns: 1fr;
    }

    .skills-checklist {
        grid-template-columns: 1fr;
    }

    .job-footer {
        flex-direction: column;
    }
}

/* ==================== ANIMATIONS ==================== */

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Stagger delay for children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.8s; }

/* Hero Animations */
.hero-content {
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-tagline {
    animation: fadeInDown 0.8s ease 0.5s backwards;
}

.hero-title {
    animation: fadeInUp 0.8s ease 0.7s backwards;
}

.hero-description {
    animation: fadeIn 0.8s ease 0.9s backwards;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 1.1s backwards;
}

.hero-scroll {
    animation: fadeIn 1s ease 1.5s backwards;
}

.scroll-indicator {
    animation: float 2s ease-in-out infinite;
}

/* Menu Item Animations */
.menu-item {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 44, 23, 0.15);
}

.menu-item-image {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

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

/* Ensure image container clips the zoom */
.menu-item {
    overflow: hidden;
}

/* Menu Tab Animations */
.menu-tab {
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-tab:hover {
    transform: translateY(-2px);
}

.menu-tab:hover:not(.active) {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Menu Category Fade Transitions */
.menu-category {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-category:not(.active) {
    opacity: 0;
    transform: translateY(10px);
}

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

/* About Section Animations */
.about-image-accent {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-container:hover .about-image-accent {
    transform: translate(15px, 15px);
}

/* Feature Card Animations */
.feature {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--secondary);
}

/* Location Section Animations */
.location-detail {
    transition: transform 0.3s ease;
}

.location-detail:hover {
    transform: translateX(5px);
}

.detail-icon {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.location-detail:hover .detail-icon {
    transform: scale(1.1);
    background-color: var(--secondary);
}

/* Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

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

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

.btn:active {
    transform: scale(0.98);
}

/* Navigation Link Animations */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

/* Footer Animations */
.footer-link {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    transform: translateX(5px);
}

.social-link {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Jobs Card Animations */
.job-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 44, 23, 0.12);
}

/* Form Input Animations */
input, textarea, select {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

input:focus, textarea:focus, select:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 44, 23, 0.1);
}

/* Image Loading Animation */
.menu-item-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

.menu-item-image[src] {
    animation: none;
    background: none;
}

/* Page Load Animation */
.page-hero {
    animation: fadeIn 0.8s ease;
}

.page-title {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.page-subtitle {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Smooth Section Transitions */
section {
    transition: opacity 0.3s ease;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}
