/* ========================================
   DCG - Delaware Chicken & Gyro
   Modern Static Site Styles
   ======================================== */

:root {
    --orange: #E8891D;
    --orange-dark: #D07518;
    --orange-light: #FFF3E6;
    --dark: #1A1A1A;
    --dark-2: #2A2A2A;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-400: #9CA3AF;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 30px -5px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px -10px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.section-header-light h2 {
    color: var(--white);
}

.section-header-light p {
    color: rgba(255,255,255,0.7);
}

/* ========== Buttons ========== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,137,29,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--gray-900);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 10px 24px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.125rem;
}

/* ========== Navbar ========== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

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

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== Hero ========== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    background-color: var(--dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 24px;
    max-width: 700px;
}

.hero-logo {
    width: 200px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-address, .hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
}

.hero-address:hover, .hero-phone:hover {
    color: var(--orange);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Menu Section ========== */

.menu-section {
    background: var(--gray-50);
}

.menu-prices {
    max-width: 700px;
    margin: 0 auto 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.menu-board-img {
    width: 100%;
    display: block;
}

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

.food-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.food-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.food-img-wrap {
    aspect-ratio: 1;
    overflow: hidden;
}

.food-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.food-card:hover .food-img-wrap img {
    transform: scale(1.08);
}

.food-card h3 {
    padding: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    color: var(--gray-800);
}

/* ========== Order Section ========== */

.order-section {
    background: var(--gray-900);
    color: var(--white);
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.step-card {
    background: var(--gray-800);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--white);
}

.step-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-group strong {
    color: var(--orange);
    font-size: 1rem;
}

.option-group span {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.option-note {
    font-style: italic;
    font-size: 0.85rem !important;
    color: var(--gray-600) !important;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 18px;
    background: rgba(232,137,29,0.12);
    color: var(--orange);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(232,137,29,0.2);
}

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

/* ========== Location Section ========== */

.location-section {
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-lg);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.info-card {
    padding: 40px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.info-item svg {
    flex-shrink: 0;
    color: var(--orange);
}

.info-item a:hover {
    color: var(--orange);
}

.hours-table {
    margin-top: 28px;
}

.hours-table h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.hours-table table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--gray-800);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--gray-600);
}

.hours-table .closed {
    color: #EF4444;
    font-weight: 600;
}

.catering-note {
    margin-top: 24px;
    padding: 16px;
    background: var(--orange-light);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.catering-note a {
    color: var(--orange);
    font-weight: 600;
}

.catering-note a:hover {
    text-decoration: underline;
}

/* ========== Values Section ========== */

.values-section {
    background: var(--gray-900);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    background: var(--gray-800);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(232,137,29,0.1);
    margin-bottom: 20px;
    color: var(--orange);
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== Footer ========== */

.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
    height: 60px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.9rem !important;
    color: var(--gray-400) !important;
    font-weight: 400 !important;
    font-style: italic;
    margin-top: 4px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a, .footer-contact a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--gray-400);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
}

/* ========== Responsive ========== */

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--dark);
        padding: 80px 32px 40px;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    }

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

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

    .order-steps {
        grid-template-columns: 1fr;
    }

    .food-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .food-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .food-card h3 {
        padding: 12px;
        font-size: 0.85rem;
    }

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

    .info-card {
        padding: 24px;
    }
}

/* ========== Order Modal ========== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 48px 48px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.modal-close {
    position: absolute;
    top: 16px;
    left: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--gray-900);
}

.modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.modal p {
    color: var(--gray-600);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.btn-modal {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    padding: 16px;
    font-size: 1.05rem;
    border-radius: 50px;
}

.btn-modal:last-child {
    margin-bottom: 0;
}

/* ========== Mobile Sticky Order Button ========== */

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

@media (max-width: 768px) {
    .mobile-order-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1500;
        background: var(--orange);
        color: var(--white);
        text-align: center;
        padding: 16px;
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    }

    .mobile-order-btn:active {
        background: var(--orange-dark);
    }

    .footer {
        padding-bottom: 60px;
    }
}

/* ========== Animations ========== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile menu overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
