/* Pizza King - Professional Restaurant Website Styles */
/* Dark Blue Theme to make red logos pop */

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

:root {
    --primary-blue: #1a2a4a;
    --dark-blue: #0f1a2e;
    --accent-blue: #2a3f6a;
    --primary-red: #c41e3a;
    --primary-gold: #f4c430;
    --cream: #fff8e7;
    --light-gray: #f5f5f5;
    --dark: #1a1a1a;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light-gray);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: var(--primary-gold);
    color: var(--dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Phone Banner */
.phone-banner {
    background: var(--primary-gold);
    text-align: center;
    padding: 0.6rem;
}

.phone-banner a {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-banner a:hover {
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background-color: var(--primary-red);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/PizzaKing_FishersMural_Greyscale_PRINT.ai NO LOGO (1).png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--white);
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.hero-tagline-img {
    max-width: 350px;
    width: 80%;
    height: auto;
    margin: 1rem auto 1.5rem;
    display: block;
}

.hero .since {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white);
}

.cta-button {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--dark);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 3px solid var(--primary-gold);
}

.cta-button:hover {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
    transform: scale(1.05);
}

/* Main Content Sections */
.section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary-red);
    margin: 0.5rem auto 0;
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

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

.info-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-card p {
    color: var(--dark);
    line-height: 1.8;
}

.info-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Hours Table */
.hours-table {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.5rem 0.5rem;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.hours-table td:first-child {
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.hours-table td:last-child {
    text-align: right;
    white-space: nowrap;
}

/* Delivery Section */
.delivery-section {
    background: var(--primary-blue);
    padding: 3rem 1rem;
    text-align: center;
    color: var(--white);
}

.delivery-section .section-title {
    color: var(--white);
}

.delivery-section .section-title::after {
    background: var(--primary-gold);
}

.delivery-section p {
    color: var(--cream);
}

.delivery-map {
    max-width: 500px;
    margin: 2rem auto;
}

.delivery-map img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 3px solid var(--primary-gold);
    background: #fff;
    padding: 5px;
}

/* ================= MENU PAGE STYLES ================= */

.menu-section {
    background: var(--white);
    padding: 3rem 1rem;
    margin-bottom: 1rem;
}

.menu-section:nth-child(odd) {
    background: var(--light-gray);
}

.menu-section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Pizza Grid */
.pizza-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.pizza-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.pizza-price-table th {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    font-weight: 600;
}

.pizza-price-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.pizza-price-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary-blue);
}

.pizza-price-table tr:hover {
    background: #f9f9f9;
}

.pizza-price-table tr:last-child td {
    border-bottom: none;
}

/* Feast Pizzas Grid */
.feast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feast-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-red);
}

.feast-card h4 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feast-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Toppings */
.toppings-list {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.toppings-list h4 {
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
}

.toppings-list p {
    line-height: 1.8;
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed #ddd;
}

.menu-item-name {
    font-weight: 600;
    color: var(--primary-blue);
}

.menu-item-desc {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.menu-item-price {
    font-weight: 700;
    color: var(--primary-red);
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-category {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.menu-category h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-gold);
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.indiana-badge {
    text-align: center;
    margin: 3rem 0;
}

.indiana-badge img {
    max-width: 300px;
    height: auto;
}

.indiana-badge-top {
    text-align: center;
    margin-bottom: 2rem;
}

.indiana-badge-top img {
    max-width: 250px;
    height: auto;
}

/* What Makes Us Special */
.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.special-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary-red);
}

.special-item h4 {
    color: var(--primary-red);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.special-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

.footer a {
    color: var(--primary-gold);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-phone {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-blue);
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.75rem 0;
    }

    .nav-links a {
        padding: 1rem 1.5rem;
        border-bottom: none;
        display: block;
        text-align: center;
    }

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

    .hero {
        height: 50vh;
        min-height: 350px;
    }

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

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

    .section {
        padding: 2.5rem 1rem;
    }

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

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

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

    .about-image {
        order: -1;
    }

    .phone-banner a {
        font-size: 1.1rem;
    }

    .pizza-price-table {
        font-size: 0.9rem;
    }

    .pizza-price-table th,
    .pizza-price-table td {
        padding: 0.5rem;
    }

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

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

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

    .cta-button {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    .nav-logo img {
        height: 55px;
    }

    .pizza-price-table {
        font-size: 0.8rem;
    }
}
