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

:root {
    --navy: #1a2332;
    --gold: #c9a961;
    --cream: #f5f1eb;
    --white: #ffffff;
    --dark: #0d1117;
    --warm-gray: #8b8680;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--navy);
    background: var(--cream);
    line-height: 1.6;
}

/* ── Navigation ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.logo span {
    color: var(--gold);
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

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

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

/* ── Hero Section ── */
.hero {
    height: 100vh;
    background: url('img/baibai_hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(201, 169, 97, 0.15) 0%, transparent 50%);
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-cta {
    position: absolute;
    bottom: 5rem;          /* por encima del scroll-indicator */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    white-space: nowrap;
}


/* styles.css — dentro del @media (max-width: 768px) existente */
@media (max-width: 768px) {
    .hero {
        background:url('img/baibai_hero-mobile2.jpg') center/cover;
    }
}

/* ── Buttons ── */
.btn {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

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

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

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

/* ── Scroll Indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40%                      { transform: translateX(-50%) translateY(-10px); }
    60%                      { transform: translateX(-50%) translateY(-5px); }
}

/* ── About Section ── */
.about {
    padding: 8rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.about-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}

.about-images img:first-child {
    grid-column: span 2;
    height: 350px;
}

.about-images::after {
    content: 'IBIZA';
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(201, 169, 97, 0.1);
    z-index: -1;
}

.about-content {
    padding-right: 3rem;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text {
    color: var(--warm-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4b87a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--navy);
}

.feature h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.feature p {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

/* ── Menu Section ── */
.menu {
    background: var(--navy);
    padding: 8rem 5%;
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
}

.menu-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.menu h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.menu-subtitle {
    color: var(--warm-gray);
    font-size: 1.1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.menu-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-category:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    gap: 1rem;
}

.menu-item:last-child {
    margin-bottom: 0;
}

.menu-item h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.menu-item p {
    color: var(--warm-gray);
    font-size: 0.85rem;
}

.menu-item .price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

/* ── Specialties ── */
.specialties {
    padding: 8rem 5%;
    background: var(--cream);
}

.specialties-header {
    text-align: center;
    margin-bottom: 4rem;
}

.specialties h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.specialty-card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.specialty-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.specialty-card:hover img {
    transform: scale(1.1);
}

.specialty-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(13, 17, 23, 0.9) 0%, transparent 100%);
}

.specialty-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 1;
}

.specialty-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.specialty-content p {
    color: var(--cream);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ── Reviews ── */
.reviews {
    padding: 8rem 5%;
    background: var(--navy);
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
}

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

.review-card {
    text-align: center;
    padding: 2rem;
}

.review-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
}

.review-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--cream);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.review-author {
    color: var(--gold);
    font-weight: 600;
}

.review-source {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.reviews-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-nav button.active {
    background: var(--gold);
}

/* ── Info Section ── */
.info {
    padding: 8rem 5%;
    background: var(--cream);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4b87a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--navy);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--navy);
}

/* ── Social Section ── */
.social {
    padding: 6rem 5%;
    background: var(--navy);
    text-align: center;
}

.social h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.social-subtitle {
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ── Footer ── */
footer {
    background: var(--dark);
    padding: 3rem 5%;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--gold);
}

footer p {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

/* ── Mobile Menu ── */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-right: 0;
    }

    .about-images::after {
        display: none;
    }
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

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

    .about h2,
    .menu h2,
    .specialties h2,
    .reviews h2 {
        font-size: 2rem;
    }

    .review-text {
        font-size: 1.2rem;
    }
}
