/* Modern, Minimalist, Coffee-Themed Styles for Kirenge Gold */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Box sizing reset */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    background: #000000;
    color: #F6F6F0;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

/* Coffee-themed subtle background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(173, 123, 45, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Main content wrapper */
section {
    position: relative;
    z-index: 1;
}

/* Modern Card Design - Coffee Bean Inspired */
.coffee-card {
    background: linear-gradient(135deg, rgba(173, 123, 45, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 215, 0, 0.1) inset;
}

.coffee-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.2),
                0 0 0 1px rgba(255, 215, 0, 0.3) inset;
}

/* Modern Menu Cards */
.menu-card {
    background: linear-gradient(145deg, rgba(173, 123, 45, 0.15) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
}

/* Modern Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: #000000;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFE033 0%, #FFD700 100%);
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid rgba(255, 215, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 215, 0, 0.1);
    transition: width 0.3s ease;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
}

/* Range Slider - Coffee Inspired */
input[type="range"].slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(173, 123, 45, 0.5) 0%, rgba(255, 215, 0, 0.3) 100%);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

input[type="range"].slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    border-radius: 50%;
    border: 3px solid #000000;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    transition: all 0.2s ease;
}

input[type="range"].slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.7);
}

input[type="range"].slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    border-radius: 50%;
    border: 3px solid #000000;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    transition: all 0.2s ease;
}

input[type="range"].slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.7);
}

input[type="range"].slider::-moz-range-track {
    background: linear-gradient(90deg, rgba(173, 123, 45, 0.5) 0%, rgba(255, 215, 0, 0.3) 100%);
    height: 8px;
    border-radius: 10px;
}

/* Form Inputs - Modern Style */
input[type="text"],
input[type="email"],
select,
textarea {
    background: rgba(0, 0, 0, 0.6);
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #F6F6F0;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1), 0 4px 16px rgba(255, 215, 0, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Radio and Checkbox - Coffee Bean Style */
input[type="radio"],
input[type="checkbox"] {
    accent-color: #FFD700;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Modern Radio Card */
.radio-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.radio-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #FFD700;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.radio-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(173, 123, 45, 0.1);
    transform: translateX(4px);
}

.radio-card input:checked + span,
.radio-card:has(input:checked) {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.radio-card:has(input:checked)::before {
    transform: scaleY(1);
}

/* Accordion Cards */
.roast-card {
    border: 1.5px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.roast-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.1);
}

.roast-header {
    background: linear-gradient(135deg, rgba(173, 123, 45, 0.15) 0%, rgba(0, 0, 0, 0.8) 100%);
    transition: all 0.3s ease;
}

.roast-header:hover {
    background: linear-gradient(135deg, rgba(173, 123, 45, 0.25) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.roast-content {
    background: rgba(0, 0, 0, 0.8);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section Enhancement */
.hero-section {
    /* min-height: 100vh; */
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(173, 123, 45, 0.1) 0%, rgba(0, 0, 0, 0.95) 70%);
}

.hero-logo-wrapper {
    position: relative;
    z-index: 2;
}

.hero-logo {
    background: transparent;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: logo-entrance 1s ease-out;
}

.hero-logo-glow {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
    animation: logo-pulse 3s ease-in-out infinite;
}

.hero-logo:hover {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
}

.hero-title {
    position: relative;
    z-index: 2;
    animation: title-entrance 1.2s ease-out;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    display: inline-block;
    animation: subtitle-entrance 1.4s ease-out;
}

.hero-description {
    position: relative;
    z-index: 2;
    animation: description-entrance 1.6s ease-out;
}

.hero-decoration {
    position: absolute;
    bottom: 10%;
    right: 10%;
    font-size: 3rem;
    opacity: 0.4;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.coffee-icon {
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

/* Coffee Particles Animation */
.coffee-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.coffee-bean {
    position: absolute;
    font-size: 2rem;
    opacity: 0.5;
    animation: float-particle 20s infinite ease-in-out;
}

.coffee-bean-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.coffee-bean-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.coffee-bean-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.coffee-bean-4 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.coffee-bean-5 {
    bottom: 20%;
    right: 30%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.coffee-bean-6 {
    top: 30%;
    left: 40%;
    animation-delay: 5s;
    animation-duration: 24s;
}

.coffee-bean-7 {
    bottom: 40%;
    right: 50%;
    animation-delay: 7s;
    animation-duration: 26s;
}



/* Coffee Steam Animation */
.coffee-steam {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 150px;
    z-index: 1;
    pointer-events: none;
}

.steam {
    position: absolute;
    width: 8px;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.7;
    animation: steam-rise 4s infinite ease-in-out;
}

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

.steam-2 {
    left: 50%;
    animation-delay: 1s;
    width: 6px;
    height: 80px;
}

.steam-3 {
    left: 55%;
    animation-delay: 0.5s;
    width: 7px;
    height: 70px;
}

/* Animations */
@keyframes logo-entrance {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes logo-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.7));
    }
}

@keyframes title-entrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitle-entrance {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes description-entrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

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

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-60px) translateX(-15px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-30px) translateX(10px) rotate(270deg);
        opacity: 0.6;
    }
}

@keyframes steam-rise {
    0% {
        opacity: 0.3;
        transform: translateY(0) translateX(0) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50px) translateX(5px) scale(1.2);
    }
    100% {
        opacity: 0.2;
        transform: translateY(-100px) translateX(-5px) scale(0.5);
    }
}

/* Animation Utility Classes */
.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-up-delay-1 {
    animation: fadeInUp 1.2s ease-out 0.2s both;
}

.animate-fade-in-up-delay-2 {
    animation: fadeInUp 1.4s ease-out 0.4s both;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Headers */
.section-header {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
}

/* Large touch targets for mobile */
button, a, label {
    min-height: 44px;
}

/* Focus states for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #FFD700;
    outline-offset: 3px;
}

/* Smooth transitions */
* {
    transition-property: background-color, border-color, color, transform, box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.3s;
}

/* Recommendation Box */
#recommendation {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(173, 123, 45, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Enhancement */
footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Selection highlight */
::selection {
    background: rgba(255, 215, 0, 0.3);
    color: #F6F6F0;
}

/* ============================================
   UTILITY CLASSES (Replacing Tailwind)
   ============================================ */

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.hidden {
    display: none;
}

.inline-block {
    display: inline-block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

/* Spacing Utilities */
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pt-8 {
    padding-top: 2rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Sizing Utilities */
.w-full {
    width: 100%;
}

.w-40 {
    width: 10rem;
}

.h-40 {
    height: 10rem;
}

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-6xl {
    max-width: 72rem;
}

/* Typography Utilities */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

/* Color Utilities */
.text-kirenge-gold {
    color: #FFD700;
}

.text-kirenge-white {
    color: #F6F6F0;
}

.text-kirenge-black {
    color: #000000;
}

.bg-kirenge-black {
    background-color: #000000;
}

.border-kirenge-gold {
    border-color: #FFD700;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.border-t-2 {
    border-top-width: 2px;
    border-top-style: solid;
}

.border-2 {
    border-width: 2px;
    border-style: solid;
}

/* Opacity Utilities */
.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-70 {
    opacity: 0.7;
}

/* Color with Opacity */
.text-kirenge-white-80::before {
    content: attr(data-text);
    color: rgba(246, 246, 240, 0.8);
}

/* Grid Utilities */
.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-2\.5 > * + * {
    margin-top: 0.625rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

/* Border Radius */
.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Object Fit */
.object-contain {
    object-fit: contain;
}

/* Z-index */
.z-10 {
    z-index: 10;
}

/* Gap specific */
.gap-4 {
    gap: 1rem;
}

/* Insets */
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Background Gradient */
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-kirenge-espresso-5 {
    --tw-gradient-from: rgba(173, 123, 45, 0.05);
    --tw-gradient-to: rgba(173, 123, 45, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-transparent {
    --tw-gradient-to: transparent;
}

/* Responsive Design - Desktop */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:p-8 {
        padding: 2rem;
    }
    
    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .md\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }
    
    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    
    .md\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    
    .md\:w-auto {
        width: auto;
    }
}

/* Specific color combinations with opacity */
.text-white-opacity-80 {
    color: rgba(246, 246, 240, 0.8);
}

.text-white-opacity-90 {
    color: rgba(246, 246, 240, 0.9);
}

.text-white-opacity-60 {
    color: rgba(246, 246, 240, 0.6);
}

.text-white-opacity-70 {
    color: rgba(246, 246, 240, 0.7);
}

.border-gold-opacity-20 {
    border-color: rgba(255, 215, 0, 0.2);
}

.bg-espresso-opacity-20 {
    background-color: rgba(173, 123, 45, 0.2);
}

.bg-espresso-opacity-30 {
    background-color: rgba(173, 123, 45, 0.3);
}

.bg-espresso-opacity-5 {
    background-color: rgba(173, 123, 45, 0.05);
}

.hover-bg-espresso-20:hover {
    background-color: rgba(173, 123, 45, 0.2);
}

.hover-bg-espresso-30:hover {
    background-color: rgba(173, 123, 45, 0.3);
}

/* Additional missing utilities */
.block {
    display: block;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

/* Additional utility classes */
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
