/* ================================================
   SUGO Pizza Page - Midnight Glass Theme
   Tomato Red / Burnt Orange Accents
   ================================================ */

/* === SUGO Page Variables === */
.sugo-page {
    --color-accent: var(--color-tomato);
    --color-accent-dark: var(--color-burnt-orange);
}

/* === SUGO Hero === */
.sugo-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--color-deep-black);
}

/* Warm glow effect */
.sugo-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.sugo-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -25%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(232, 93, 4, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.sugo-hero-content {
    text-align: center;
    max-width: 900px;
    padding: var(--space-md);
    position: relative;
    z-index: 1;
}

.sugo-hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sugo-hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-white-muted);
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.sugo-hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* === Story Section === */
.sugo-story {
    background: var(--color-deep-black);
    text-align: center;
}

.sugo-story-content {
    max-width: 800px;
    margin: 0 auto;
}

.sugo-story-grid {
    display: block;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-white-muted);
    margin-bottom: var(--space-md);
}

/* === Menu Section === */
.sugo-menu {
    background: var(--color-dark-gray);
}

.sugo-menu .section-header h2 {
    color: var(--color-tomato);
}

.pizza-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.pizza-card {
    overflow: hidden;
    transition: var(--transition-normal);
}

.pizza-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

.pizza-image {
    height: 180px;
    overflow: hidden;
    margin: calc(var(--space-md) * -1);
    margin-bottom: var(--space-sm);
}

.pizza-image .placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pizza-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pizza-image-focus-burrata {
    object-position: center 34%;
}

.pizza-content {
    padding-top: var(--space-sm);
}

.pizza-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
}

.pizza-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pizza-weight {
    font-size: 0.8rem;
    color: var(--color-white-subtle);
}

.pizza-ingredients {
    font-size: 0.85rem;
    color: var(--color-white-subtle);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
    min-height: 40px;
}

.pizza-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-tomato);
}

/* === Sides & Extras === */
.extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.extra-section h3 {
    color: var(--color-tomato);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--space-xs);
}

.extra-list {
    list-style: none;
    padding: 0;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-xs);
    padding: var(--space-xs) 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.extra-item:last-child {
    border-bottom: none;
}

.extra-name {
    font-weight: 500;
}

.extra-price {
    font-weight: 700;
    color: var(--color-gold);
}

.sauce-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
}

.sauce-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--color-white-subtle);
}

/* === Toppings Section === */
.toppings-section {
    margin-top: var(--space-lg);
    background: rgba(0, 0, 0, 0.2);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.toppings-section h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.topping-tier {
    margin-bottom: var(--space-sm);
    color: var(--color-white-subtle);
    font-size: 0.95rem;
}

.topping-price {
    color: var(--color-gold);
    font-weight: 700;
    margin-right: var(--space-xs);
}

.menu-note {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: 0.9rem;
    color: var(--color-white-muted);
    font-style: italic;
}

/* === Responsive Design === */
@media (max-width: 900px) {
    .sugo-hero-content h1 {
        font-size: 3rem;
    }

    .sugo-hero-content p {
        font-size: 1.1rem;
    }

    .pizza-grid,
    .extras-grid {
        grid-template-columns: 1fr;
        padding: 0 var(--space-md);
    }
}

@media (max-width: 500px) {
    .sugo-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* === Responsive === */
@media (max-width: 768px) {
    .pizza-grid {
        grid-template-columns: 1fr;
    }

    .pizza-ingredients {
        min-height: auto;
    }

    .sugo-hero-cta {
        flex-direction: column;
    }
}

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