/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(90deg, #581c87, #be185d, #ea580c);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    background: linear-gradient(45deg, #f97316, #ec4899);
    padding: 0.5rem;
    border-radius: 0.5rem;
    transform: rotate(3deg);
}

.logo-icon span {
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
}

.logo-text {
    color: white;
}

.logo-title {
    font-weight: 900;
    font-size: 1.125rem;
    line-height: 1;
    letter-spacing: 0.1em;
}

.logo-subtitle {
    color: #fed7aa;
    font-size: 0.75rem;
    font-weight: 600;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.nav-link:hover {
    color: #fed7aa;
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(45deg, #f97316, #ec4899);
    color: white;
    font-weight: 900;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ea580c, #db2777);
    transform: scale(1.05);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    width: 1.5rem;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(249, 115, 22, 0.3);
}

.nav-mobile.active {
    display: flex;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .menu-toggle {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(88, 28, 135, 0.9), rgba(190, 24, 93, 0.8), rgba(234, 88, 12, 0.9));
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #f97316, #ec4899);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    background: linear-gradient(45deg, #fb923c, #f472b6, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-sub {
    display: block;
    font-size: 2.5rem;
    color: #fed7aa;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 32rem;
    line-height: 1.6;
}

.highlight {
    color: #fb923c;
    font-weight: 900;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary-large {
    background: linear-gradient(45deg, #f97316, #ec4899);
    color: white;
    font-weight: 900;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-large:hover {
    background: linear-gradient(45deg, #ea580c, #db2777);
    transform: scale(1.05);
}

.btn-secondary-large {
    border: 2px solid #f97316;
    color: #f97316;
    background: transparent;
    font-weight: 900;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary-large:hover {
    background: #f97316;
    color: white;
    transform: scale(1.05);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 900;
}

.stat-number.orange { color: #fb923c; }
.stat-number.pink { color: #f472b6; }
.stat-number.purple { color: #a855f7; }

.stat-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.875rem;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

.circle-1 {
    top: 5rem;
    right: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(45deg, #f97316, #ec4899);
}

.circle-2 {
    bottom: 5rem;
    left: 2.5rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(45deg, #a855f7, #ec4899);
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .title-sub {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #f97316, #ec4899);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
}

.section-badge.rotate {
    transform: rotate(1deg);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #fb923c, #f472b6, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem;
    }
}

/* Menu Section */
.menu-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000000, #581c87, #000000);
}

.menu-card {
    border-radius: 1rem;
    border: 2px solid;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
    overflow: hidden;
}

.menu-card:hover {
    transform: scale(1.05);
}

.menu-card.signature {
    background: linear-gradient(135deg, #dc2626, #ea580c, #eab308);
    border-color: #fb923c;
}

.menu-card.vienne {
    background: linear-gradient(135deg, #7c3aed, #ec4899, #f97316);
    border-color: #f472b6;
}

.menu-card-header {
    text-align: center;
    padding-bottom: 1rem;
}

.menu-image {
    margin-bottom: 1rem;
}

.menu-image img {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-info {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(8px);
}

.menu-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.menu-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fde047;
    margin-bottom: 0.5rem;
}

.menu-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.menu-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-section-content {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(8px);
}

.menu-section-title {
    font-weight: 900;
    color: #fde047;
    margin-bottom: 0.75rem;
}

.menu-category-title {
    font-weight: 900;
    color: #fde047;
    margin-bottom: 0.75rem;
    text-align: center;
}

.menu-item {
    margin-bottom: 0.75rem;
}

.menu-item h5 {
    font-weight: 900;
    color: white;
    font-size: 1.125rem;
}

.menu-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.diy-step {
    margin-bottom: 0.75rem;
}

.diy-step h5 {
    font-weight: 900;
    color: white;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.option {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background 0.2s;
}

.option:hover {
    background: rgba(255, 255, 255, 0.3);
}

.delivery-info {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(8px);
}

.delivery-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    text-align: center;
}

.menu-cta {
    background: linear-gradient(45deg, #f97316, #ec4899);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.menu-cta h3 {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.menu-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.btn-cta-primary {
    background: white;
    color: #ea580c;
    font-weight: 900;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cta-primary:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

.btn-cta-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
    font-weight: 900;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cta-secondary:hover {
    background: white;
    color: #ea580c;
    transform: scale(1.05);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000000, #ea580c);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(45deg, #f97316, #ec4899);
    border-radius: 50%;
    filter: blur(3rem);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(234, 88, 12, 0.3), transparent);
    border-radius: 1rem;
}

.hot-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: linear-gradient(45deg, #f97316, #ec4899);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(12deg);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-story {
    background: linear-gradient(45deg, rgba(88, 28, 135, 0.5), rgba(234, 88, 12, 0.5));
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.about-story h3 {
    font-size: 1.875rem;
    font-weight: 900;
    background: linear-gradient(45deg, #fb923c, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.about-story p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.highlight-orange {
    color: #fb923c;
    font-weight: 900;
}

.highlight-pink {
    color: #f472b6;
    font-weight: 900;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.award-badge {
    background: linear-gradient(45deg, #f97316, #ec4899);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.875rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.5), rgba(234, 88, 12, 0.5));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: scale(1.05);
    border-color: #fb923c;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fb923c;
}

.feature-card h4 {
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

.team-section {
    background: linear-gradient(45deg, #f97316, #ec4899);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.team-section h3 {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.team-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.team-emojis {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.team-emojis span {
    font-size: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000000, #581c87, #000000);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(88, 28, 135, 0.8), rgba(0, 0, 0, 0.8));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.5), rgba(234, 88, 12, 0.5));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #fb923c, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #fb923c;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-block {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(8px);
}

.detail-block h4 {
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.detail-block p {
    color: rgba(255, 255, 255, 0.9);
}

.highlight-orange {
    color: #fb923c;
    font-weight: 600;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fb923c;
    text-decoration: none;
    transition: color 0.2s;
}

.phone-number:hover {
    color: #fed7aa;
}

.snapchat-handle {
    color: #f472b6;
    font-weight: 900;
    font-size: 1.125rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.hours-item h4 {
    font-weight: 900;
    color: white;
    margin-bottom: 0.25rem;
}

.hours-item p {
    color: #fb923c;
}

.hours-continuous {
    grid-column: 1 / -1;
}

.hours-continuous p {
    color: #f472b6;
    font-weight: 900;
    text-align: center;
    margin-top: 0.75rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-card {
    background: linear-gradient(135deg, #f97316, #ec4899);
    border: 2px solid #fde047;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

.order-card:hover {
    transform: scale(1.05);
}

.order-icon {
    font-size: 3.75rem;
    margin-bottom: 1rem;
}

.order-card h3 {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.order-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-order-primary {
    width: 100%;
    background: white;
    color: #ea580c;
    font-weight: 900;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-order-primary:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

.btn-order-secondary {
    width: 100%;
    border: 2px solid white;
    color: white;
    background: transparent;
    font-weight: 900;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-order-secondary:hover {
    background: white;
    color: #ea580c;
    transform: scale(1.05);
}

.social-card {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.5), rgba(236, 72, 153, 0.5));
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.social-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #fb923c, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 1rem;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-btn {
    border: 1px solid;
    background: transparent;
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    aspect-ratio: 1;
}

.social-btn.instagram {
    border-color: #f472b6;
    color: #f472b6;
}

.social-btn.instagram:hover {
    background: #f472b6;
    color: white;
}

.social-btn.facebook {
    border-color: #3b82f6;
    color: #60a5fa;
}

.social-btn.facebook:hover {
    background: #3b82f6;
    color: white;
}

.social-btn.twitter {
    border-color: #a855f7;
    color: #c084fc;
}

.social-btn.twitter:hover {
    background: #a855f7;
    color: white;
}

.social-icon {
    font-size: 1.5rem;
}

.social-text {
    font-size: 0.75rem;
    font-weight: 900;
}

.social-card p {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.offers-card {
    background: linear-gradient(135deg, #eab308, #ea580c);
    border: 2px solid #fde047;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.offers-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.offers-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.offers-list p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.map-section {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.5), rgba(234, 88, 12, 0.5));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.map-section h3 {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #fb923c, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.map-placeholder {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(8px);
}

.map-icon {
    font-size: 3.75rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.map-address {
    color: #fb923c;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hours-continuous {
        grid-column: 1 / -1;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #000000, #581c87, #7c2d12);
    border-top: 1px solid rgba(249, 115, 22, 0.3);
}

.footer .container {
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    grid-column: 1 / -1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    background: linear-gradient(45deg, #f97316, #ec4899);
    padding: 0.75rem;
    border-radius: 0.5rem;
    transform: rotate(3deg);
}

.footer-logo-icon span {
    color: white;
    font-weight: 900;
    font-size: 1.5rem;
}

.footer-logo-text {
    color: white;
}

.footer-logo-title {
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.1em;
}

.footer-logo-subtitle {
    color: #fed7aa;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    max-width: 28rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link.instagram {
    color: #f472b6;
}

.social-link.facebook {
    color: #60a5fa;
}

.social-link.twitter {
    color: #c084fc;
}

.social-link:hover {
    transform: scale(1.1);
}

.footer-links h4 {
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fb923c;
}

.footer-contact h4 {
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.footer-contact-item .contact-icon {
    color: #fb923c;
    font-size: 1rem;
    margin-top: 0.125rem;
}

.footer-contact-item p {
    font-weight: 600;
}

.footer-contact-item p:first-child {
    font-weight: 600;
}

.footer-contact-item p:not(:first-child) {
    font-size: 0.875rem;
}

.footer-snapchat {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.2), rgba(236, 72, 153, 0.2));
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.snapchat-text {
    color: #fb923c;
    font-weight: 900;
    font-size: 0.875rem;
}

.footer-snapchat p:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

.footer-hours {
    background: linear-gradient(45deg, rgba(88, 28, 135, 0.5), rgba(234, 88, 12, 0.5));
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
    margin-bottom: 2rem;
}

.footer-hours h4 {
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    text-align: center;
}

.hours-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
}

.hour-item .day {
    color: #fb923c;
    font-weight: 900;
}

.hour-item .time {
    color: rgba(255, 255, 255, 0.8);
}

.continuous-service {
    text-align: center;
    color: #f472b6;
    font-weight: 900;
    margin-top: 0.75rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.3);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.made-with {
    color: #fb923c;
    font-weight: 600;
    margin-left: 0.5rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #fb923c;
}

.footer-message {
    margin-top: 2rem;
    text-align: center;
}

.footer-badge {
    display: inline-block;
    background: linear-gradient(45deg, #f97316, #ec4899);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    transform: rotate(-1deg);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .hours-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
    }
}

/* Google Maps Embed (responsive) */
.map-wrapper{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}
.map-wrapper iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
@media (min-width:768px){
  .map-wrapper{ aspect-ratio:21/9; }
}

/* Empêcher les colonnes menu de forcer la même hauteur */
.menu-grid {
  align-items: start;   /* chaque carte garde sa hauteur */
}

.menu-card {
  height: auto;         /* plus de hauteur forcée */
}
