:root {
    --primary-color: #ff9a9e;
    --primary-dark: #ff7b81;
    --secondary-color: #fecfef;
    --bg-color: #fff9fa;
    --text-color: #4a4a4a;
    --text-light: #7a7a7a;
    --card-bg: #ffffff;
    --accent: #ffcc70;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cinnamon', 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Robin', 'Playfair Display', serif;
    color: #2c2c2c;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.logo img {
    height: 90px;
    object-fit: contain;
}

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

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

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5% 2rem;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-content h1 span {
    color: #ffcfd1;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 154, 158, 0.3);
    text-shadow: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 154, 158, 0.4);
}

.small-text {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.small-text a {
    color: #ffcfd1;
    text-decoration: none;
    font-weight: 600;
}

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* About Section */
.about-section {
    padding: 6rem 5%;
    background-color: white;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-illustrations {
    flex: 1;
    display: flex;
    justify-content: center;
}

.floating-img {
    max-width: 100%;
    width: 400px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.floating-img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Menu Section */
.menu-section {
    padding: 6rem 5%;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.section-title span {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.menu-category {
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.menu-category h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.menu-category h3 span {
    font-size: 1.2rem;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.category-desc {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.02);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.menu-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.menu-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.menu-item .price {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

/* Mentor Section */
.mentor-section {
    padding: 6rem 5%;
    background-color: #fff4e6;
}

.mentor-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row-reverse;
}

.mentor-text {
    flex: 1;
}

.mentor-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #e68a00;
}

.mentor-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e68a00;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #cc7a00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 138, 0, 0.3);
}

.mentor-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mentor-img img {
    max-width: 100%;
    width: 400px;
    animation: bounce 4s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Footer */
.footer {
    padding: 6rem 5% 3rem;
    background-color: white;
    text-align: center;
    position: relative;
    border-top: 1px solid #f0f0f0;
}

.footer-illustration {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-whatsapp {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.socials {
    margin-bottom: 2rem;
}

.socials a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: 2px solid #eee;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.socials a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.closing {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-style: italic;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding-top: 8rem;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .about-grid, .mentor-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}
