/* Sandwich Delivery Process Structure - CSS Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --primary-orange-dark: #E55A2B;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--primary-orange);
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-orange-dark);
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Header and Navigation */
header {
    background-color: var(--white);
    border-bottom: 3px solid var(--primary-orange);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

nav a:hover, nav a.active {
    color: var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 60vh;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.hero h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Section Styling */
.section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border-gray);
}

.section-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Process Steps */
.process-step {
    background-color: var(--light-gray);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

.step-number {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    margin-right: 1rem;
}

/* Flow Diagrams */
.flow-diagram {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-item {
    background-color: var(--light-gray);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

.faq-question {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Contact Section */
.contact-info {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-orange);
    min-width: 100px;
    margin-right: 1rem;
}

.contact-value {
    color: var(--text-dark);
}

/* Disclaimer Box */
.disclaimer {
    background-color: #FFF5F0;
    border: 2px solid var(--primary-orange);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.disclaimer h3 {
    color: var(--primary-orange);
    margin-top: 0;
    border-bottom: none;
}

.disclaimer p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #555;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

/* Privacy Policy Specific Styles */
.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section h3 {
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .section {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-label {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    nav ul {
        gap: 0.75rem;
    }
    
    nav a {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    header {
        position: static;
    }
    
    nav {
        display: none;
    }
    
    .flow-diagram {
        page-break-inside: avoid;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* Accessibility */
a:focus, button:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}