html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for sticky header */
}

:root {
    --primary-brown: #2C1E16;
    --dark-brown: #1A0F0A;
    --cream: #FDF3E3;
    --cream-dark: #E6D5C0;
    --black: #000000;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

/* Elemento Flotante */
.floating-date {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    width: 120px;
    pointer-events: none;
    animation: floatSubtle 3s ease-in-out infinite;
    filter: drop-shadow(2px 4px 15px rgba(0, 0, 0, 0.4));
}

.floating-date img {
    width: 100%;
    height: auto;
}

@keyframes floatSubtle {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}


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

body {
    background-color: var(--dark-brown);
    color: var(--cream);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.italic {
    font-family: var(--font-serif);
    font-style: italic;
}

h1,
h2,
h3,
h4,
.section-title,
.hero-title,
.sculpture-title,
.workshop-name,
.chef-name {
    font-family: var(--font-serif) !important;
    font-style: italic !important;
    font-weight: 400 !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background-color: var(--primary-brown);
    color: var(--cream);
}

.btn-primary:hover {
    background-color: #3d2a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--cream);
    color: var(--cream);
}

.btn-ghost:hover {
    background: var(--cream);
    color: var(--primary-brown);
}

/* SECCIÓN 1: Navigation */
.header {
    background-color: var(--cream);
    color: var(--primary-brown);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.navbar-logo {
    height: 50px;
    width: auto;
    display: block;
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.3));
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--dark-brown);
    opacity: 0.7;
}

.nav-menu-cta {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-brown);
    cursor: pointer;
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--cream);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-menu-cta {
        display: block;
        padding-top: 10px;
        border-top: 1px solid rgba(44, 30, 22, 0.1);
        width: 100%;
    }

    .nav-menu-cta .btn {
        width: 100%;
        background-color: var(--primary-brown);
        color: var(--cream);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

/* SECCIÓN 2: Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 15, 10, 0.4), rgba(26, 15, 10, 0.4)), url('assets/Hero/slider1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    width: 100%;
    padding: 0 40px;
    gap: 100px;
}

.hero-left {
    flex: 1;
}

.logo-placeholder {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-style: italic;
    line-height: 1.1;
    color: var(--cream);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--cream);
}

.hero-date {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--cream-dark);
    margin-top: -10px;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.cta-subtext {
    font-size: 0.8rem;
    max-width: 150px;
    opacity: 0.8;
}

.hero-pagination {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--cream);
    border-radius: 50%;
}

.dot.active {
    background-color: var(--cream);
}

/* SECCIÓN 3: Countdown */
.countdown-section {
    background: linear-gradient(rgba(26, 15, 10, 0.75), rgba(26, 15, 10, 0.75)), url('assets/img/fondo.jpg') center/cover;
    padding: 30px 0;
}

.countdown-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.countdown-header {
    margin-bottom: 25px;
}

.countdown-date {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 5px;
}

.countdown-title {
    font-size: 2.2rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.numbers {
    font-family: var(--font-sans);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

.label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 10px;
}

.separator {
    font-size: 4rem;
    line-height: 1;
}

/* SECCIÓN 4: Chefs */
.chefs-section {
    background: linear-gradient(rgba(26, 15, 10, 0.8), rgba(26, 15, 10, 0.8)), url('assets/img/fondo.jpg') center/cover;
    padding: 100px 0;
}

.chefs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 0 20px;
    gap: 60px;
}

.chefs-intro {
    flex: 0 0 30%;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.chefs-carousel-wrapper {
    flex: 0 0 70%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.chefs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex-grow: 1;
}

.chef-card {
    background-color: var(--cream);
    color: var(--primary-brown);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.chef-card:hover {
    transform: translateY(-5px);
}

.chef-card {
    background-color: var(--cream);
    color: var(--primary-brown);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    margin-top: 40px;
    /* Space for popping out image */
}


.chef-img-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background-image: url('assets/img/chef1.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    /* overflow: visible; is implied by default, but we ensure it's not hidden */
}

.chef-img-placeholder img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 115%;
    height: auto;
    max-height: 130%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.chef-card:hover .chef-img-placeholder img {
    transform: translateX(-50%) translateY(-10px) scale(1.05);
}


.chef-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.chef-title {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    color: var(--primary-brown);
    font-style: italic;
}

.carousel-btn {
    background: transparent;
    border: 1px solid var(--cream);
    color: var(--cream);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

/* SECCIÓN 5: Sculpture */
.sculpture-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: var(--cream);
}

.sculpture-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sculpture-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sculpture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 15, 10, 0.7), rgba(26, 15, 10, 0.8));
    z-index: 1;
}

.sculpture-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 80px;
    position: relative;
    z-index: 2;
    /* Above overlay and video */
}

.sculpture-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.circle-placeholder.sculpture-img {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/1;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px solid rgba(253, 243, 227, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 0;
}

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

.sculpture-right {
    flex: 1;
}

.sponsor-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.mini-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--cream-dark);
}

.sculpture-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.sculpture-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* SECCIÓN 6: Workshops */
.workshops-section {
    background-color: var(--primary-brown);
}

.workshops-split {
    display: flex;
    min-height: 600px;
}

.workshops-left {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.workshops-right {
    flex: 0 0 60%;
    background: linear-gradient(to right, var(--primary-brown) 0%, rgba(26, 15, 10, 0.4) 100%), url('https://images.unsplash.com/photo-1547240103-f1624fc4cd30?auto=format&fit=crop&q=80&w=2670') center/cover;
    display: flex;
    align-items: center;
    padding: 60px;
}

.workshops-grid {
    display: flex;
    gap: 20px;
    width: 100%;
}

.workshop-card {
    background: linear-gradient(rgba(253, 243, 227, 0.85), rgba(253, 243, 227, 0.85)), url('assets/img/fondotalleres.jpg') center/cover no-repeat;
    color: var(--primary-brown);
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.workshop-card:hover {
    transform: translateY(-5px);
}

.workshop-img {
    height: 180px;
    background-color: #d2c1b0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.workshop-info {
    padding: 20px;
}

.workshop-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.workshop-chef {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.8rem;
    background-color: var(--primary-brown);
    color: var(--cream);
    width: 100%;
    text-align: center;
}

/* SECCIÓN 7: Activities */
.activities-section {
    background: linear-gradient(rgba(26, 15, 10, 0.9), rgba(26, 15, 10, 0.9)), url('https://images.unsplash.com/photo-1481391032119-d899589d7506?auto=format&fit=crop&q=80&w=2674') center/cover;
    padding: 100px 20px;
    text-align: center;
}

.activities-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.activity-item {
    text-align: center;
}

.activity-img {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    background-color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary-brown);
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.activity-item:hover .activity-img {
    transform: scale(1.1) rotate(5deg);
    background-color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.activity-item p {
    font-weight: 600;
}

/* SECCIÓN 8: Exhibitors */
.exhibitors-section {
    background-color: var(--cream);
    color: var(--primary-brown);
    padding: 100px 20px;
    text-align: center;
}

.section-subtitle {
    margin-top: 10px;
    font-size: 1.1rem;
    color: var(--primary-brown);
    opacity: 0.8;
}

.exhibitors-grid {
    max-width: 1200px;
    margin: 40px auto 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.exhibitor-card {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.exhibitor-img-placeholder {
    height: 200px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.exhibitor-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exhibitor-info {
    padding: 20px;
    text-align: center;
}

.exhibitor-info h4 {
    margin-bottom: 10px;
    font-weight: 700;
}

.exhibitor-info a {
    font-size: 0.85rem;
    color: #ce0071;
    /* Instagram-ish colors or just brown */
    color: var(--primary-brown);
    font-weight: 600;
}

.exhibitors-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-cta {
    background-color: var(--primary-brown) !important;
    border: 2px solid var(--cream-dark) !important;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: pulseCTA 2s infinite;
}

.btn-cta:hover {
    background-color: var(--dark-brown) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
}

@keyframes pulseCTA {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 213, 192, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(230, 213, 192, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 213, 192, 0);
    }
}

.pill {
    padding: 15px 40px;
}

/* SECCIÓN 9: Collaborators */
.collaborators-section {
    background-color: white;
    padding: 100px 20px;
    text-align: center;
    color: var(--primary-brown);
}

.collaborators-grid {
    max-width: 1000px;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.collab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
}

.collab-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.collab-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.7;
}

.collab-logo {
    height: 50px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.collab-item:nth-child(1) .collab-logo,
.collab-item:nth-child(3) .collab-logo {
    height: 100px;
}

.collab-item:nth-child(2) .collab-logo {
    height: 75px;
}

.collab-logo:hover {
    transform: scale(1.1);
}

/* Textured Backgrounds */
.countdown-section,
.activities-section,
.chefs-section {
    background: linear-gradient(rgba(26, 15, 10, 0.92), rgba(26, 15, 10, 0.92)), url('assets/img/fondo.jpg') center/cover;
}

.workshops-section {
    background-color: var(--primary-brown);
}

.workshops-right {
    flex: 0 0 60%;
    background: linear-gradient(to right, var(--primary-brown) 0%, rgba(44, 30, 22, 0.4) 100%), url('assets/img/fondotalleres.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 60px;
}

/* SECCIÓN 8.5: Location */
.location-section {
    padding: 100px 20px;
    background: linear-gradient(rgba(26, 15, 10, 0.95), rgba(26, 15, 10, 0.95)), url('assets/img/fondotalleres.jpg') center/cover no-repeat;
    text-align: center;
}

.location-section .section-subtitle {
    color: var(--cream);
    opacity: 0.9;
}

.location-container {
    max-width: 1000px;
    margin: 50px auto 0;
}

.map-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(253, 243, 227, 0.1);
    margin-bottom: 40px;
}

.map-wrapper iframe {
    display: block;
}

.location-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.location-actions .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    padding: 15px 35px;
}

.header {
    background-color: rgba(253, 243, 227, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Section Title Refinement */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--cream-dark);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Card Hover Effects */
.chef-card,
.workshop-card,
.exhibitor-card {
    border: 1px solid rgba(253, 243, 227, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.chef-card:hover,
.workshop-card:hover,
.exhibitor-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--cream-dark);
}

.chef-social {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--primary-brown);
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.chef-social:hover {
    color: var(--cream-dark);
    transform: translateY(-2px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-brown);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-brown);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cream-dark);
}

/* Countdown Typography */
.numbers {
    font-family: var(--font-serif);
    font-style: italic;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #FDF3E3, #D2C1B0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* MAIN FOOTER */
.main-footer {
    background-color: var(--primary-brown);
    color: var(--cream);
    padding: 80px 20px 20px;
    border-top: 1px solid rgba(253, 243, 227, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 350px;
    margin-bottom: 30px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.instagram-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer-links h4,
.footer-info h4 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--cream-dark);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 1rem;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--cream-dark);
    padding-left: 5px;
}

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

.ag-link {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact-item:hover {
    opacity: 1;
    color: var(--cream-dark);
}

.footer-contact-item i {
    width: 20px;
    text-align: center;
}

.footer-ag-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.ag-link span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(253, 243, 227, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

.developer {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.dev-logo {
    height: 25px;
    width: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 1024px) {

    .hero-content,
    .sculpture-container,
    .chefs-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-left,
    .hero-right,
    .sculpture-left,
    .sculpture-right,
    .chefs-intro,
    .chefs-carousel-wrapper {
        flex: 1 1 100%;
        width: 100%;
    }

    .sponsor-badge {
        justify-content: center;
    }

    .hero-cta,
    .hero-pagination {
        justify-content: center;
    }

    .workshops-split {
        flex-direction: column;
    }

    .workshops-left,
    .workshops-right {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .numbers {
        font-size: 3rem;
    }

    .countdown-timer {
        gap: 10px;
    }

    .chefs-grid,
    .activities-grid,
    .exhibitors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workshops-grid {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .logo-placeholder {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .floating-date {
        width: 80px;
        top: 70px;
        right: 10px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-date {
        font-size: 1.4rem;
    }

    .sculpture-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .numbers {
        font-size: 2.5rem;
    }

    .separator {
        font-size: 2rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .nav-container {
        padding: 10px 15px;
    }

    .navbar-logo {
        height: 40px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .countdown-timer {
        gap: 5px;
    }

    .nav-cta {
        display: none;
        /* Hide CTA on mobile to save space, or keep it in the menu */
    }

    .chefs-grid,
    .activities-grid,
    .exhibitors-grid {
        grid-template-columns: 1fr;
    }

    .collaborators-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center;
    }

    .collab-item {
        min-width: unset;
        width: 100%;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 15, 10, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--cream);
    color: var(--primary-brown);
    padding: 40px;
    border-radius: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header i {
    font-size: 4rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
    opacity: 0.8;
}

.modal-content h3 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.modal-content p {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.modal-content .close-modal {
    width: 100%;
    padding: 15px;
}

/* SECCIN 8.8: Sponsor Form */
.sponsor-form-section {
    background: linear-gradient(rgba(26, 15, 10, 0.8), rgba(26, 15, 10, 0.9)), url('assets/img/fondo.jpg') center/cover;
    padding: 100px 20px;
}

.sponsor-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(253, 243, 227, 0.05);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(253, 243, 227, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.sponsor-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream-dark);
}

.form-group input,
.form-group textarea {
    background: rgba(253, 243, 227, 0.08);
    border: 1px solid rgba(253, 243, 227, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    color: var(--cream);
    font-family: var(--font-sans);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(253, 243, 227, 0.15);
    border-color: var(--cream);
    box-shadow: 0 0 15px rgba(253, 243, 227, 0.1);
}

.sponsor-btn {
    grid-column: span 2;
    margin-top: 20px;
    padding: 18px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    background-color: var(--cream);
    color: var(--primary-brown);
}

.sponsor-btn:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 243, 227, 0.2);
}

@media (max-width: 768px) {
    .sponsor-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .sponsor-btn {
        grid-column: span 1;
    }

    .sponsor-container {
        padding: 40px 20px;
    }
}

/* Category Filters Styles */
.filters-container {
    max-width: 900px;
    margin: 1.5rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 1rem;
    animation: fadeIn 1s ease-out;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(44, 30, 22, 0.15);
    background: white;
    color: var(--primary-brown);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--cream-dark);
    border-color: var(--primary-brown);
}

.filter-btn.active {
    background: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
    box-shadow: 0 4px 10px rgba(44, 30, 22, 0.2);
}

@media (max-width: 768px) {
    .filters-container {
        gap: 8px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

.filter-btn.featured {
    border: 2px solid var(--primary-brown);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.filter-btn.featured::after {
    content: '★';
    margin-left: 5px;
    font-size: 0.8rem;
    color: #FFD700;
    /* Gold */
}

.filter-btn.featured:not(.active) {
    background: #fdf3e3;
    color: var(--primary-brown);
}