/* Time & Motion Theme - Sandwich Delivery Website */

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

:root {
    --white: #ffffff;
    --light-grey: #f5f5f5;
    --medium-grey: #e0e0e0;
    --dark-grey: #333333;
    --blue-primary: #2196F3;
    --blue-dark: #1976D2;
    --blue-light: #BBDEFB;
    --text-main: #2c3e50;
    --text-light: #7f8c8d;
}

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

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--blue-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--blue-primary);
}

.nav-links a.active {
    color: var(--blue-primary);
    border-bottom: 2px solid var(--blue-primary);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem 4rem 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 100%);
    border-radius: 10px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1rem auto;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Content Sections */
section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2rem;
    color: var(--blue-primary);
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--blue-light);
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin: 2rem 0 1rem 0;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Timeline & Clock Visualizations */
.timeline {
    position: relative;
    margin: 2rem 0;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--blue-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    background: var(--blue-primary);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--blue-primary);
}

.timeline-item h4 {
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
}

/* Clock Display */
.clock-display {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.clock-item {
    background: var(--light-grey);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 150px;
}

.clock-item .icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.clock-item .label {
    font-weight: bold;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
}

.clock-item .value {
    font-size: 1.2rem;
    color: var(--text-main);
}

/* Info Cards */
.info-card {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--blue-primary);
}

.info-card h4 {
    color: var(--blue-dark);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-item {
    background: var(--light-grey);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.faq-question {
    font-weight: bold;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.faq-answer {
    color: var(--text-main);
    margin-top: 0.5rem;
}

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

.contact-item {
    background: var(--light-grey);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.contact-item .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-item h4 {
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: var(--blue-light);
    border: 2px solid var(--blue-primary);
    padding: 1rem 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    text-align: center;
}

.disclaimer-banner p {
    margin: 0;
    color: var(--text-main);
    font-weight: 500;
}

/* Footer */
footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--blue-light);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    main {
        padding: 100px 1rem 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-icon {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .clock-display {
        flex-direction: column;
        align-items: center;
    }
}

/* Motion Elements */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse-icon {
    animation: pulse 2s infinite;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: slideIn 0.5s ease-out;
}