/* ============================================================================
   EMILY BAKES CAKES - MAIN STYLESHEET
   Pure HTML/CSS Version
   Colors: #F8EBD7 (cream), #C44569 (raspberry pink), #2B2B2B (charcoal)
   Fonts: Playfair Display (headings), Poppins (subheadings), Open Sans (body)
   ============================================================================ */

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

body {
    font-family: 'Open Sans', sans-serif;
    background: #F8EBD7;
    color: #2B2B2B;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================================================
   NAVIGATION BAR
   ============================================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #C44569;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 60px;
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.9;
}

.navbar .nav-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 20px;
}

.navbar .nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    opacity: 1;
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
}

.navbar .staff-login-btn {
    background: white;
    color: #C44569;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    margin-left: 10px;
}

.navbar .staff-login-btn:hover {
    background: #F8EBD7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Logo image sizing (main nav and staff sidebar) */
.logo img,
.nav-logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    transition: width 0.15s ease, height 0.15s ease;
}

@media (max-width: 768px) {
    .logo img,
    .nav-logo img {
        width: 48px;
        height: 48px;
        margin-right: 8px;
    }
}

/* ============================================================================
   HERO SECTION (Homepage)
   ============================================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/ebc-cake-images/hero-cake.jpg') center/cover;
    opacity: 0.35;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(43, 43, 43, 0.5), rgba(43, 43, 43, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-divider {
    width: 200px;
    height: 4px;
    background: #C44569;
    margin: 0 auto 30px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: #F8EBD7;
    margin-bottom: 30px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-subtitle .highlight {
    color: #C44569;
}

.hero-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #F8EBD7;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #C44569;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    padding: 20px 64px;
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(196, 69, 105, 0.4);
}

.cta-button:hover {
    background: #D45579;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(196, 69, 105, 0.6);
}

/* ============================================================================
   FEATURES SECTION
   ============================================================================ */
.features {
    padding: 80px 20px;
    background: #F8EBD7;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
}

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

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: #5A3825;
    line-height: 1.6;
}

/* ============================================================================
   SPOTLIGHT/CAROUSEL SECTION
   ============================================================================ */
.spotlight {
    padding: 80px 20px;
    background: white;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2B2B2B;
    margin-bottom: 50px;
}

.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    height: 500px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.carousel-content {
    padding: 30px;
    background: white;
}

.carousel-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 10px;
}

.carousel-content p {
    font-size: 16px;
    color: #5A3825;
    margin-bottom: 15px;
}

.price {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #C44569;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(196, 69, 105, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: #C44569;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -60px;
}

.carousel-btn.next {
    right: -60px;
}

/* ============================================================================
   TESTIMONIALS SECTION
   ============================================================================ */
.testimonials {
    padding: 80px 20px;
    background: #F8EBD7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stars {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #5A3825;
    margin-bottom: 15px;
}

.testimonial-card strong {
    font-family: 'Poppins', sans-serif;
    color: #2B2B2B;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */
.cta-section {
    padding: 80px 20px;
    background: #C44569;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* ============================================================================
   PAGE HERO (for Menu, About, Contact)
   ============================================================================ */
.page-hero {
    padding: 120px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, #C44569 0%, #8B3A5E 100%);
    color: white;
    margin-top: 60px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================================================
   MENU PAGE
   ============================================================================ */
.menu-section {
    padding: 60px 20px;
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-btn {
    background: white;
    color: #2B2B2B;
    border: 2px solid #C44569;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: #C44569;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.menu-card {
    background: #FAF5F0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(90, 56, 37, 0.08);
    transition: all 0.2s;
    padding: 16px;
}

.menu-card:hover {
    box-shadow: 0 4px 16px rgba(196, 69, 105, 0.15);
    transform: translateY(-4px);
}

.menu-card-image {
    height: 160px;
    background: linear-gradient(135deg, #F8EBD7 0%, #FAF5F0 100%);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.menu-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 8px;
}

.menu-card p {
    font-size: 14px;
    color: #5A3825;
    line-height: 1.5;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
}

.color-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hex-code {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: #5A3825;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

.color-swatch {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    border: 2px solid #ddd;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.color-card span:not(.hex-code) {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #2B2B2B;
}

/* Decorations List Styling */
.decorations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.decoration-category {
    background: #FAF5F0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(90, 56, 37, 0.08);
}

.decoration-category h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #C44569;
    margin-bottom: 16px;
    border-bottom: 2px solid #F8EBD7;
    padding-bottom: 8px;
}

.decoration-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.decoration-category li {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #2B2B2B;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.decoration-category li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #C44569;
    top: 16px;
    position: absolute;
    left: 0;
}

/* ============================================================================
   ABOUT PAGE
   ============================================================================ */
.about-hero {
    padding: 150px 20px 80px;
    text-align: center;
    background: linear-gradient(120deg, #2B2B2B 0%, #3D2A2A 30%, #C44569 60%, #F8EBD7 100%);
    margin-top: 60px;
}

.gradient-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 700;
    background: linear-gradient(135deg, #F8EBD7 0%, #C44569 50%, #F8EBD7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.handwriting {
    font-family: 'Lucida Handwriting', cursive;
    font-size: clamp(20px, 4vw, 28px);
    font-style: italic;
    color: #F8EBD7;
}

.about-story {
    padding: 80px 20px;
    background: #F8EBD7;
}

.about-story h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
}

.story-content {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: start;
}

.story-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 100px;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-image {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #C44569;
}

.timeline-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: #5A3825;
}

.values {
    padding: 80px 20px;
    background: white;
}

.values h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: #5A3825;
    line-height: 1.6;
}

/* ============================================================================
   CONTACT PAGE
   ============================================================================ */
.contact-content {
    padding: 60px 20px;
}

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

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    color: #C44569;
    margin-bottom: 10px;
}

.subtitle {
    color: #5A3825;
    font-size: 14px;
    margin-bottom: 30px;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.workflow-step {
    display: flex;
    align-items: start;
    gap: 15px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #C44569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 17px;
    color: #5A3825;
    line-height: 1.5;
}

.phone-link {
    color: #C44569;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}

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

.contact-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card a {
    color: #C44569;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.small {
    font-size: 14px;
    color: #5A3825;
}

.map-section {
    padding: 60px 20px;
    background: #F8EBD7;
}

.map-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #F8EBD7 0%, white 100%);
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2B2B2B;
}

.faq-section > .container > p {
    text-align: center;
    font-size: 18px;
    color: #5A3825;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-category {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #C44569;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.faq-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #C44569;
    border-radius: 2px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(196, 69, 105, 0.15);
    border-color: #F8EBD7;
    transform: translateY(-2px);
}

.faq-item h3,
.faq-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 12px;
    padding: 20px 24px 0;
    line-height: 1.4;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5A3825;
    padding: 0 24px 20px;
}

.faq-item ul {
    margin: 10px 0;
    padding-left: 44px;
    padding-right: 24px;
    padding-bottom: 20px;
}

.faq-item ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #5A3825;
}

.faq-cta {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #C44569 0%, #D45579 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(196, 69, 105, 0.3);
}

.faq-cta p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: white;
}

.faq-cta p strong {
    font-size: 22px;
    font-weight: 700;
}

.faq-cta .cta-button {
    margin-top: 25px;
    background: white;
    color: #C44569;
    border-color: white;
}

.faq-cta .cta-button:hover {
    background: #F8EBD7;
    transform: translateY(-4px);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
    background: #2B2B2B;
    color: rgba(255, 255, 255, 0.9);
    padding: 40px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #C44569;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 1024px) {
    .navbar .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 300px;
        height: calc(100vh - 60px);
        background: #C44569;
        flex-direction: column !important;
        padding: 40px 20px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
    }

    .navbar .nav-menu.active {
        left: 0;
    }

    .navbar .nav-link {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar .staff-login-btn {
        margin-left: 0;
        margin-top: 20px;
        display: block;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .testimonials-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================================================
   STAFF DASHBOARD STYLES
   ============================================================================ */

/* CSS Variables for Dashboard */
:root {
    --cream: #FAF5F0;
    --raspberry: #C44569;
    --charcoal: #2B2B2B;
    --brown: #5A3825;
    --blue: #3B82F6;
    --amber: #F59E0B;
    --green: #10B981;
    --purple: #A855F7;
    --gray: #6B7280;
}

/* Staff Body Layout */
.staff-body {
    display: flex;
    min-height: 100vh;
    background: #F5F5F5;
}

/* Left Navigation Bar - WCAG Compliant Vertical Design */
.staff-nav {
    width: 260px;
    background: linear-gradient(180deg, #2B2B2B 0%, #1A1A1A 100%);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    padding: 0;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.nav-logo {
    padding: 30px 20px;
    background: rgba(196, 69, 105, 0.15);
    border-bottom: 3px solid var(--raspberry);
    margin-bottom: 0;
    text-align: center;
    flex-shrink: 0;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: white;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.nav-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: var(--raspberry);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

.staff-nav .nav-menu {
    list-style: none;
    padding: 20px 10px;
<<<<<<< HEAD
    display: flex;
    flex-direction: column;
    gap: 8px;
=======
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
>>>>>>> fc5c35c8a03463124447aa2f9274f2b4a2d05c24
}

.nav-menu li {
    margin-bottom: 0;
    width: 100%;
}

.nav-menu .nav-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    /* WCAG Focus States */
    outline: none;
}

/* WCAG 2.1 AA Compliant Focus Indicator */
.nav-menu .nav-link:focus {
    outline: 3px solid #FFFFFF;
    outline-offset: -3px;
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu .nav-link:focus-visible {
    outline: 3px solid #FFFFFF;
    outline-offset: -3px;
}

.nav-menu .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--raspberry);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.nav-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    padding-left: 26px;
    transform: translateX(2px);
}

.nav-menu .nav-link:hover::before {
    transform: scaleY(1);
}

.nav-menu .nav-link.active {
    background: linear-gradient(90deg, rgba(196, 69, 105, 0.35) 0%, rgba(196, 69, 105, 0.12) 100%);
    color: white;
    padding-left: 26px;
    box-shadow: 0 4px 12px rgba(196, 69, 105, 0.3);
    font-weight: 600;
}

.nav-menu .nav-link.active::before {
    transform: scaleY(1);
}

/* WCAG Compliant Icon Sizing */
.nav-icon {
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
}

/* Screen Reader Only Content for Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Main Content Area */
.staff-main {
    margin-left: 260px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header Bar */
.staff-header {
    background: white;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-left {
    display: flex;
    flex-direction: column;
}

.welcome-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0;
}

.role-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: var(--brown);
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pickup-badge {
    background: var(--raspberry);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.back-link {
    color: var(--brown);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--raspberry);
}

.logout-btn {
    background: var(--charcoal);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: #1A1A1A;
    transform: translateY(-2px);
}

/* Dashboard Content */
.dashboard-content {
    padding: 30px;
    flex: 1;
}

/* KPI Cards Row */
.kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.kpi-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--gray);
    transition: transform 0.3s;
}

.kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.kpi-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.kpi-number {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
}

.kpi-blue {
    border-top-color: var(--blue);
}

.kpi-amber {
    border-top-color: var(--amber);
}

.kpi-green {
    border-top-color: var(--green);
}

.kpi-purple {
    border-top-color: var(--purple);
}

/* Action Buttons Row */
.action-row {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.action-btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.primary-btn {
    background: var(--raspberry);
    color: white;
}

.primary-btn:hover {
    background: #A0355A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 69, 105, 0.3);
}

.secondary-btn {
    background: white;
    color: var(--raspberry);
    border: 2px solid var(--raspberry);
}

.secondary-btn:hover {
    background: var(--raspberry);
    color: white;
    transform: translateY(-2px);
}

/* Charts Row */
.charts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.chart-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.chart-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
}

/* Table Section */
.table-section {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.table-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0;
}

.search-box {
    padding: 8px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    width: 250px;
    outline: none;
    transition: border-color 0.3s;
}

.search-box:focus {
    border-color: var(--raspberry);
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table thead {
    background: #F9FAFB;
}

.orders-table th {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--brown);
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid #E5E7EB;
}

.orders-table td {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--charcoal);
    padding: 14px 12px;
    border-bottom: 1px solid #F3F4F6;
}

.orders-table tr:hover {
    background: #F9FAFB;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.status-ready {
    background: #D1FAE5;
    color: #065F46;
}

.status-decorating {
    background: #EDE9FE;
    color: #5B21B6;
}

.status-baking {
    background: #FEF3C7;
    color: #92400E;
}

.status-pending {
    background: #DBEAFE;
    color: #1E40AF;
}

.view-btn {
    background: var(--raspberry);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn:hover {
    background: #A0355A;
}

/* Schedule Section */
.schedule-section {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.schedule-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 100px 1fr 2fr;
    gap: 15px;
    padding: 12px;
    background: #F9FAFB;
    border-radius: 6px;
    border-left: 3px solid var(--raspberry);
}

.schedule-time {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--raspberry);
}

.schedule-customer {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
}

.schedule-order {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--brown);
}

/* Placeholder Page */
.placeholder-page {
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.placeholder-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.placeholder-page p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--brown);
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
    .kpi-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .charts-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .staff-nav {
        width: 200px;
    }

    .staff-main {
        margin-left: 200px;
    }

    .nav-logo h2 {
        font-size: 18px;
    }

    .nav-menu .nav-link {
        font-size: 13px;
        padding: 12px 14px;
    }

    .kpi-row {
        grid-template-columns: 1fr;
    }

    .action-row {
        flex-direction: column;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
