/* Base layout */
body {
    margin: 0;
    padding: 0;
    background: #FFF8F0;
    color: #2B1A10;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 64px;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255,248,240,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(58,31,27,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 700;
    color: #4B2E19;
    letter-spacing: 0.03em;
}

.navbar-links-desktop {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #4B2E19;
}

.navbar-link {
    position: relative;
    color: #4B2E19;
    text-decoration: none;
    padding: 4px 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.navbar-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #FFC76B;
    transition: width 0.2s ease;
}

.navbar-link:hover {
    color: #A2794A;
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-link:focus {
    outline: 2px solid #FFC76B;
    outline-offset: 2px;
}

/* Mobile nav toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle-bar {
    width: 20px;
    height: 2px;
    background: #4B2E19;
    border-radius: 999px;
}

.navbar-links-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #4B2E19;
    padding-top: 12px;
}

.navbar-links-mobile.active {
    display: flex;
}

/* Hero section */
.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 48px 0 40px;
    background: linear-gradient(135deg, #4B2E19 0%, #3A1F1B 40%, #A2794A 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    color: #FFF8F0;
}

.hero-content {
    padding: 32px 32px 40px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-heading {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    color: #FFF8F0;
}

.hero-subheading {
    font-size: 16px;
    max-width: 520px;
    color: #FDEAD5;
    margin: 0;
}

.hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.hero-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255,199,107,0.16);
    color: #FFE0B2;
    border: 1px solid rgba(255,199,107,0.4);
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 16px;
}

.primary-button {
    padding: 12px 24px;
    min-height: 44px;
    background: #FFC76B;
    color: #3A1F1B;
    border: 1px solid #E0A95A;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    transition: all 0.2s ease;
    text-decoration: none;
}

.primary-button:hover {
    background: #FFD48A;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

.primary-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.primary-button:focus {
    outline: 2px solid #FFE0B2;
    outline-offset: 2px;
}

.primary-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.secondary-button {
    padding: 11px 22px;
    min-height: 44px;
    background: transparent;
    color: #FFE0B2;
    border: 1px solid rgba(255,224,178,0.7);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: all 0.2s ease;
    text-decoration: none;
}

.secondary-button:hover {
    background: rgba(255,224,178,0.12);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.secondary-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.16);
}

.secondary-button:focus {
    outline: 2px solid #FFC76B;
    outline-offset: 2px;
}

.secondary-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.hero-cups-column {
    position: relative;
    height: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 32px;
    z-index: 1;
}

.hero-cup-wrapper {
    position: absolute;
}

.hero-cup-1 {
    top: 18%;
    left: 10%;
}

.hero-cup-2 {
    bottom: 10%;
    right: 4%;
}

.floating-cup-base {
    position: relative;
    width: 180px;
    max-width: 40%;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.45);
    object-fit: cover;
    transform: translate3d(0,0,0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-cup-base:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.55);
}

.floating-cup-1 {
    animation: floatCup1 6s ease-in-out infinite;
}

.floating-cup-2 {
    animation: floatCup2 7s ease-in-out infinite;
}

.cup-steam {
    content: "";
    position: absolute;
    top: -26px;
    left: 50%;
    width: 32px;
    height: 64px;
    transform: translateX(-50%);
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.0) 60%);
    opacity: 0.8;
    filter: blur(2px);
    animation: steamRise 3.5s ease-in-out infinite;
    pointer-events: none;
}

.hero-ambient-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 20% 0%, rgba(255,199,107,0.15) 0%, transparent 55%),
                radial-gradient(circle at 80% 100%, rgba(255,255,255,0.08) 0%, transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

/* Sections */
.section-wrapper {
    padding: 40px 0;
    border-bottom: 1px solid rgba(58,31,27,0.06);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 28px;
    line-height: 1.25;
    color: #3A1F1B;
    margin: 0;
}

.section-subtitle {
    font-size: 14px;
    color: #7A5A4A;
    max-width: 420px;
    margin: 0;
}

/* Menu cards */
.menu-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 24px;
    align-items: stretch;
    margin-top: 8px;
}

.menu-card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 20px 18px 18px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(58,31,27,0.06);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    border-color: rgba(75,46,25,0.35);
}

.menu-card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
}

.menu-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #3A1F1B;
    margin: 0;
}

.menu-item-price {
    font-size: 14px;
    font-weight: 600;
    color: #A2794A;
    margin: 0;
}

.menu-item-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    color: #4B2E19;
    background: rgba(255,199,107,0.25);
    border: 1px solid rgba(255,199,107,0.7);
    margin-top: 4px;
}

.menu-item-description {
    font-size: 13px;
    color: #5C4337;
    margin: 8px 0 0;
    flex: 1 1 auto;
}

.menu-card-footer {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.menu-strength-dots {
    display: flex;
    gap: 4px;
}

.menu-strength-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #CFA490;
    opacity: 0.5;
}

.menu-strength-dot-active {
    opacity: 1;
    background: #804D40;
}

.menu-calories-text {
    font-size: 11px;
    color: #8B6A5A;
}

/* Campus stories card with image */
.menu-card-campus-stories {
    padding: 0;
}

.menu-card-image {
    width: 100%;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.menu-card-campus-content {
    padding: 16px 16px 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Loyalty section */
.loyalty-section {
    padding: 48px 0 40px;
    border-bottom: 1px solid rgba(58,31,27,0.06);
    background: radial-gradient(circle at top left, rgba(255,199,107,0.16) 0%, transparent 55%),
                radial-gradient(circle at bottom right, rgba(128,77,64,0.08) 0%, transparent 55%);
}

.loyalty-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
}

.loyalty-copy-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loyalty-perks-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 8px 16px;
}

.loyalty-perk-item {
    font-size: 14px;
    color: #4B2E19;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.loyalty-perk-bullet {
    margin-top: 4px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #A2794A;
}

.loyalty-card-container {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(75,46,25,0.14);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    max-width: 380px;
    margin-left: auto;
}

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

.loyalty-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #3A1F1B;
    margin: 0;
}

.loyalty-student-tag {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(91,122,128,0.08);
    color: #5B7A80;
    border: 1px solid rgba(91,122,128,0.4);
}

.loyalty-card-subtitle {
    font-size: 13px;
    color: #5C4337;
    margin: 0 0 6px;
}

.loyalty-stamp-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin: 10px 0 12px;
    align-items: stretch;
}

.loyalty-stamp-slot {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 12px;
    border: 1px dashed rgba(75,46,25,0.35);
    background: #FFF8F0;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.loyalty-stamp-slot:hover {
    background: #FFE8C7;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.14);
    border-color: rgba(75,46,25,0.6);
}

.loyalty-stamp-slot:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.loyalty-stamp-slot:focus {
    outline: 2px solid #FFC76B;
    outline-offset: 2px;
}

.loyalty-stamp-slot[disabled] {
    cursor: default;
    opacity: 0.7;
    box-shadow: none;
}

.loyalty-stamp-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #A2794A;
    opacity: 0;
    transform: scale(0.4) rotate(-10deg);
    transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.loyalty-stamp-icon.active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.loyalty-progress-container {
    margin-top: 4px;
    padding: 8px 10px;
    border-radius: 12px;
    background: #FFF3E0;
    border: 1px solid rgba(255,199,107,0.7);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.loyalty-progress-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #7A5A4A;
}

.loyalty-progress-bar-track {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,199,107,0.35);
    overflow: hidden;
    position: relative;
}

.loyalty-progress-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #FFC76B 0%, #A2794A 100%);
    transition: width 0.3s ease;
}

.loyalty-perk-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.loyalty-perk-chip {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(47,133,90,0.08);
    color: #2F855A;
    border: 1px solid rgba(47,133,90,0.4);
}

.loyalty-cta-button {
    margin-top: 12px;
    align-self: flex-end;
    padding: 8px 14px;
    min-height: 0;
    font-size: 12px;
    border-radius: 999px;
    background: #4B2E19;
    color: #FFE0B2;
    border: 1px solid #3A1F1B;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.loyalty-cta-button:hover {
    background: #3A1F1B;
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(0,0,0,0.22);
}

.loyalty-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.loyalty-cta-button:focus {
    outline: 2px solid #FFC76B;
    outline-offset: 2px;
}

.loyalty-cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

/* Form fields */
.form-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: #3A1F1B;
}

.form-helper-text {
    font-size: 11px;
    color: #8B6A5A;
}

.form-error-text {
    font-size: 11px;
    color: #C53030;
    margin-top: 2px;
}

.input-field {
    width: 100%;
    padding: 10px 12px;
    min-height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(58,31,27,0.16);
    background: #FFFFFF;
    color: #2B1A10;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
}

.input-field:hover {
    border-color: rgba(75,46,25,0.45);
}

.input-field:focus {
    border-color: #FFC76B;
    box-shadow: 0 0 0 1px #FFC76B, 0 4px 10px rgba(0,0,0,0.08);
    background: #FFFBF5;
}

.input-field:disabled {
    background: #F3E7DD;
    cursor: not-allowed;
    opacity: 0.7;
}

.textarea-field {
    width: 100%;
    min-height: 96px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(58,31,27,0.16);
    background: #FFFFFF;
    color: #2B1A10;
    font-size: 14px;
    line-height: 1.5;
    box-sizing: border-box;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
}

.textarea-field:hover {
    border-color: rgba(75,46,25,0.45);
}

.textarea-field:focus {
    border-color: #FFC76B;
    box-shadow: 0 0 0 1px #FFC76B, 0 4px 10px rgba(0,0,0,0.08);
    background: #FFFBF5;
}

.textarea-field:disabled {
    background: #F3E7DD;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Generic links */
.link {
    color: #A2794A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
    text-decoration-color: transparent;
}

.link:hover {
    color: #4B2E19;
    text-decoration: underline;
    text-decoration-color: rgba(75,46,25,0.8);
}

.link:focus {
    outline: 2px solid #FFC76B;
    outline-offset: 2px;
}

/* Footer */
.footer {
    margin-top: 40px;
    background: #3A1F1B;
    color: #FFE0B2;
    padding: 24px 16px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 -4px 14px rgba(0,0,0,0.4);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-brand-name {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 18px;
    margin: 0;
    color: #FFF8F0;
}

.footer-text {
    font-size: 13px;
    color: #FDEAD5;
    margin: 0;
}

.footer-university-nod {
    font-size: 12px;
    color: #FFC76B;
    margin-top: 4px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.footer-column-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #FFE0B2;
}

.footer-link {
    display: block;
    font-size: 12px;
    color: #FDEAD5;
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: #FFC76B;
    transform: translateX(2px);
}

.footer-link:focus {
    outline: 2px solid #FFC76B;
    outline-offset: 2px;
}

.footer-bottom-row {
    max-width: 1200px;
    margin: 16px auto 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #FDEAD5;
}

.footer-created-by {
    font-size: 11px;
    color: #FFE0B2;
}

.social-icon-button {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFE0B2;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    margin-left: 6px;
}

.social-icon-button:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
    border-color: #FFC76B;
}

.social-icon-button:focus {
    outline: 2px solid #FFC76B;
    outline-offset: 2px;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal[hidden] {
    display: none;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.modal-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

.modal-dialog {
    background: #FFFFFF;
    border-radius: 18px;
    max-width: 420px;
    width: 100%;
    padding: 20px 20px 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    position: relative;
}

.modal-dialog.visible {
    opacity: 1;
    transform: translateY(0);
}

.modal-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #8B6A5A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.modal-close-button:hover {
    background: rgba(0,0,0,0.04);
    color: #4B2E19;
    transform: scale(1.05);
}

.modal-close-button:focus {
    outline: 2px solid #FFC76B;
    outline-offset: 2px;
}

/* Animations */
@keyframes floatCup1 {
    0% { transform: translate3d(0, 0, 0) rotate(-2deg); }
    50% { transform: translate3d(0, -10px, 0) rotate(1deg); }
    100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
}

@keyframes floatCup2 {
    0% { transform: translate3d(0, 0, 0) rotate(3deg); }
    50% { transform: translate3d(0, -14px, 0) rotate(0deg); }
    100% { transform: translate3d(0, 0, 0) rotate(3deg); }
}

@keyframes steamRise {
    0% { opacity: 0; transform: translate(-50%, 6px) scale(0.8); }
    30% { opacity: 0.9; }
    70% { opacity: 0.4; transform: translate(-50%, -10px) scale(1.05); }
    100% { opacity: 0; transform: translate(-50%, -20px) scale(1.1); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-4px); }
    40% { transform: translateX(4px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: minmax(0, 1fr);
        padding: 28px 18px 24px;
    }

    .hero-cups-column {
        order: -1;
        min-height: 200px;
        padding: 16px;
    }

    .hero-heading {
        font-size: 30px;
    }

    .section-wrapper {
        padding: 28px 0;
    }

    .loyalty-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .loyalty-card-container {
        margin: 12px auto 0;
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .navbar {
        padding: 10px 16px;
    }

    .navbar-links-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 24px 18px 28px;
    }

    .menu-card-campus-content {
        padding: 14px 14px 14px;
    }
}
