/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SPA Page Content Styles */
.page-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page-content.active {
    display: block;
    opacity: 1;
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: white;
    backdrop-filter: blur(5px);
}

.loading-spinner.hidden {
    display: none;
}

.spinner {
    width: 30px;
    height: 30px;
    border: 3px solid var(--background-cream);
    border-top: 3px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Message Container */
.message-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.message {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.message.success {
    background-color: var(--primary-green);
}

.message.error {
    background-color: var(--primary-red);
}

.message.info {
    background-color: #007bff;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

:root {
    --primary-red: #ce2b37;
    --primary-green: #009246;
    --background-cream: #e4d9c4;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-merriweather);
    font-size: var(--font-size-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Italianno&display=swap');

/* Brand Typography System */
:root {
    --font-cinzel: 'Cinzel', 'Times New Roman', serif;
    --font-merriweather: 'Merriweather', Georgia, serif;
    --font-italianno: 'Italianno', 'Brush Script MT', cursive;
    
    /* Font Sizes */
    --font-size-brand: 48px;
    --font-size-subtitle: 28px;
    --font-size-heading: 32px;
    --font-size-subheading: 22px;
    --font-size-section: 18px;
    --font-size-body: 14px;
    --font-size-quote: 18px;
    --font-size-caption: 12px;
}

/* Brand Typography Classes */
.brand-title {
    font-family: var(--font-cinzel);
    font-weight: 700;
    font-size: var(--font-size-brand);
    line-height: 1.2;
}

.subtitle {
    font-family: var(--font-merriweather);
    font-style: italic;
    font-size: var(--font-size-subtitle);
    line-height: 1.3;
}

.heading {
    font-family: var(--font-cinzel);
    font-size: var(--font-size-heading);
    line-height: 1.3;
}

.subheading {
    font-family: var(--font-merriweather);
    font-weight: 700;
    font-size: var(--font-size-subheading);
    line-height: 1.4;
}

.section-header {
    font-family: var(--font-merriweather);
    font-size: var(--font-size-section);
    line-height: 1.4;
}

.body-text {
    font-family: var(--font-merriweather);
    font-size: var(--font-size-body);
    line-height: 1.6;
}

.quote-text {
    font-family: var(--font-italianno);
    font-size: var(--font-size-quote);
    line-height: 1.4;
}

.caption {
    font-family: var(--font-merriweather);
    font-style: italic;
    font-size: var(--font-size-caption);
    line-height: 1.4;
}

/* Apply brand typography to existing elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-cinzel);
    font-weight: 700;
}

/* Ensure all brand name instances use Cinzel Bold */
.brand-name,
.brand-highlight,
footer h3,
.nav-logo h1,
.hero-title .brand-highlight {
    font-family: var(--font-cinzel) !important;
    font-weight: 700 !important;
}

/* Additional brand name styling for specific elements */
.brand-name-in-text {
    font-family: var(--font-cinzel) !important;
    font-weight: 700 !important;
    color: var(--primary-green);
}

.section-title .brand-name-in-text {
    font-family: var(--font-cinzel) !important;
    font-weight: 700 !important;
    color: var(--primary-green);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--primary-green);
    font-family: var(--font-cinzel);
    font-weight: 700;
    font-size: var(--font-size-heading);
    margin: 0;
    line-height: 1.3;
}

/* Ensure "Pizza Harbour" always uses Cinzel Bold */
.brand-name,
h1 .brand-highlight,
.hero-title .brand-highlight,
footer h3 {
    font-family: var(--font-cinzel) !important;
    font-weight: 700 !important;
}

.slogan {
    color: var(--primary-red);
    font-family: var(--font-merriweather);
    font-style: italic;
    font-size: var(--font-size-caption);
    margin: 0;
    line-height: 1.4;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-merriweather);
    font-weight: 700;
    font-size: var(--font-size-body);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-red);
}

.order-btn {
    background-color: var(--primary-red);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background-color: #b02430;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-cream) 0%, #f5f0e8 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-cinzel);
    font-weight: 700;
    font-size: var(--font-size-brand);
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.2;
}

.brand-highlight {
    color: var(--primary-green);
}

.hero-subtitle {
    font-family: var(--font-merriweather);
    font-style: italic;
    font-size: var(--font-size-subtitle);
    color: var(--primary-red);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-family: var(--font-merriweather);
    font-size: var(--font-size-body);
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-family: var(--font-merriweather);
    font-size: var(--font-size-body);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b02430;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-loyalty {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-loyalty:hover {
    background-color: #b02430;
    border-color: #b02430;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-family: var(--font-cinzel);
    font-size: var(--font-size-heading);
    margin-bottom: 50px;
    color: var(--text-dark);
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--background-cream);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-merriweather);
    font-weight: 700;
    font-size: var(--font-size-subheading);
    margin-bottom: 15px;
    color: var(--primary-green);
    line-height: 1.4;
}

.feature-card p {
    font-family: var(--font-merriweather);
    font-size: var(--font-size-body);
    color: var(--text-light);
    line-height: 1.6;
}

/* Menu Preview Section */
.menu-preview {
    padding: 80px 0;
    background-color: var(--background-cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.menu-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.menu-item-image {
    margin-bottom: 20px;
    width: 100%;
    height: 200px;
    background-color: var(--background-cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.placeholder-img {
    width: 120px;
    height: 120px;
    background-color: var(--background-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto;
}

.pizza-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.menu-item h3 {
    color: var(--primary-green);
    font-family: var(--font-merriweather);
    font-weight: 700;
    font-size: var(--font-size-subheading);
    margin-bottom: 10px;
    line-height: 1.4;
}

.menu-item p {
    font-family: var(--font-merriweather);
    font-size: var(--font-size-body);
    color: var(--text-light);
    line-height: 1.6;
}

.menu-cta {
    text-align: center;
}

/* Loyalty Section Styles */
.loyalty-section {
    padding: 80px 0;
    background-color: var(--white);
}

.loyalty-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.loyalty-text h2 {
    font-family: var(--font-cinzel);
    font-size: var(--font-size-heading);
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.3;
}

.loyalty-text p {
    font-family: var(--font-merriweather);
    font-size: var(--font-size-body);
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

.loyalty-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.loyalty-feature {
    text-align: center;
    padding: 15px;
    background-color: var(--background-cream);
    border-radius: 10px;
}

.loyalty-feature span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.loyalty-feature p {
    font-family: var(--font-merriweather);
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.loyalty-image {
    text-align: center;
}

.loyalty-placeholder {
    width: 300px;
    height: 300px;
    background-color: var(--background-cream);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
}

.loyalty-placeholder p {
    font-size: 1rem;
    margin-top: 10px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-cinzel);
    font-size: var(--font-size-heading);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-section p {
    font-family: var(--font-merriweather);
    font-size: var(--font-size-section);
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-family: var(--font-cinzel) !important;
    font-weight: 700 !important;
    font-size: var(--font-size-heading);
    color: var(--primary-green);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-family: var(--font-merriweather);
    font-weight: 700;
    font-size: var(--font-size-subheading);
    line-height: 1.4;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.legal-name {
    font-family: var(--font-merriweather);
    font-style: italic;
    font-size: var(--font-size-caption);
    color: #777;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Pizza With Purpose Page Styles */
.purpose-hero {
    background: linear-gradient(135deg, var(--background-cream) 0%, #f5f0e8 100%);
    color: var(--text-dark);
}

.purpose-hero .hero-subtitle {
    color: var(--primary-red);
}

.purpose-hero .hero-description {
    color: var(--text-light);
}

.mission-section {
    padding: 80px 0;
    background-color: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: var(--background-cream);
    border-radius: 10px;
}

.stat h3 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.mission-image {
    text-align: center;
}

.mission-placeholder {
    width: 300px;
    height: 300px;
    background-color: var(--background-cream);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
}

.mission-placeholder p {
    font-size: 1rem;
    margin-top: 10px;
    color: var(--text-light);
}

.impact-section {
    padding: 80px 0;
    background-color: var(--background-cream);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.impact-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.impact-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.impact-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.impact-amount {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1.1rem;
}

.how-it-works {
    padding: 80px 0;
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.organizations-section {
    padding: 80px 0;
    background-color: var(--background-cream);
}

.organizations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.org-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.org-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.org-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.org-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.org-contribution {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1.1rem;
}

.purpose-cta {
    background-color: var(--primary-red);
}

/* Harbour Values Page Styles */
.values-hero {
    background: linear-gradient(135deg, var(--background-cream) 0%, #f5f0e8 100%);
    color: var(--text-dark);
}

.values-hero .hero-subtitle {
    color: var(--primary-red);
}

.values-hero .hero-description {
    color: var(--text-light);
}

.values-section {
    padding: 80px 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.value-card {
    background-color: var(--background-cream);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-card.featured {
    border: 3px solid var(--primary-green);
    transform: scale(1.05);
}

.value-card.featured::before {
    content: 'Core Value';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-cinzel);
    font-size: var(--font-size-heading);
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.3;
}

.value-card p {
    font-family: var(--font-merriweather);
    font-size: var(--font-size-body);
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.value-details {
    text-align: left;
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.value-details h4 {
    font-family: var(--font-merriweather);
    font-weight: 700;
    font-size: var(--font-size-subheading);
    color: var(--primary-red);
    margin-bottom: 15px;
}

.value-details ul {
    list-style: none;
    padding: 0;
}

.value-details li {
    font-family: var(--font-merriweather);
    font-size: var(--font-size-body);
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.value-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.value-details li:last-child {
    border-bottom: none;
}

.values-in-action {
    padding: 80px 0;
    background-color: var(--background-cream);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.action-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.action-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.action-card h3 {
    font-family: var(--font-merriweather);
    font-weight: 700;
    font-size: var(--font-size-subheading);
    color: var(--primary-green);
    margin-bottom: 10px;
    line-height: 1.4;
}

.action-card p {
    font-family: var(--font-merriweather);
    font-size: var(--font-size-body);
    color: var(--text-light);
    line-height: 1.6;
}

.team-commitment {
    padding: 80px 0;
    background-color: var(--white);
}

.commitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commitment-text h2 {
    font-family: var(--font-cinzel);
    font-size: var(--font-size-heading);
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.3;
}

.commitment-text p {
    font-family: var(--font-merriweather);
    font-size: var(--font-size-body);
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

.commitment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.commitment-stats .stat {
    text-align: center;
    padding: 20px;
    background-color: var(--background-cream);
    border-radius: 10px;
}

.commitment-stats .stat h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.commitment-stats .stat p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.commitment-image {
    text-align: center;
}

.commitment-placeholder {
    width: 300px;
    height: 300px;
    background-color: var(--background-cream);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
}

.commitment-placeholder p {
    font-size: 1rem;
    margin-top: 10px;
    color: var(--text-light);
}

.values-cta {
    background-color: var(--primary-green);
}

/* Catering Page Styles */
.catering-hero {
    background: linear-gradient(135deg, var(--background-cream) 0%, #f5f0e8 100%);
    color: var(--text-dark);
}

.catering-hero .hero-subtitle {
    color: var(--primary-red);
}

.catering-hero .hero-description {
    color: var(--text-light);
}

.catering-features {
    padding: 80px 0;
    background-color: var(--white);
}

.packages-section {
    padding: 80px 0;
    background-color: var(--background-cream);
}
.package-card.selectable {
    cursor: pointer;
    transition: box-shadow 0.2s, border 0.2s;
    border: 2px solid transparent;
}
.package-card.selectable:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border-color: var(--primary-green);
}
.package-card.selected {
    border: 2px solid var(--primary-green);
    box-shadow: 0 6px 20px rgba(0,128,64,0.10);
    background: #f6fff6;
}
.order-form-section {
    margin: 40px auto 0 auto;
    max-width: 700px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 32px 24px;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.package-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.package-card.featured {
    border: 3px solid var(--primary-green);
    transform: scale(1.05);
}

.package-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header {
    margin-bottom: 30px;
}

.package-header h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.package-price {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 600;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
}

.package-features li:last-child {
    border-bottom: none;
}

.quote-form-section {
    padding: 80px 0;
    background-color: var(--white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.catering-form {
    background-color: var(--background-cream);
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-family: var(--font-merriweather);
    font-weight: 700;
    font-size: var(--font-size-body);
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-merriweather);
    font-size: var(--font-size-body);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.menu-item-checkbox {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.menu-item-checkbox:hover {
    border-color: var(--primary-green);
    background: var(--bg-white);
}

.menu-item-checkbox .checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin: 0;
}

.menu-item-checkbox .checkmark {
    margin-right: 12px;
    margin-top: 2px;
}

.menu-item-info {
    flex: 1;
}

.menu-item-info strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.menu-item-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9em;
    line-height: 1.4;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}
.checkbox-group label {
    font-weight: 400;
    font-size: 1rem;
    margin-right: 20px;
    cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
    margin-right: 8px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--background-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.testimonial-content p {
    font-family: var(--font-italianno);
    font-size: var(--font-size-quote);
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 20px;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    color: var(--primary-green);
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Responsive styles for new pages */
    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .impact-grid,
    .organizations-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .catering-form {
        padding: 30px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    /* Responsive styles for loyalty section */
    .loyalty-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .loyalty-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 28px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
} 

.pizza-estimator-widget {
    background: var(--background-cream);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 32px 24px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.pizza-estimator-widget h3 {
    font-family: var(--font-cinzel);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}
#pizza-people-slider {
    width: 100%;
    margin: 16px 0 8px 0;
}
#pizza-people-count {
    font-weight: bold;
    color: var(--primary-red);
    margin: 0 4px;
}
.pizza-visuals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    margin: 0 0 8px 0;
    max-width: 220px;
}
.pizza-visuals .pizza-circle {
    display: inline-block;
    margin-bottom: 8px;
}
.pizza-circle {
    display: inline-block;
    border-radius: 50%;
    background: #fff7e6;
    border: 3px solid var(--primary-red);
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    position: relative;
}
.pizza-circle.pizza-16 {
    width: 64px;
    height: 64px;
}
.pizza-circle.pizza-12 {
    width: 44px;
    height: 44px;
}
.pizza-circle-label {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: var(--primary-green);
    font-family: var(--font-merriweather);
    font-weight: 700;
    text-align: center;
    pointer-events: none;
}
.pizza-estimator-summary {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-family: var(--font-merriweather);
    font-weight: 600;
} 

.pizza-estimator-estimates {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: nowrap;
    max-width: 600px;
}
@media (max-width: 600px) {
    .pizza-estimator-estimates {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        flex-wrap: wrap;
    }
}
.pizza-estimate {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    padding: 16px 12px 10px 12px;
    min-width: 180px;
    flex: 1 1 180px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pizza-estimate-label {
    font-size: 1rem;
    color: var(--primary-green);
    font-family: var(--font-merriweather);
    font-weight: 700;
    margin-bottom: 8px;
} 

.catering-quote-widget {
    background: var(--background-cream);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 32px 24px;
    text-align: center;
    max-width: 340px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.catering-quote-widget h3 {
    font-family: var(--font-cinzel);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 18px;
}
.catering-quote-widget .form-group {
    width: 100%;
    margin-bottom: 18px;
    text-align: left;
}
.catering-quote-widget label {
    font-family: var(--font-merriweather);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}
.catering-quote-widget input[type="number"],
.catering-quote-widget select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-merriweather);
    font-size: 1rem;
    margin-top: 4px;
    margin-bottom: 2px;
}
.radio-group {
    display: flex;
    gap: 18px;
    margin-top: 6px;
}
.radio-group label {
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 0;
}
.catering-quote-widget .btn {
    margin-top: 10px;
    width: 100%;
    font-size: 1.1rem;
    padding: 12px 0;
} 

.order-form-header {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 24px;
    justify-content: space-between;
}
.order-form-header .form-group {
    min-width: 180px;
    margin-bottom: 0;
}
.order-form-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}
.order-form-table th, .order-form-table td {
    border-bottom: 1px solid #eee;
    padding: 10px 8px;
    text-align: left;
}
.order-form-table th {
    background: #f7f7f7;
    font-weight: 700;
    color: var(--primary-green);
}
.order-form-table td:last-child, .order-form-table th:last-child {
    text-align: right;
}
.order-form-summary {
    margin-top: 24px;
    text-align: right;
    font-size: 1.1rem;
}
.order-form-summary .summary-row {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    margin-bottom: 6px;
}
.order-form-summary .summary-label {
    font-weight: 600;
    color: #444;
}
.order-form-summary .summary-value {
    min-width: 100px;
    text-align: right;
}
.order-form-summary .summary-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
}
@media (max-width: 700px) {
    .order-form-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
} 

.most-popular-badge {
    display: inline-block;
    background: var(--primary-green);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 16px;
    padding: 4px 16px;
    margin-left: 12px;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(0,128,64,0.10);
}
.package-card.most-popular {
    border: 3px solid var(--primary-green);
    box-shadow: 0 8px 24px rgba(0,128,64,0.10);
    background: #fff;
    position: relative;
}
.package-card.most-popular.selected {
    background: #f6fff6;
}
.package-card.most-popular::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-red));
    border-radius: 2px;
} 