:root {
    --primary: #ff4d6d;
    /* Caraz Pink/Red */
    --primary-glow: rgba(255, 77, 109, 0.3);
    --bg-light: #fdfcfb;
    /* Cream/Off-white */
    --text-dark: #2d2d2d;
    --text-dim: #6c757d;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor to use custom one */
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 15px var(--primary-glow);
    transition: transform 0.1s ease;
    display: none;
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
    }
}

/* Noise effect */
.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.15;
    pointer-events: none;
    z-index: 100;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    background: rgba(253, 252, 251, 0.8);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-img-card {
    width: 450px;
    height: 550px;
}

.main-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Buttons */
.btn {
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    margin-right: 15px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-secondary {
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
}

/* Menu Section */
.menu-section {
    padding: 120px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.menu-item .item-img {
    height: 280px;
    margin-bottom: 25px;
}

.menu-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.item-info {
    padding: 0 10px;
}

.item-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.item-info p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.price {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.4rem;
}

/* About Section */
.about-section {
    padding: 120px 10%;
    background: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-dim);
}

.about-gallery {
    flex: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact & Map Section */
.contact-section {
    padding: 120px 10%;
    background: var(--bg-light);
}

.contact-layout {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    flex: 1;
    padding: 60px;
}

.map-container {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

#contact-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact-form input,
#contact-form textarea {
    background: #fff;
    border: 1px solid var(--glass-border);
    padding: 18px;
    border-radius: 12px;
    color: var(--text-dark);
    outline: none;
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: var(--primary);
}

/* Footer */
footer {
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    background: #fff;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    letter-spacing: 6px;
}

.socials {
    margin-bottom: 30px;
}

.socials a {
    color: var(--text-dim);
    font-size: 1.8rem;
    margin: 0 20px;
    transition: 0.3s;
}

.socials a:hover {
    color: var(--primary);
    transform: translateY(-5px);
}

/* Animations */
@keyframes emojiFloat {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.emoji {
    position: absolute;
    bottom: -50px;
    font-size: 1.5rem;
    pointer-events: none;
    animation: emojiFloat 6s ease-in infinite;
    z-index: 1;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .contact-layout {
        flex-direction: column;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .main-img-card {
        width: 100%;
        height: 400px;
    }

    .about-container {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}