/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #3d2c2c;
    background-color: #faf6f1;
}

/* === Welcome Section (Hero) === */
.welcome-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #faf6f1;
    position: relative;
    overflow: hidden;
}

.welcome-content {
    text-align: center;
    padding: 40px 20px;
}

/* Coffee Cup */
.coffee-cup-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.steam-container {
    margin-bottom: -8px;
}

.steam-svg {
    opacity: 0.7;
}

.steam-line {
    animation: steamRise 3s ease-in-out infinite;
    opacity: 0;
}

.steam-1 {
    animation-delay: 0s;
}

.steam-2 {
    animation-delay: 0.8s;
}

.steam-3 {
    animation-delay: 1.6s;
}

@keyframes steamRise {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    20% {
        opacity: 0.6;
    }
    60% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-15px);
    }
}

.coffee-cup {
    position: relative;
    display: inline-block;
}

.cup-body {
    width: 48px;
    height: 40px;
    border: 3px solid #6f4e37;
    border-radius: 0 0 14px 14px;
    background: transparent;
    position: relative;
}

.cup-handle {
    position: absolute;
    right: -14px;
    top: 6px;
    width: 14px;
    height: 20px;
    border: 3px solid #6f4e37;
    border-left: none;
    border-radius: 0 10px 10px 0;
}

/* Brand Name */
.brand-name {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: #3d2c2c;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.welcome-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #6f4e37;
    margin-bottom: 24px;
}

/* Open Badge */
.open-badge {
    display: inline-block;
    background-color: #d4956b;
    color: #faf6f1;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 24px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* === Menu Section === */
.menu-section {
    background-color: #6f4e37;
    padding: 80px 20px;
}

.menu-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.menu-heading {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #faf6f1;
    margin-bottom: 48px;
}

.menu-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.menu-item {
    background-color: rgba(250, 246, 241, 0.1);
    border: 1px solid rgba(250, 246, 241, 0.2);
    border-radius: 12px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: default;
}

.menu-item:hover {
    background-color: rgba(250, 246, 241, 0.18);
    transform: translateY(-2px);
}

.menu-icon {
    font-size: 1.3rem;
}

.menu-label {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #faf6f1;
    letter-spacing: 0.02em;
}

/* === Conversations Section === */
.conversations-section {
    background-color: #faf6f1;
    padding: 80px 20px 100px;
}

.conversations-inner {
    max-width: 720px;
    margin: 0 auto;
}

.conversations-heading {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #3d2c2c;
    margin-bottom: 48px;
    text-align: center;
}

/* Conversation Card */
.conversation-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(196, 182, 156, 0.12);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.conversation-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.conversation-card:hover {
    box-shadow: 0 4px 20px rgba(196, 182, 156, 0.22);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 8px;
}

.card-topic {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #6f4e37;
}

.card-participants {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    color: #c4b69c;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Coffee Bean Bullet */
.bean-bullet {
    display: inline-block;
    width: 10px;
    height: 6px;
    background-color: #6f4e37;
    border-radius: 50%;
    transform: rotate(-30deg);
}

.card-preview {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #3d2c2c;
    line-height: 1.7;
}

.card-rule {
    margin-top: 20px;
    height: 1px;
    background: linear-gradient(to right, transparent, #c4b69c, transparent);
    opacity: 0.4;
}

.conversation-card:last-child .card-rule {
    display: none;
}

/* === Closing Section (Footer) === */
.closing-section {
    background-color: #3d2c2c;
    padding: 80px 20px;
    text-align: center;
}

.closing-inner {
    max-width: 600px;
    margin: 0 auto;
}

/* Small Coffee Cup in Footer */
.closing-cup {
    display: inline-block;
    position: relative;
    margin-bottom: 24px;
}

.cup-body-small {
    width: 24px;
    height: 20px;
    border: 2px solid #c4b69c;
    border-radius: 0 0 8px 8px;
    position: relative;
}

.cup-handle-small {
    position: absolute;
    right: -9px;
    top: 3px;
    width: 9px;
    height: 12px;
    border: 2px solid #c4b69c;
    border-left: none;
    border-radius: 0 6px 6px 0;
}

.closing-message {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #faf6f1;
    margin-bottom: 20px;
}

.closing-hours {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #c4b69c;
    line-height: 1.8;
}

/* === Responsive === */
@media (max-width: 640px) {
    .brand-name {
        font-size: 2.2rem;
    }

    .menu-heading,
    .conversations-heading {
        font-size: 1.6rem;
    }

    .menu-strip {
        flex-direction: column;
        align-items: center;
    }

    .menu-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .conversation-card {
        padding: 20px 22px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .closing-message {
        font-size: 1.5rem;
    }
}
