* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

body {
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 140, 0, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 140, 0, 0.08) 0%, transparent 40%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(80px);
    pointer-events: none;
    z-index: -1;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23FF8C00' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E"),
        linear-gradient(45deg, rgba(10, 10, 10, 0.7), rgba(15, 15, 15, 0.7));
}

.container {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    padding: 25px;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Typography Enhancement */
.highlight {
    color: #FF8C00;
    font-weight: 700;
}

.highlight-text {
    color: #FF8C00;
    font-weight: 500;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

header h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0px 2px 10px rgba(255, 140, 0, 0.3);
    margin-bottom: 10px;
    line-height: 1.2;
}

.brand-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 300;
    color: #aaa;
    margin-bottom: 5px;
}

header .subtitle {
    color: #e0e0e0;
    font-size: 1.1rem;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.category-title {
    color: #e0e0e0;
    font-size: 1.3rem;
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 15px;
}

.contact-link {
    display: inline-block;
    background: rgba(255, 140, 0, 0.15);
    color: #FF8C00;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-link i {
    margin-right: 5px;
}

.contact-link:hover {
    background: rgba(255, 140, 0, 0.25);
    transform: translateY(-3px);
}

.back-link {
    position: absolute;
    left: 0;
    top: 5px;
    color: #FF8C00;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

/* Banner Section Styles */
.banner-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: rgba(25, 25, 25, 0.6);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.banner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner.active {
    opacity: 1;
}

.banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #FF8C00;
}

/* Navigation Links */
.navigation-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.navigation-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navigation-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF8C00;
    transition: width 0.3s ease;
}

.navigation-links a:hover {
    color: #FF8C00;
}

.navigation-links a:hover::after,
.navigation-links a.active-link::after {
    width: 100%;
}

.navigation-links a.active-link {
    color: #FF8C00;
    font-weight: 600;
}

/* Category Grid Styles */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.category-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    color: #ffffff;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 140, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 140, 0, 0.2);
    background: rgba(40, 40, 40, 0.7);
}

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

.category-icon {
    font-size: 2.7rem;
    color: #FF8C00;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.15);
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 8px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.category-card:hover h3 {
    color: #FF8C00;
}

/* Products Page Styles */
.products-container {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(255, 140, 0, 0.1);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.items-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(255, 140, 0, 0.3);
    margin-bottom: 22px;
    font-weight: 600;
    color: #e0e0e0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.items-header .item-name {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.price-column {
    display: flex;
    width: 50%;
}

.price-header {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.items-list::-webkit-scrollbar {
    width: 5px;
}

.items-list::-webkit-scrollbar-track {
    background: rgba(51, 51, 51, 0.3);
    border-radius: 10px;
}

.items-list::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.5);
    border-radius: 10px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 18px;
    background: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.menu-item:hover {
    background: rgba(50, 50, 50, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-left: 3px solid #FF8C00;
}

.menu-item .item-name {
    flex: 1;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.menu-item .price-column {
    display: flex;
    width: 50%;
}

.menu-item .price {
    flex: 1;
    text-align: center;
    color: #FF8C00;
    font-weight: 700;
    font-size: 1.05rem;
}

.menu-item .price.empty {
    color: rgba(102, 102, 102, 0.7);
}

.price-value {
    position: relative;
    display: inline-block;
}

.empty-price {
    opacity: 0.6;
    font-weight: 300;
}

/* Cocktail ingredients styling */
.ingredients {
    font-size: 0.85rem;
    font-style: italic;
    color: #888;
    font-weight: 300;
    display: block;
    margin-top: 2px;
    line-height: 1.4;
}

footer {
    margin-top: 35px;
    text-align: center;
    color: #888;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Contact Page Styles */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 35px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.info-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 140, 0, 0.1);
    background: rgba(40, 40, 40, 0.7);
}

.info-icon {
    font-size: 2rem;
    color: #FF8C00;
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.info-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 6px;
}

.map-container {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-container h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.map-frame {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 140, 0, 0.2);
}

.cta-section {
    text-align: center;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    margin-bottom: 35px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.cta-section p {
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto 22px;
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #FF8C00, #FF6A00);
    color: #fff;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(255, 106, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 18px rgba(255, 106, 0, 0.4);
}

/* Responsive Styles */
@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 18px;
    }
    
    .products-container {
        padding: 18px;
    }
    
    .items-list {
        max-height: 50vh;
    }
    
    .back-link {
        position: static;
        display: inline-block;
        margin-bottom: 18px;
    }
    
    header {
        margin-bottom: 20px;
    }
    
    header h1 {
        font-size: 2.4rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .map-frame {
        height: 330px;
    }
    
    .cta-section {
        padding: 28px 18px;
    }
    
    .cta-section h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 20px 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header .subtitle {
        font-size: 0.95rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .category-icon {
        font-size: 2.2rem;
    }
    
    .category-card {
        padding: 20px 12px;
    }
    
    .category-card h3 {
        font-size: 1.1rem;
    }
    
    .menu-item {
        padding: 14px;
    }
    
    .menu-item .item-name {
        font-size: 0.95rem;
    }
    
    .menu-item .price {
        font-size: 0.95rem;
    }
    
    .items-header .item-name,
    .price-header {
        font-size: 0.8rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .map-frame {
        height: 280px;
    }
    
    .info-card {
        padding: 18px 14px;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 8px 22px;
        font-size: 0.95rem;
    }
    
    .navigation-links {
        gap: 18px;
    }
    
    .banner-container {
        margin-bottom: 25px;
    }
    
    .banner-slider {
        height: 100px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .ingredients {
        font-size: 0.8rem;
        margin-top: 1px;
    }
} 