* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #2f2f2f;
    background: #f8f0e3;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(179, 152, 95, 0.03) 1px, transparent 0),
        linear-gradient(135deg, rgba(107, 122, 143, 0.01) 0%, transparent 50%, rgba(179, 152, 95, 0.01) 100%);
    background-size: 40px 40px, 100% 100%;
    background-attachment: fixed;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background: rgba(248, 240, 227, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(47, 47, 47, 0.08);
    border-bottom: 2px solid #b3985f;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-svg {
    height: 60px;
    width: 60px;
    filter: brightness(0) saturate(100%) invert(66%) sepia(20%) saturate(773%) hue-rotate(9deg) brightness(91%) contrast(86%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-svg:hover {
    transform: scale(1.05);
    filter: brightness(0) saturate(100%) invert(66%) sepia(20%) saturate(773%) hue-rotate(9deg) brightness(96%) contrast(91%);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #b3985f;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    color: #4a4a4a;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: -5px;
}

.menu-season {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    color: #666;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    display: block;
    margin-top: 2px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav a {
    text-decoration: none;
    color: #2f2f2f;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #b3985f;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #b3985f;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Search Container */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 0.5rem;
}

.search-toggle {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.search-toggle:hover {
    opacity: 1;
    background: rgba(179, 152, 95, 0.1);
}

.search-input {
    width: 0;
    opacity: 0;
    padding: 0.5rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    overflow: hidden;
    white-space: nowrap;
    margin-left: -0.5rem;
}

.search-input.expanded {
    width: 200px;
    opacity: 1;
    border-color: #b3985f;
    margin-left: 0.5rem;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(179, 152, 95, 0.3);
}

.search-input::placeholder {
    color: #999;
}

.search-results-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    overflow-y: auto;
    padding-top: 100px;
}

.search-results-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.search-results-header {
    text-align: center;
    margin-bottom: 2rem;
    color: #f8f0e3;
}

.search-results-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.search-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #f8f0e3;
    cursor: pointer;
    z-index: 1001;
}

.search-close:hover {
    color: #b3985f;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Language Button */
.lang-btn {
    background: transparent;
    border: 1px solid #b3985f;
    border-radius: 6px;
    padding: 6px 12px;
    color: #2f2f2f;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.lang-btn:hover {
    background: #b3985f;
    color: #f8f0e3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(179, 152, 95, 0.2);
}

#langFlag {
    font-size: 1.1rem;
}

#langCode {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

main {
    margin-top: 80px;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2f2f2f;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(248, 240, 227, 0.98);
    backdrop-filter: blur(20px);
    border-top: 2px solid #b3985f;
    box-shadow: 0 8px 32px rgba(47, 47, 47, 0.1);
    padding: 2rem 0;
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-content {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mobile-menu a {
    display: block;
    text-decoration: none;
    color: #2f2f2f;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 0;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(179, 152, 95, 0.2);
    text-align: center;
}

.mobile-menu a:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.mobile-menu a:hover {
    color: #b3985f;
}

.mobile-search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(179, 152, 95, 0.2);
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}

.mobile-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #b3985f;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: #2f2f2f;
    transition: all 0.3s ease;
}

.mobile-search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(179, 152, 95, 0.3);
    background: white;
}

.mobile-search-input::placeholder {
    color: #999;
    font-style: italic;
}

.mobile-search-btn {
    background: #b3985f;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.mobile-search-btn:hover {
    background: #9a8352;
    transform: scale(1.05);
}

.lang-btn-mobile {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
    background: transparent;
    border: 1px solid #b3985f;
    border-radius: 6px;
    padding: 0.75rem;
    color: #2f2f2f;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.lang-btn-mobile:hover {
    background: #b3985f;
    color: #f8f0e3;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-container {
        padding: 0 15px;
        position: relative;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    main {
        margin-top: 90px;
    }

    /* Mobile logo styles */
    .logo {
        gap: 0.5rem;
    }

    .logo-svg {
        height: 45px;
        width: 45px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo span {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .menu-season {
        font-size: 0.5rem;
    }
    
    /* Recipe fixes */
    .recipe-details ol,
    .recipe-details ul {
        padding-left: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .method ol li {
        margin-bottom: 0.5rem;
    }
}

.hero {
    background: linear-gradient(135deg, 
                rgba(248, 240, 227, 0.95) 0%, 
                rgba(179, 152, 95, 0.05) 30%,
                rgba(248, 240, 227, 0.98) 70%,
                rgba(107, 122, 143, 0.03) 100%
                );
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #2f2f2f;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(179, 152, 95, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 122, 143, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #2f2f2f;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.hero-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #4a4a4a;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.cta-button {
    background: #b3985f;
    color: #f8f0e3;
    padding: 16px 32px;
    border: 2px solid #b3985f;
    border-radius: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(179, 152, 95, 0.2);
}

.cta-button:hover {
    background: transparent;
    color: #b3985f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(179, 152, 95, 0.3);
}

.menu-section, .about-section {
    padding: 140px 0;
    background: #f8f0e3;
    color: #2f2f2f;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: #b3985f;
}

.menu-section:nth-child(even) {
    background: linear-gradient(135deg, #f8f0e3 0%, rgba(179, 152, 95, 0.02) 100%);
}

.menu-section h2, .about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 5rem;
    color: #2f2f2f;
    font-weight: 600;
    letter-spacing: 0.8px;
    position: relative;
    line-height: 1.2;
}

.menu-section h2::after, .about-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b3985f, transparent);
    margin: 2rem auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(179, 152, 95, 0.2);
}

/* Category sections for classic cocktails */
.category-section {
    margin-bottom: 4rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #b3985f;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #b3985f 50%, transparent 100%);
}

.category-cocktails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}

.cocktail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.cocktail-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(248, 240, 227, 0.3) 100%);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(179, 152, 95, 0.15);
    transition: all 0.4s ease;
    box-shadow: 
        0 4px 20px rgba(47, 47, 47, 0.06),
        0 1px 3px rgba(179, 152, 95, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cocktail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #b3985f 0%, #6b7a8f 50%, #b3985f 100%);
}

.cocktail-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center, rgba(179, 152, 95, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cocktail-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 35px rgba(47, 47, 47, 0.08),
        0 2px 8px rgba(179, 152, 95, 0.15);
    border-color: rgba(179, 152, 95, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 1rem;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #b3985f;
    font-weight: 300;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(179, 152, 95, 0.2);
}

.cocktail-card.expanded .toggle-icon {
    transform: rotate(180deg);
}

.recipe-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(179, 152, 95, 0.3);
    animation: slideDown 0.3s ease-out;
    background: rgba(248, 240, 227, 0.3);
    padding: 2rem;
    margin: 2rem -3rem 0;
    position: relative;
}

.recipe-details::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #b3985f;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

.recipe-details h4 {
    color: #2f2f2f;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
}

.recipe-details h5 {
    color: #4a4a4a;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.recipe-ingredients {
    list-style: none;
    margin-bottom: 1rem;
}

.recipe-ingredients li {
    padding: 0.4rem 0;
    color: #4a4a4a;
    position: relative;
    padding-left: 1.5rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.recipe-ingredients li:before {
    content: '◆';
    color: #b3985f;
    font-weight: 300;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 0.2rem;
}

.method ol {
    color: #4a4a4a;
    margin-left: 1.5rem;
}

.method li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #4a4a4a;
}

.garnish {
    margin-top: 1.5rem;
    color: #6b7a8f;
    font-style: italic;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    text-align: center;
    font-size: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(179, 152, 95, 0.2);
}

.cocktail-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #2f2f2f;
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ingredients {
    color: #b3985f;
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.description {
    color: #4a4a4a;
    line-height: 1.7;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
}

.spirits-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.category {
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.category ul {
    list-style: none;
}

.category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.category li:hover {
    color: #d4af37;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.about-content p {
    margin-bottom: 2rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #6b7a8f;
    margin-top: -3.5rem;
    margin-bottom: 3.5rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b3985f, transparent);
}

.section-subtitle::before {
    left: -80px;
}

.section-subtitle::after {
    right: -80px;
}

.mocktails-section {
    background: linear-gradient(135deg, rgba(248, 240, 227, 0.8) 0%, rgba(107, 122, 143, 0.08) 100%);
    position: relative;
}

.mocktails-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 3px 3px, rgba(179, 152, 95, 0.04) 1px, transparent 0);
    background-size: 60px 60px;
    pointer-events: none;
}

footer {
    background: linear-gradient(135deg, #4a4a4a 0%, #2f2f2f 100%);
    padding: 4rem 0;
    text-align: center;
    color: #f8f0e3;
    border-top: 3px solid #b3985f;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #b3985f 50%, transparent 90%);
}

footer p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 0.8px;
    font-weight: 300;
    margin-bottom: 1rem;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-icon {
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.footer-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(179, 152, 95, 0.1);
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 0;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        display: flex;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    .language-toggle button {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo .tagline {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .hero {
        height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-content h2 {
        font-size: 3rem;
        line-height: 0.9;
        letter-spacing: -1px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .cocktail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-section {
        margin-bottom: 3rem;
    }
    
    .category-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .category-cocktails {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-section h2, .about-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
        letter-spacing: -0.5px;
    }
    
    .cocktail-card {
        padding: 1.5rem;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
    }
    
    .toggle-icon {
        font-size: 1.3rem;
        min-width: 30px;
        text-align: center;
    }
    
    .ingredients {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .recipe-details {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .recipe-details h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .recipe-details h5 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        margin-top: 0.8rem;
    }
    
    .recipe-ingredients li {
        padding: 0.2rem 0;
        font-size: 0.9rem;
        padding-left: 1rem;
    }
    
    .method ol {
        margin-left: 0.5rem;
    }
    
    .method li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        line-height: 1.4;
    }
    
    .garnish {
        margin-top: 0.8rem;
        font-size: 0.9rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-top: -1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Extra small mobile logo styles */
    .logo {
        gap: 0.4rem;
    }

    .logo-svg {
        height: 40px;
        width: 40px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo span {
        font-size: 0.55rem;
        letter-spacing: 1.2px;
    }

    .menu-season {
        font-size: 0.45rem;
    }

    .hero {
        height: 75vh;
        padding: 1.5rem 0;
    }

    .hero-content h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .menu-section, .mocktails-section {
        padding: 60px 0;
    }
    
    .menu-section h2, .about-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .cocktail-card {
        padding: 1.2rem;
    }
    
    .card-header {
        margin-bottom: 0.8rem;
    }
    
    .card-header h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .toggle-icon {
        font-size: 1.2rem;
        min-width: 28px;
    }
    
    .ingredients {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .recipe-details {
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }
    
    .recipe-details h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .recipe-details h5 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
        margin-top: 0.6rem;
    }
    
    .recipe-ingredients li {
        padding: 0.15rem 0;
        font-size: 0.8rem;
        padding-left: 0.8rem;
    }
    
    .method ol {
        margin-left: 0.3rem;
    }
    
    .method li {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }
    
    .garnish {
        margin-top: 0.6rem;
        font-size: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-top: -1.2rem;
        margin-bottom: 1.2rem;
    }
    
    /* Improve touch targets for mobile */
    .cocktail-card {
        min-height: 44px;
        cursor: pointer;
    }
    
    /* Better spacing for mobile navigation */
    nav {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    /* Mobile-specific animations */
    .cocktail-card:hover {
        transform: none;
    }
    
    .cocktail-card:active {
        transform: scale(0.98);
    }
}

/* Collapsible classics section */
.classics-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.classics-header:hover {
    color: #b3985f;
}

.classics-header h2 {
    margin: 0;
    pointer-events: none;
}

.classics-browse-title {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1.2rem !important;
    color: #6b7a8f !important;
    font-weight: 300 !important;
    font-style: italic !important;
    letter-spacing: 1px !important;
    text-transform: none !important;
    text-align: center !important;
    flex: 1 !important;
}

.classics-full-title {
    text-align: center !important;
    flex: 1 !important;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #b3985f;
    min-width: 30px;
    text-align: center;
    user-select: none;
    transition: transform 0.3s ease;
}

.classics-content {
    transition: all 0.3s ease;
    overflow: hidden;
}

.classics-browse-message {
    padding: 2rem 0;
    text-align: center;
}

.classics-browse-message p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #6b7a8f;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    margin: 0;
}