/* ===== CSS Variables ===== */
:root {
    --greek-blue: #1e5aa8;
    --greek-blue-dark: #153d73;
    --greek-blue-light: #4a90d9;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gold: #d4a84b;
    --charcoal: #2c2c2c;
    --gray: #6c757d;
    --halal-green: #2d5a27;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
}

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

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

a {
    color: var(--greek-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--greek-blue-dark);
}

/* ===== Greek Border Pattern ===== */
.greek-border-top,
.greek-border-bottom {
    height: 20px;
    background-color: var(--greek-blue);
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 10px,
            var(--white) 10px,
            var(--white) 12px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 10px,
            var(--white) 10px,
            var(--white) 12px
        );
    background-size: 22px 22px;
    position: relative;
}

.greek-border-top::after,
.greek-border-bottom::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}

.greek-border-top::after {
    bottom: -4px;
}

.greek-border-bottom::after {
    top: -4px;
}

.greek-border-bottom {
    margin-top: 20px;
}

/* ===== Header ===== */
.header {
    background-color: #000000;
    padding: 15px 0;
}

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

.logo {
    max-width: 300px;
    height: auto;
}

.header-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.header-phone {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.header-address {
    color: #ffffff;
    font-size: 0.9rem;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--greek-blue) 0%, var(--greek-blue-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .tagline {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.halal-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    padding: 12px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.halal-badge.small {
    padding: 8px 15px;
    margin-top: 15px;
}

.halal-icon {
    width: 50px;
    height: 50px;
}

.halal-badge.small .halal-icon {
    width: 35px;
    height: 35px;
}

.halal-badge span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== Specials Section ===== */
.specials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.specials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--greek-blue-dark);
    margin-bottom: 10px;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.special-card {
    background-color: var(--off-white);
    border: 3px solid var(--greek-blue);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.special-title {
    font-size: 1.8rem;
    color: var(--greek-blue-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.special-items {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.special-items li {
    padding: 8px 0;
    color: var(--dark-gray);
    font-size: 1.05rem;
    position: relative;
    padding-left: 25px;
}

.special-items li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--greek-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.special-price {
    font-size: 2rem;
    color: var(--greek-blue);
    font-weight: 700;
    margin: 0;
}

.price-note {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

/* ===== Food Gallery ===== */
.food-gallery {
    padding: 80px 0;
    background-color: var(--off-white);
}

.food-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--greek-blue-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.dish-category {
    margin-bottom: 60px;
}

.dish-category:last-child {
    margin-bottom: 0;
}

.category-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--greek-blue);
    margin-bottom: 30px;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* ===== Menu Section ===== */
.menu-section {
    padding: 80px 0;
    background: var(--white);
}

.menu-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--greek-blue-dark);
    margin-bottom: 10px;
}

.menu-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.menu-page {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.menu-page:hover {
    transform: scale(1.02);
}

.menu-page img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Delivery Section ===== */
.delivery-section {
    background: linear-gradient(135deg, var(--greek-blue-dark) 0%, var(--greek-blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.delivery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.delivery-section p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.delivery-apps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.delivery-badge {
    background: var(--white);
    color: var(--greek-blue-dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: var(--off-white);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--greek-blue-dark);
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    color: var(--greek-blue);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: var(--greek-blue-dark);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-card a {
    font-size: 1.3rem;
    font-weight: 600;
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
    padding: 50px 0 30px;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.footer p {
    opacity: 0.9;
    margin-bottom: 10px;
}

.copyright {
    margin-top: 30px;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .menu-images {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .header-phone {
        font-size: 0.9rem;
    }

    .header-address {
        font-size: 0.8rem;
    }

    .logo {
        max-width: 240px;
    }

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

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

    .food-gallery h2,
    .menu-section h2,
    .specials-section h2,
    .delivery-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .special-title {
        font-size: 1.5rem;
    }

    .special-price {
        font-size: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-item img {
        height: 250px;
    }

    .delivery-apps {
        flex-direction: column;
        align-items: center;
    }

    .delivery-badge {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 280px;
    }

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

    .halal-badge {
        flex-direction: column;
        gap: 8px;
        padding: 15px 20px;
    }

    .food-gallery,
    .menu-section,
    .contact-section {
        padding: 50px 0;
    }
}
