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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

:root {
    --bordo: #8A2324;
    --bege: #FFF0CF;
}

/* ============ LOADING SCREEN ============ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bordo);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: auto;
    height: 70px;
    max-width: 80%;
    margin-bottom: 2rem;
    animation: logoFadeIn 1.5s ease-in-out;
}

@media (min-width: 768px) {
    .loading-logo {
        height: 100px;
        max-width: 500px;
    }
}

.loading-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bege);
    text-align: center;
    padding: 0 2rem;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid var(--bege);
    width: 0;
    animation: typing 2s steps(44, end) 1.5s forwards, blinkCursor 0.75s step-end infinite;
}

@media (min-width: 768px) {
    .loading-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 500px) {
    .loading-text {
        white-space: normal;
        border-right: none;
        width: auto;
        animation: textFadeIn 1.5s ease-in-out 1.5s both;
    }
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blinkCursor {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--bege);
    }
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(138, 35, 36, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 240, 207, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-header:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-type {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-type-main {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--bege);
    letter-spacing: -0.5px;
}

.logo-type-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 240, 207, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.nav {
    display: none;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    color: rgba(255, 240, 207, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bege);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--bege);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: var(--bege);
    color: var(--bordo);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 240, 207, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 240, 207, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--bege);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    background: var(--bordo);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255,255,255,0.03) 35px,
        rgba(255,255,255,0.03) 70px
    );
    opacity: 0.5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0 4rem 0;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        padding: 0 0 4rem 0;
        margin-top: -10rem;
    }
}

/* Left Column */
.hero-left {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-left {
        text-align: left;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 240, 207, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 240, 207, 0.3);
    color: var(--bege);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--bege);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bege);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 4.25rem; }
}

.highlight {
    color: white;
}

.subheadline {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 240, 207, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .subheadline {
        font-size: 1.25rem;
        margin-left: 0;
    }
}

.subheadline strong {
    font-weight: 700;
    color: white;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-wrapper {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .cta-wrapper {
        justify-content: flex-start;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: white;
    color: var(--bordo);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background: var(--bege);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 240, 207, 0.3);
}

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

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

.btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: rgba(255, 240, 207, 0.8);
    font-size: 0.875rem;
    padding-top: 1.5rem;
}

@media (min-width: 1024px) {
    .social-proof {
        justify-content: flex-start;
    }
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star {
    width: 20px;
    height: 20px;
    color: #FFC107;
}

.divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 240, 207, 0.3);
}

/* Video */
.video-wrapper {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    border: 4px solid rgba(255, 240, 207, 0.2);
    background: rgba(138, 35, 36, 0.5);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.blob-1 {
    width: 200px;
    height: 200px;
    background: rgba(255, 240, 207, 0.15);
    bottom: -50px;
    right: -50px;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    top: -50px;
    left: -50px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(138, 35, 36, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

/* ============ GALLERY SECTION ============ */
.gallery-section {
    padding: 6rem 2rem;
    background: var(--bordo);
    overflow: hidden;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255,255,255,0.03) 35px,
        rgba(255,255,255,0.03) 70px
    );
    opacity: 0.5;
}

.gallery-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .gallery-content {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Carousel */
.carousel-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(138, 35, 36, 0.2);
    aspect-ratio: 3/4;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .carousel-container {
        margin: 0;
    }
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

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

.carousel-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 1.5rem;
}

.carousel-arrow.next {
    right: 1.5rem;
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--bordo);
}

/* Gallery Text */
.gallery-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .gallery-text {
        text-align: left;
    }
}

.gallery-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bege);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bege);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-title {
        font-size: 3rem;
    }
}

.gallery-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 240, 207, 0.9);
    margin-bottom: 2.5rem;
}

.gallery-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--bordo);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.gallery-cta:hover {
    background: var(--bege);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 240, 207, 0.3);
}

.gallery-cta svg {
    width: 24px;
    height: 24px;
}

/* ============ CHEF SECTION ============ */
.chef-section {
    padding: 6rem 2rem;
    background: var(--bordo);
    overflow: hidden;
    position: relative;
}

.chef-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255,255,255,0.03) 35px,
        rgba(255,255,255,0.03) 70px
    );
    opacity: 0.5;
}

.chef-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .chef-content {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Chef Text */
.chef-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .chef-text {
        text-align: left;
    }
}

.chef-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bege);
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .chef-title {
        font-size: 3rem;
    }
}

.chef-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 240, 207, 0.9);
    margin-bottom: 1.5rem;
}

.chef-signature {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bege);
    font-style: italic;
    margin-top: 2rem;
}

/* Chef Video */
.chef-video-wrapper {
    position: relative;
    order: -1;
}

@media (min-width: 1024px) {
    .chef-video-wrapper {
        order: 0;
    }
}

.chef-video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(138, 35, 36, 0.2);
    aspect-ratio: 9/16;
    max-width: 400px;
    margin: 0 auto;
    background: #f5f5f5;
}

@media (min-width: 1024px) {
    .chef-video-container {
        margin: 0;
    }
}

.chef-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chef-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 35, 36, 0.3) 0%, rgba(138, 35, 36, 0.5) 100%);
    color: rgba(255, 240, 207, 0.7);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 2rem;
    border: 2px solid rgba(255, 240, 207, 0.2);
}

/* ============ DELIVERY SECTION ============ */
.delivery-section {
    padding: 6rem 2rem;
    background: var(--bordo);
    overflow: hidden;
    position: relative;
}

.delivery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255,255,255,0.03) 35px,
        rgba(255,255,255,0.03) 70px
    );
    opacity: 0.5;
}

.delivery-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .delivery-content {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Delivery Text & Image */
.delivery-left {
    text-align: center;
}

@media (min-width: 1024px) {
    .delivery-left {
        text-align: left;
    }
}

.delivery-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bege);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.delivery-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bege);
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .delivery-title {
        font-size: 3rem;
    }
}

.delivery-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 240, 207, 0.9);
    margin-bottom: 2.5rem;
}

.delivery-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
}

@media (min-width: 1024px) {
    .delivery-image {
        margin: 0;
    }
}

/* Map */
.delivery-map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(138, 35, 36, 0.15);
}

@media (min-width: 768px) {
    .delivery-map-container {
        height: 500px;
    }
}

.delivery-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============ SECTIONS PREVIEW ============ */
.section-preview {
    padding: 6rem 2rem;
    background: #fff;
    text-align: center;
}

.section-preview h2 {
    font-size: 2.5rem;
    color: var(--bordo);
    margin-bottom: 1rem;
}

.section-preview p {
    color: #666;
    font-size: 1.125rem;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--bordo);
    color: var(--bege);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer p, .footer a {
    color: rgba(255, 240, 207, 0.8);
    text-decoration: none;
    line-height: 1.8;
}

.footer a:hover {
    color: var(--bege);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 240, 207, 0.2);
    font-size: 0.875rem;
    color: rgba(255, 240, 207, 0.6);
}

/* ============ FLOATING WHATSAPP ============ */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-btn {
    position: relative;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    color: white;
}

.whatsapp-ping {
    position: absolute;
    inset: 0;
    background: #25D366;
    border-radius: 50%;
    opacity: 0.7;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}
