/* 
 * Pizzaonna L'Eliana - Custom Design System Stylesheet
 * Premium Dark Restaurant Theme (#070707 background, crema/tomato/basil details)
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --po-bg-dark: #070707;
    --po-bg-alt: #111111;
    --po-charcoal-light: #151515;
    --po-card-bg: #111111;
    --po-offwhite: #f5f1ea;
    --po-text-sec: #cfc7bb;
    --po-crema: #e8d2b8;
    --po-red: #c94b35;
    --po-red-hover: #d6422b;
    --po-green: #5f7d62;
    --po-font-serif: 'Cormorant Garamond', Georgia, serif;
    --po-font-sans: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* Global Styles */
html {
    scroll-behavior: auto !important;
    scroll-padding-top: 160px; /* header (80px) + sticky nav (~55px) + margen */
}

body {
    background-color: var(--po-bg-dark);
    color: var(--po-offwhite);
    font-family: var(--po-font-sans);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--po-font-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 0;
    color: var(--po-offwhite);
}

p {
    font-size: 16px;
    font-weight: 300;
    color: var(--po-text-sec);
}

/* Global Links - No Underlines, Transition Style */
a {
    color: var(--po-crema);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover {
    color: var(--po-red);
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

/* Header & Menu styles */
.po-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1010;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(to bottom, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0) 100%);
    border-bottom: 1px solid transparent;
}

.po-navbar.scrolled {
    background: rgba(7, 7, 7, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(232, 210, 184, 0.08);
}

.po-logo {
    font-family: var(--po-font-serif);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.po-logo a {
    color: var(--po-offwhite);
}

.po-logo span {
    color: var(--po-red);
}

.po-nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.po-nav-links a {
    font-family: var(--po-font-sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--po-text-sec);
    position: relative;
    padding: 8px 0;
}

/* Expansion Line Hover Animation */
.po-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--po-crema);
    transition: width 0.3s ease, left 0.3s ease;
}

.po-nav-links a:hover {
    color: var(--po-crema);
}

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

.po-navbar-cta {
    display: flex;
    align-items: center;
}

.po-nav-btn {
    background-color: var(--po-red);
    color: var(--po-offwhite) !important;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--po-red);
}

.po-nav-btn:hover {
    background-color: transparent;
    color: var(--po-crema) !important;
    border-color: var(--po-crema);
}

/* Mobile Menu Toggle Hamburguesa */
.po-menu-toggle {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1020;
}

.po-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--po-offwhite);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0);
    transition: .25s ease-in-out;
}

.po-menu-toggle span:nth-child(1) {
    top: 0px;
}

.po-menu-toggle span:nth-child(2) {
    top: 9px;
}

.po-menu-toggle span:nth-child(3) {
    top: 18px;
}

.po-menu-toggle.open span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.po-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.po-menu-toggle.open span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* Hero Section */
.po-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.po-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Slow Ken Burns Effect */
@keyframes poKenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}
.po-hero-bg {
    animation: poKenBurns 20s ease-out infinite alternate;
}

/* Sophisticated Dark Gradient Overlay */
.po-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 7, 7, 0.8) 0%, rgba(7, 7, 7, 0.45) 50%, var(--po-bg-dark) 100%);
    z-index: 2;
}

.po-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.po-hero h1 {
    font-size: 84px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--po-offwhite);
}

.po-hero h1 span {
    font-family: var(--po-font-serif);
    font-weight: 300;
    font-style: italic;
    color: var(--po-crema);
}

.po-hero-subtitle {
    font-size: 26px;
    font-family: var(--po-font-serif);
    color: var(--po-crema);
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 400;
}

.po-hero-text {
    font-size: 16px;
    color: var(--po-text-sec);
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Entrance Animations */
@keyframes poFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.po-animate-fade-up-1 {
    opacity: 0;
    animation: poFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.po-animate-fade-up-2 {
    opacity: 0;
    animation: poFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.po-animate-fade-up-3 {
    opacity: 0;
    animation: poFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.po-animate-fade-up-4 {
    opacity: 0;
    animation: poFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

/* Premium Buttons */
.po-btn {
    padding: 15px 35px;
    font-family: var(--po-font-sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0;
    display: inline-block;
    cursor: pointer;
}

.po-btn-primary {
    background-color: var(--po-red);
    color: var(--po-offwhite);
    border: 1px solid var(--po-red);
}

.po-btn-primary:hover {
    background-color: transparent;
    color: var(--po-red);
}

.po-btn-outline {
    background-color: transparent;
    color: var(--po-offwhite);
    border: 1px solid rgba(245, 241, 234, 0.4);
}

.po-btn-outline:hover {
    background-color: var(--po-offwhite);
    color: var(--po-bg-dark);
    border-color: var(--po-offwhite);
}

/* Sections Common styling */
.po-section {
    padding: 120px 8%;
    background-color: var(--po-bg-dark);
    position: relative;
}

/* Alternating dark layout for premium feel */
.po-section-light {
    background-color: var(--po-bg-alt);
    color: var(--po-offwhite);
    border-top: 1px solid rgba(232, 210, 184, 0.03);
    border-bottom: 1px solid rgba(232, 210, 184, 0.03);
}

.po-section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--po-red);
    display: block;
    margin-bottom: 15px;
}

.po-section-title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: var(--po-font-serif);
}

.po-section-title span {
    font-weight: 300;
    font-style: italic;
    color: var(--po-crema);
}

/* About Us Section */
.po-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.po-about-content {
    padding-right: 20px;
}

.po-about-text {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--po-offwhite);
    font-weight: 300;
}

.po-about-text-secondary {
    font-size: 16px;
    color: var(--po-text-sec);
    line-height: 1.7;
    margin-bottom: 35px;
}

.po-badge-sello {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 18px 30px;
    border: 1px solid rgba(232, 210, 184, 0.12);
    background-color: var(--po-charcoal-light);
    border-radius: 4px;
}

.po-sello-number {
    font-family: var(--po-font-serif);
    font-size: 54px;
    font-weight: 700;
    color: var(--po-red);
    line-height: 1;
}

.po-sello-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--po-crema);
    line-height: 1.4;
}

.po-about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(232, 210, 184, 0.05);
}

.po-about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.po-about-image-wrapper:hover .po-about-image {
    transform: scale(1.04);
}

/* Experience Cards Section */
.po-experience-section {
    background: linear-gradient(to bottom, var(--po-bg-dark), var(--po-bg-alt));
    padding-top: 100px;
    padding-bottom: 100px;
}

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

.po-experience-card {
    height: 480px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-radius: 12px;
    border: 1px solid rgba(232, 210, 184, 0.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.po-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: saturate(0.85) brightness(0.9);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.po-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.55) 60%, rgba(7, 7, 7, 0.2) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.po-card-content {
    position: relative;
    z-index: 3;
    padding: 45px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.po-card-title {
    font-size: 36px;
    color: var(--po-offwhite);
    margin: 0;
    font-family: var(--po-font-serif);
    font-weight: 600;
}

.po-card-text {
    font-size: 15px;
    color: var(--po-text-sec);
    margin: 0 0 15px 0;
    font-weight: 300;
    line-height: 1.6;
}

.po-card-btn {
    align-self: flex-start;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--po-crema);
    border: 1px solid rgba(232, 210, 184, 0.25);
    background: transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover States for Experience Cards */
.po-experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.65);
    border-color: rgba(232, 210, 184, 0.2);
}

.po-experience-card:hover .po-card-bg {
    transform: scale(1.06);
    filter: saturate(1.0) brightness(0.95);
}

.po-experience-card:hover .po-card-overlay {
    background: linear-gradient(to top, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.6) 70%, rgba(7, 7, 7, 0.3) 100%);
}

.po-experience-card:hover .po-card-btn {
    background-color: var(--po-crema);
    color: var(--po-bg-dark);
    border-color: var(--po-crema);
}

/* Call To Action - Pedir Online */
.po-cta-banner {
    background-color: var(--po-red);
    text-align: center;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

.po-cta-title {
    font-size: 48px;
    color: var(--po-offwhite);
    margin-bottom: 15px;
    font-family: var(--po-font-serif);
}

.po-cta-text {
    font-size: 18px;
    color: rgba(245, 241, 234, 0.9);
    margin-bottom: 35px;
    font-weight: 300;
}

.po-btn-cta {
    background-color: var(--po-bg-dark);
    color: var(--po-offwhite);
    border: 1px solid var(--po-bg-dark);
}

.po-btn-cta:hover {
    background-color: transparent;
    color: var(--po-bg-dark);
    border-color: var(--po-bg-dark);
}

/* Contact & Info Section */
.po-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.po-contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.po-contact-info-item {
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
}

.po-contact-icon {
    font-size: 22px;
    color: var(--po-red);
    margin-top: 2px;
    display: inline-block;
}

.po-contact-info-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--po-crema);
    font-family: var(--po-font-sans);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.po-contact-info-content p {
    margin: 0;
    font-size: 15px;
    color: var(--po-text-sec);
    line-height: 1.6;
}

.po-contact-info-content a {
    color: var(--po-text-sec);
}

.po-contact-info-content a:hover {
    color: var(--po-crema);
}

.po-contact-buttons {
    display: flex;
    gap: 15px;
}

.po-btn-sm {
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Google Maps Container styled */
.po-map-container {
    height: 280px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(232, 210, 184, 0.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    filter: grayscale(0.5) contrast(1.1) brightness(0.85);
    transition: filter 0.5s ease;
}

.po-map-container:hover {
    filter: grayscale(0.2) contrast(1.05) brightness(0.9);
}

.po-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Forms layout styling with elegant bottom border focus */
.po-form-container {
    background-color: var(--po-bg-alt);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(232, 210, 184, 0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.po-form-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--po-offwhite);
    font-family: var(--po-font-serif);
}

.po-form-group {
    margin-bottom: 25px;
}

.po-form-group label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    color: var(--po-crema);
    font-weight: 600;
}

.po-form-control {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(232, 210, 184, 0.15);
    color: var(--po-offwhite);
    padding: 12px 4px;
    font-size: 15px;
    font-family: var(--po-font-sans);
    border-radius: 0;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.po-form-control::placeholder {
    color: rgba(207, 199, 187, 0.35);
}

.po-form-control:focus {
    outline: none;
    border-color: var(--po-red);
    background-color: rgba(255, 255, 255, 0.01);
}

textarea.po-form-control {
    resize: vertical;
    height: 100px;
}

.po-form-btn {
    width: 100%;
    margin-top: 10px;
}

/* Footer Section */
.po-footer {
    background-color: #050505;
    padding: 80px 8% 40px 8%;
    border-top: 1px solid rgba(232, 210, 184, 0.05);
}

.po-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.po-footer-about h3 {
    font-size: 28px;
    color: var(--po-offwhite);
    margin-bottom: 20px;
}

.po-footer-about p {
    font-size: 14px;
    color: var(--po-text-sec);
    opacity: 0.7;
    max-width: 340px;
    line-height: 1.7;
}

.po-footer-title {
    font-size: 16px;
    color: var(--po-crema);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--po-font-sans);
    font-weight: 600;
}

.po-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.po-footer-links a {
    font-size: 14px;
    color: var(--po-text-sec);
    opacity: 0.85;
}

.po-footer-links a:hover {
    color: var(--po-red);
    opacity: 1;
}

.po-footer p {
    font-size: 14px;
    line-height: 1.7;
}

.po-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(232, 210, 184, 0.05);
    padding-top: 35px;
    font-size: 13px;
    color: var(--po-text-sec);
    opacity: 0.6;
}

.po-footer-bottom a {
    color: var(--po-text-sec);
}

.po-footer-bottom a:hover {
    color: var(--po-crema);
}

/* Carta / Menu Page Styles */
.po-menu-nav-container {
    position: sticky;
    top: 79px; /* Matches navbar height offset */
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99;
    padding: 15px 0;
    border-bottom: 1px solid rgba(232, 210, 184, 0.08);
    margin-bottom: 50px;
}

/* Horizontal Categories with Hidden Scrollbar on Mobile */
.po-menu-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 5px 15px;
}

.po-menu-nav::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.po-menu-nav {
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;  /* Firefox */
}

.po-menu-nav-btn {
    background-color: rgba(21, 21, 21, 0.6);
    color: var(--po-text-sec);
    padding: 8px 22px;
    font-size: 13px;
    font-family: var(--po-font-sans);
    font-weight: 500;
    border: 1px solid rgba(232, 210, 184, 0.12);
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.po-menu-nav-btn:hover {
    border-color: var(--po-red);
    color: var(--po-red);
}

.po-menu-nav-btn.active {
    background-color: var(--po-red);
    color: var(--po-offwhite);
    border-color: var(--po-red);
}

.po-menu-section {
    margin-bottom: 80px;
    scroll-margin-top: 180px; /* header + sticky nav + margen extra */
}

.po-menu-section-title {
    font-size: 38px;
    color: var(--po-crema);
    border-bottom: 1px solid rgba(232, 210, 184, 0.08);
    padding-bottom: 12px;
    margin-bottom: 35px;
    text-transform: uppercase;
    font-family: var(--po-font-serif);
    letter-spacing: 1px;
}

/* CPT Platos Grid */
.pizzaonna-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pizzaonna-menu-item {
    background-color: rgba(17, 17, 17, 0.5);
    border: 1px solid rgba(232, 210, 184, 0.04);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.pizzaonna-menu-item:hover {
    transform: translateY(-4px);
    background-color: rgba(21, 21, 21, 0.85);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: rgba(201, 75, 53, 0.25);
}

/* Gastronomic dotted line spacer */
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    gap: 10px;
    width: 100%;
}

.menu-item-title {
    font-size: 21px;
    color: var(--po-offwhite);
    margin: 0;
    font-weight: 600;
    font-family: var(--po-font-serif);
    order: 1;
    flex-shrink: 0;
}

.menu-item-header::after {
    content: "";
    order: 2;
    flex-grow: 1;
    border-bottom: 1px dotted rgba(232, 210, 184, 0.22);
    margin: 0 10px;
    align-self: flex-end;
    margin-bottom: 5px;
}

.menu-item-prices {
    font-family: var(--po-font-serif);
    font-size: 21px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    order: 3;
    flex-shrink: 0;
}

.price-standard {
    color: var(--po-red);
}

.price-familiar {
    font-size: 13px;
    color: var(--po-text-sec);
    opacity: 0.8;
    margin-left: 6px;
    font-family: var(--po-font-sans);
    font-weight: 400;
}

.menu-item-badges {
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Badges - Semi-transparent background with color borders */
.po-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
}

.po-badge-gluten {
    background-color: rgba(232, 210, 184, 0.05);
    border: 1px solid rgba(232, 210, 184, 0.25);
    color: var(--po-crema);
}

.po-badge-spicy {
    background-color: rgba(201, 75, 53, 0.05);
    border: 1px solid rgba(201, 75, 53, 0.25);
    color: var(--po-red);
}

.po-badge-veg {
    background-color: rgba(95, 125, 98, 0.05);
    border: 1px solid rgba(95, 125, 98, 0.25);
    color: #95bf9a;
}

.po-badge-vegan {
    background-color: rgba(76, 175, 80, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.25);
    color: #81c784;
}

.po-badge-spec {
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #e5c158;
}

.menu-item-description {
    font-size: 14px;
    color: var(--po-text-sec);
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
}

/* Loop item grid in Elementor integration */
.elementor-loop-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Theme Overrides & Reset */
#site-header, #site-footer, .site-header, .site-footer, 
.page-header, .entry-header, .entry-title, .page-title {
    display: none !important;
}

/* Underline removal globally for elementor text blocks */
.elementor-widget-text-editor a,
.elementor-widget-heading a {
    text-decoration: none !important;
}

/* ===== WPAUTOP Defense: Neutralize stray <p> and <br> tags ===== */
/* These rules prevent wpautop-injected tags from breaking grid/flex layouts */
.po-cards-grid > p,
.po-cards-grid > br,
.po-hero > p,
.po-hero-content > p:empty,
.po-about-grid > p,
.po-about-grid > br,
.po-contact-grid > p:empty,
.po-contact-grid > br,
.po-footer-grid > p,
.po-footer-grid > br,
.po-cta-banner > p:empty,
.po-experience-card > p,
.po-experience-card > br,
.po-card-content > p:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
}

/* Ensure stray p tags inside cards don't break flex layout */
.po-card-content > p {
    display: contents;
}

/* Fix any p wrapping around span.po-card-btn */
.po-card-content p:has(.po-card-btn) {
    display: contents;
    margin: 0;
    padding: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .po-hero h1 {
        font-size: 64px;
    }
    .po-section {
        padding: 90px 6%;
    }
    .po-about-grid {
        gap: 50px;
    }
    .po-experience-card {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .po-navbar {
        padding: 0 25px;
    }
    .po-navbar-cta {
        display: none; /* Hide standard CTA on mobile bar */
    }
    .po-menu-toggle {
        display: block; /* Hamburger visible */
    }
    
    /* Navigation Link drawer */
    .po-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #0b0b0b;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        box-sizing: border-box;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1015;
    }
    
    .po-nav-links.open {
        right: 0;
    }
    
    .po-nav-links a {
        font-size: 16px;
    }

    .po-hero h1 {
        font-size: 48px;
    }
    .po-hero-subtitle {
        font-size: 20px;
    }
    .po-hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 5%;
    }
    .po-about-grid,
    .po-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .po-about-content {
        padding-right: 0;
    }
    .po-cards-grid,
    .pizzaonna-menu-grid,
    .po-footer-grid {
        grid-template-columns: 1fr;
    }
    .po-experience-card {
        height: 380px;
    }
    .po-card-content {
        padding: 30px;
    }
    .po-card-title {
        font-size: 30px;
    }
    .po-contact-buttons {
        flex-direction: column;
    }
    .po-form-container {
        padding: 30px;
    }
    .po-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .po-menu-nav {
        justify-content: flex-start;
    }
}
