/* ============================================
   CAFE PREMIUM STYLES
   Cozy Warm Theme | Coffee Steam Animations
   ============================================ */

:root {
    --cafe-brown: #6b4e3d;
    --cafe-cream: #d4a574;
    --cafe-dark: #3e2723;
}

/* === CAFE HERO COZY === */
.cafe-hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
}

.coffee-beans-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 165, 116, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: beansDrift 40s linear infinite;
}

@keyframes beansDrift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 20px);
    }
}

.hero-content-cafe {
    text-align: center;
    z-index: 1;
}

.cafe-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--cafe-cream);
    margin-bottom: 2rem;
    font-weight: 700;
}

.cafe-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.warm-text {
    color: var(--cafe-cream);
    font-style: italic;
}

.cafe-desc {
    font-size: 1.2rem;
    color: #9a8376;
    margin-bottom: 3rem;
}

/* Coffee Cup Animation */
.coffee-cup-animation {
    margin: 3rem 0;
}

.cup {
    position: relative;
    display: inline-block;
}

.cup i {
    font-size: 5rem;
    color: var(--cafe-brown);
}

.steam-particle {
    position: absolute;
    width: 4px;
    height: 40px;
    background: linear-gradient(to top, rgba(212, 165, 116, 0.8), transparent);
    border-radius: 50%;
    animation: steamRise 3s ease-in-out infinite;
}

.steam-particle:nth-child(1) {
    left: 35%;
    animation-delay: 0s;
}

.steam-particle:nth-child(2) {
    left: 50%;
    animation-delay: 0.5s;
}

.steam-particle:nth-child(3) {
    left: 65%;
    animation-delay: 1s;
}

.steam-particle:nth-child(4) {
    left: 42%;
    animation-delay: 1.5s;
}

@keyframes steamRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-80px) scale(0.5);
        opacity: 0;
    }
}

.cafe-features-quick {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.quick-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--cafe-cream);
}

.quick-feature i {
    font-size: 2rem;
}

.quick-feature span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* === MENU PREMIUM === */
.menu-section-premium {
    padding: 8rem 5%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, transparent 100%);
}

.menu-container-cafe {
    max-width: 1400px;
    margin: 0 auto;
}

.menu-header-cafe {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title-cafe {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-desc-cafe {
    font-size: 1.1rem;
    color: #9a8376;
    font-style: italic;
}

.menu-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.menu-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-card-premium:hover {
    transform: translateY(-15px);
    border-color: var(--cafe-cream);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.2);
}

.menu-card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.coffee-img {
    background: linear-gradient(135deg, #4b3621 0%, #2c1810 100%);
}

.cake-img {
    background: linear-gradient(135deg, #6b4e3d 0%, #4b3621 100%);
}

.snack-img {
    background: linear-gradient(135deg, #5a8f5a 0%, #3e6b3e 100%);
}

.pastry-img {
    background: linear-gradient(135deg, #8b6f47 0%, #6b4e3d 100%);
}

.menu-card-image i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.steam-mini {
    position: absolute;
    width: 3px;
    height: 30px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 50%;
    animation: steamMini 2s ease-in-out infinite;
}

.steam-mini:nth-child(2) {
    left: 45%;
    animation-delay: 0.5s;
}

.steam-mini:nth-child(3) {
    left: 55%;
    animation-delay: 1s;
}

@keyframes steamMini {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-40px);
        opacity: 0;
    }
}

.menu-card-content {
    padding: 2rem;
    position: relative;
}

.menu-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--cafe-cream);
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.menu-badge.healthy {
    background: #5a8f5a;
    color: #fff;
}

.menu-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.menu-card-content p {
    color: #9a8376;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cafe-cream);
    font-family: 'Space Grotesk', monospace;
}

.btn-cafe-order {
    padding: 0.7rem 1.8rem;
    background: rgba(212, 165, 116, 0.1);
    border: 2px solid var(--cafe-cream);
    color: var(--cafe-cream);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-cafe-order:hover {
    background: var(--cafe-cream);
    color: #000;
}

/* === SPACE SECTION === */
.space-section {
    padding: 6rem 5%;
    background: #0a0a0a;
}

.space-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.space-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.space-zone {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: 0.3s;
}

.space-zone:hover {
    border-color: var(--cafe-cream);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.1);
}

.zone-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.zone-header i {
    font-size: 2rem;
    color: var(--cafe-cream);
}

.zone-header h3 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.zone-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.zone-features span {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #9a8376;
}

.zone-features i {
    color: var(--cafe-cream);
    font-size: 1.1rem;
    width: 20px;
}

.zone-capacity {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--cafe-cream);
}

/* === HAPPY HOUR PREMIUM === */
.happy-hour-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.03) 0%, transparent 100%);
}

.happy-hour-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.code-window-cafe {
    background: #1a1a1a;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.code-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
}

.code-dots span:nth-child(1) {
    background: #ff5f56;
}

.code-dots span:nth-child(2) {
    background: #ffbd2e;
}

.code-dots span:nth-child(3) {
    background: #27c93f;
}

.code-content-cafe {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    line-height: 2;
}

.code-line {
    display: block;
    color: #ccc;
}

.code-line.indent {
    padding-left: 2rem;
}

.keyword {
    color: var(--cafe-cream);
    font-weight: 700;
}

.hh-icon {
    font-size: 3rem;
    color: var(--cafe-cream);
    margin-bottom: 1rem;
}

.hh-content-cafe h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.hh-time {
    font-size: 1.2rem;
    color: #9a8376;
    margin-bottom: 1.5rem;
}

.hh-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hh-perks {
    list-style: none;
    margin: 2rem 0;
}

.hh-perks li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #ccc;
}

.hh-perks i {
    color: var(--cafe-cream);
}

.btn-cafe-primary {
    padding: 1rem 2.5rem;
    background: var(--cafe-cream);
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cafe-primary:hover {
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.5);
    transform: translateY(-2px);
}

/* === INFO SECTION === */
.info-section-cafe {
    padding: 6rem 5%;
    background: #000;
}

.info-container-cafe {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.info-card-cafe {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: 0.3s;
}

.info-card-cafe:hover {
    border-color: var(--cafe-cream);
    transform: translateY(-10px);
}

.info-card-cafe i {
    font-size: 2.5rem;
    color: var(--cafe-cream);
    margin-bottom: 1.5rem;
}

.info-card-cafe h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.info-card-cafe p {
    color: #9a8376;
    line-height: 1.8;
    margin: 0.5rem 0;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .cafe-title {
        font-size: 4rem;
    }

    .section-title-cafe {
        font-size: 2.5rem;
    }

    .menu-grid-premium,
    .space-grid,
    .happy-hour-container,
    .info-container-cafe {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cafe-title {
        font-size: 3rem;
    }

    .section-title-cafe {
        font-size: 2rem;
    }

    .cafe-features-quick {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .menu-card-content {
        padding: 1.5rem;
    }
}