/* PizzaPizza - CSS Styles */
:root {
    --forest-green: #2D5016;
    --oat-beige: #F5F1E8;
    --burnt-terracotta: #B8694F;
    --charcoal: #333333;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Buttons */
.cta-button, .product-button {
    background-color: var(--burnt-terracotta);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button:hover, .product-button:hover {
    background-color: #a55a47;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

/* Hero Section */
.hero {
    background-color: var(--oat-beige);
    padding: 80px 0;
    min-height: 85vh;
    overflow-x: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
    min-height: 70vh;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    order: 1;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 16px;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-green);
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    order: 2;
    width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-tag {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-2px);
}

.tag-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.hero-image-placeholder {
    order: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.hero-image-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* About Section */
.about {
    background-color: var(--white);
}

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

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-green);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rounded-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Features Section */
.features {
    background-color: var(--oat-beige);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Nutrition Calculator Section */
.nutrition-calculator {
    background-color: var(--white);
}

.calculator-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-options {
    space-y: 20px;
}

.option-group {
    margin-bottom: 25px;
}

.option-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--forest-green);
}

.option-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--oat-beige);
    border-radius: 6px;
    font-size: 1rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-group input {
    margin-right: 10px;
}

.nutrition-display {
    background-color: var(--oat-beige);
    padding: 30px;
    border-radius: 12px;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(45,80,22,0.2);
}

.nutrition-label {
    font-weight: 500;
    color: var(--forest-green);
}

.nutrition-value {
    font-weight: 600;
    color: var(--burnt-terracotta);
}

/* Products Section */
.products {
    background-color: var(--light-gray);
}

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

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-image-placeholder {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.service-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-map-placeholder .rounded-image {
    height: 350px;
}

.product-info {
    padding: 30px;
}

.nutrition-highlights {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.nutrition-badge {
    background-color: var(--forest-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burnt-terracotta);
    margin-bottom: 20px;
}

/* Service Areas Section */
.service-areas {
    background-color: var(--white);
}

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

.delivery-features {
    margin-top: 30px;
    space-y: 15px;
}

.delivery-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.delivery-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.service-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Benefits Section */
.benefits {
    background-color: var(--oat-beige);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.benefits-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefits-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

/* Trust Section */
.trust {
    background-color: var(--white);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.trust-stat {
    text-align: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 10px;
}

.trust-label {
    color: var(--text-light);
}

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

.trust-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.trust-feature-icon {
    width: 24px;
    height: 24px;
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--burnt-terracotta);
}

.contact-details h3 {
    margin-bottom: 8px;
    color: var(--forest-green);
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--burnt-terracotta);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #a55a47;
}

/* Enhanced Contact Form Styles */
.contact-form-container {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid var(--oat-beige);
}

.contact-form-container h3 {
    color: var(--forest-green);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--forest-green);
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--oat-beige);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--burnt-terracotta);
    box-shadow: 0 0 0 3px rgba(184, 105, 79, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

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

.form-submit-btn {
    width: 100%;
    background-color: var(--burnt-terracotta);
    color: var(--white);
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit-btn:hover:not(:disabled) {
    background-color: #a55a47;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 105, 79, 0.3);
}

.form-submit-btn:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.hours-grid {
    margin-top: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--oat-beige);
}

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

.hours-item span:first-child {
    font-weight: 500;
    color: var(--forest-green);
}

.hours-item span:last-child {
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2.8fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    line-height: 1.5;
    color: #b0b0b0;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: var(--oat-beige);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    color: #b0b0b0;
    line-height: 1.4;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--oat-beige);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 30px;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    body {
        overflow-x: hidden;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 70vh;
    }
    
    .hero .container {
        gap: 40px;
        min-height: 60vh;
    }
    
    .logo-container {
        margin-bottom: 10px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .feature-tag {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .hero-image-placeholder img {
        height: 250px;
    }
    
    .about-grid,
    .calculator-interface,
    .service-content,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        text-align: center;
        gap: 50px;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        text-align: left;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid,
    .trust-stats,
    .trust-features {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .rounded-image {
        height: 300px;
    }
    
    .service-map-placeholder .rounded-image {
        height: 250px;
    }
    
    .nutrition-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
        min-height: 60vh;
    }
    
    .hero .container {
        gap: 30px;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .hero-features {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .feature-tag {
        padding: 8px 14px;
        font-size: 0.85rem;
        min-width: 120px;
        justify-content: center;
    }
    
    .hero-image-placeholder img {
        height: 220px;
    }
    
    .feature-card,
    .product-info {
        padding: 20px;
    }
    
    .nutrition-highlights {
        gap: 8px;
    }
    
    .rounded-image {
        height: 250px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .contact-form-container h3 {
        font-size: 1.2rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .form-submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}