/* Sandwich Delivery Guide - Friendly Lifestyle Style */

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

:root {
    --beige-bg: #F5F0E8;
    --warm-orange: #E07B39;
    --orange-light: #F4A261;
    --dark-grey: #3D3D3D;
    --light-brown: #8B7355;
    --cream: #FDF8F0;
    --shadow: rgba(139, 115, 85, 0.15);
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-grey);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--light-brown);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--warm-orange);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--warm-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--orange-light);
}

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

/* Header */
header {
    background-color: var(--cream);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--warm-orange), var(--orange-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-grey);
}

.logo-text span {
    color: var(--warm-orange);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

nav ul li a {
    padding: 10px 15px;
    color: var(--dark-grey);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: var(--warm-orange);
    color: white;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-grey);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige-bg) 100%);
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--light-brown);
}

/* Content Blocks */
.content-block {
    background-color: var(--cream);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px var(--shadow);
}

.content-block h2 {
    border-bottom: 3px solid var(--warm-orange);
    padding-bottom: 10px;
    display: inline-block;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background-color: var(--beige-bg);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--warm-orange), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--light-brown);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background-color: var(--beige-bg);
    border-radius: 16px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--warm-orange), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--dark-grey);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--light-brown);
    margin: 0;
}

/* FAQ Section */
.faq-list {
    margin-top: 30px;
}

.faq-item {
    background-color: var(--beige-bg);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-grey);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(224, 123, 57, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--warm-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--light-brown);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-info {
    background-color: var(--beige-bg);
    border-radius: 16px;
    padding: 30px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--warm-orange), var(--orange-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    color: var(--light-brown);
}

.contact-item strong {
    color: var(--dark-grey);
    display: block;
    margin-bottom: 3px;
}

/* Disclaimer Box */
.disclaimer {
    background-color: rgba(224, 123, 57, 0.1);
    border-left: 4px solid var(--warm-orange);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 30px 0;
}

.disclaimer p {
    margin: 0;
    font-style: italic;
    color: var(--light-brown);
}

/* Main Content Area */
main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige-bg) 100%);
    border-radius: 20px;
    margin-bottom: 40px;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--light-brown);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: var(--cream);
    padding: 50px 20px 30px;
    margin-top: 50px;
    box-shadow: 0 -2px 10px var(--shadow);
}

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

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-brown);
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: var(--light-brown);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(139, 115, 85, 0.2);
}

.footer-bottom p {
    color: var(--light-brown);
    font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .content-block {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--cream);
        box-shadow: 0 5px 20px var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 500px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li a {
        display: block;
        padding: 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .content-block {
        padding: 25px 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 10px 15px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 25px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Accessibility */
:focus {
    outline: 3px solid var(--warm-orange);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    header, footer, .menu-toggle {
        display: none;
    }
    
    body {
        background: white;
        font-size: 12pt;
    }
    
    .content-block, .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}