/* ===== Ahlan Shawarma Place - Styles ===== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fdf8f3;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: #8B1A1A;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #D4A54A;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #777;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- Buttons ----- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #D4A54A;
    color: #fff;
}

.btn-primary:hover {
    background: #c49430;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 74, 0.4);
}

.btn-secondary {
    background: #8B1A1A;
    color: #fff;
}

.btn-secondary:hover {
    background: #6e1414;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 26, 26, 0.4);
}

.btn-outline {
    background: transparent;
    color: #8B1A1A;
    border: 2px solid #8B1A1A;
}

.btn-outline:hover {
    background: #8B1A1A;
    color: #fff;
}

/* ----- Header / Navigation ----- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #8B1A1A;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4A54A;
    flex-shrink: 0;
}

.logo span {
    color: #D4A54A;
}

.logo-text-small {
    font-size: 0.7rem;
    font-weight: 400;
    color: #999;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:hover {
    color: #8B1A1A;
}

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

.nav-links a.active {
    color: #8B1A1A;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: #D4A54A;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: #c49430 !important;
    color: #fff !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d0f0f 30%, #8B1A1A 70%, #D4A54A 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 5 L95 35 L77 88 L23 88 L5 35 Z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    background-size: 100px 100px;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 165, 74, 0.2);
    border: 1px solid rgba(212, 165, 74, 0.4);
    color: #D4A54A;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero h1 span {
    color: #D4A54A;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== About Section ===== */
.about {
    background: #fff;
}

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

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 400px;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-image-placeholder {
    text-align: center;
    color: #8B1A1A;
    padding: 40px;
}

.about-image-placeholder .emoji-big {
    font-size: 5rem;
    display: block;
    margin-bottom: 15px;
}

.about-image-placeholder p {
    font-size: 1rem;
    color: #999;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #8B1A1A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: #fdf0e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #D4A54A;
    flex-shrink: 0;
}

.about-feature p {
    font-size: 0.95rem;
    margin-bottom: 0;
    font-weight: 500;
    color: #555;
}

/* ===== Specialties Section ===== */
.specialties {
    background: #fdf8f3;
}

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

.specialty-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 74, 0.1);
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 165, 74, 0.3);
}

.specialty-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.specialty-card h3 {
    font-size: 1.2rem;
    color: #8B1A1A;
    margin-bottom: 10px;
}

.specialty-card p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

/* ===== Featured Menu Section ===== */
.featured-menu {
    background: #fff;
}

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

.menu-item {
    background: #fdf8f3;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 74, 0.1);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.menu-item-image {
    height: 200px;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.menu-item-content {
    padding: 25px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-item-header h3 {
    font-size: 1.2rem;
    color: #8B1A1A;
    font-weight: 700;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #D4A54A;
}

.menu-item-content p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonials {
    background: linear-gradient(135deg, #8B1A1A, #6e1414);
    color: #fff;
    text-align: center;
}

.testimonials .section-title {
    color: #fff;
}

.testimonials .section-title::after {
    background: #D4A54A;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
    color: #D4A54A;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #D4A54A;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, #D4A54A, #c49430);
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-section .btn {
    background: #8B1A1A;
    color: #fff;
}

.cta-section .btn:hover {
    background: #6e1414;
}

/* ===== Footer ===== */
.footer {
    background: #1a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-about h3 span {
    color: #D4A54A;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #D4A54A;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #D4A54A;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact .icon {
    color: #D4A54A;
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #D4A54A;
    color: #1a0a0a;
}

/* ===== Page Header (for menu & contact pages) ===== */
.page-header {
    padding: 150px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, #1a0a0a, #8B1A1A);
    color: #fff;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Menu Page Specific ===== */
.menu-page {
    background: #fff;
}

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

.menu-category-title {
    font-size: 2rem;
    color: #8B1A1A;
    text-align: center;
    margin-bottom: 10px;
}

.menu-category-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 40px;
}

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

.menu-card {
    display: flex;
    background: #fdf8f3;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 74, 0.1);
    transition: all 0.3s ease;
}

.menu-card:hover {
    border-color: rgba(212, 165, 74, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.menu-card-image {
    width: 120px;
    min-height: 120px;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.menu-card-content {
    padding: 15px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.menu-card-header h3 {
    font-size: 1.1rem;
    color: #8B1A1A;
    font-weight: 700;
}

.menu-card-price {
    font-weight: 800;
    color: #D4A54A;
    font-size: 1.1rem;
}

.menu-card-content p {
    font-size: 0.9rem;
    color: #888;
}

/* ===== Contact Page Specific ===== */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    color: #8B1A1A;
    margin-bottom: 20px;
}

.contact-info > p {
    color: #777;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 55px;
    height: 55px;
    background: #fdf0e0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #D4A54A;
}

.contact-detail-text h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.contact-detail-text p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

.contact-hours {
    background: #fdf8f3;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(212, 165, 74, 0.15);
}

.contact-hours h4 {
    color: #8B1A1A;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

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

.hours-row .day {
    color: #555;
    font-weight: 500;
}

.hours-row .time {
    color: #333;
    font-weight: 600;
}

.hours-row.highlight {
    color: #D4A54A;
}

.hours-row.highlight .day,
.hours-row.highlight .time {
    color: #D4A54A;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fdf8f3;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(212, 165, 74, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: #8B1A1A;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: #999;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e5ddd5;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fff;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4A54A;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== Map Placeholder ===== */
.map-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8B1A1A;
    font-size: 4rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #999;
    margin-top: 10px;
}

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

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 25px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        align-items: flex-start;
    }

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

    .nav-links a {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

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

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

    .hero p {
        font-size: 1rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 300px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-form-wrapper {
        padding: 25px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .menu-card {
        flex-direction: column;
    }

    .menu-card-image {
        width: 100%;
        height: 150px;
    }
}
