/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus,
*:focus-visible,
*:focus-within {
    outline: none !important;
    box-shadow: none !important;
}


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

/* Initial page state - visible by default */
.hero,
.about,
.menu,
.specials,
.events,
.gallery,
.contact,
.footer {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    transition: all 0.6s ease;
}

body.modal-open .hero,
body.modal-open .about,
body.modal-open .menu,
body.modal-open .specials,
body.modal-open .events,
body.modal-open .gallery,
body.modal-open .contact,
body.modal-open .footer {
    opacity: 0.3;
    filter: blur(2px);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modal Styles */
#eventModal, #event-modal, #drink-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none !important;
}

#event-modal[style*="display: block"] {
    display: block !important;
}

#eventModal:focus,
#eventModal:focus-visible,
#event-modal:focus,
#event-modal:focus-visible {
    outline: none !important;
}

#eventModal.show, #event-modal.show {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

#eventModal .modal-content, #event-modal .modal-content {
    background: #ffffff;
    border-radius: 30px;
    overflow: auto;
    max-width: 50vw;
    width: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    border: 2px solid #E0DCC6;
    outline: none !important;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

#eventModal.show .modal-content, #event-modal.show .modal-content {
    transform: scale(1) translateY(0);
}

#eventModal .modal-content:focus,
#eventModal .modal-content:focus-visible {
    outline: none !important;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid #E0DCC6 !important;
}

#eventModal .modal-close, #event-modal .modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #E0DCC6 0%, #f4f1e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(224, 220, 198, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

#eventModal .modal-close:hover, #event-modal .modal-close:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

#eventModal .modal-close i, #event-modal .modal-close i {
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 600;
}

#eventModal .modal-close:hover i, #event-modal .modal-close:hover i {
    color: #E0DCC6;
}

#eventModal .modal-image, #event-modal .event-image {
    width: 100%;
    max-width: none;
    max-height: 60vh;
    overflow: visible;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

#eventModal .image-container, #event-modal .image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#eventModal .modal-image img, #event-modal .event-image img {
    max-width: 50vw;
    max-height: 60vh;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: none;
    display: block;
    background: transparent;
    border-radius: 15px;
    box-shadow: none;
}

#eventModal .modal-image:hover img, #event-modal .event-image:hover img {
    transform: none;
    box-shadow: none;
}

#eventModal .image-fallback, #event-modal .image-fallback {
    display: none;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#eventModal .modal-badge, #event-modal .modal-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, #E0DCC6 0%, #f4f1e8 100%);
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(224, 220, 198, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

#eventModal .modal-info, #event-modal .modal-info {
    padding: 50px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

#eventModal .modal-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E0DCC6 0%, #f4f1e8 50%, #E0DCC6 100%);
}

#eventModal .modal-info h2, #event-modal .modal-info h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
}

#eventModal .event-date, #event-modal .event-date {
    color: #000000;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 18px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #E0DCC6;
}

#eventModal .event-date::before, #event-modal .event-date::before {
    content: "🎉";
    font-size: 1.5rem;
}

#eventModal .event-description, #event-modal .event-description {
    color: #000000;
    margin-bottom: 35px;
    font-size: 1.3rem;
    line-height: 1.8;
    flex-grow: 1;
    font-weight: 500;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #E0DCC6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#eventModal .event-details, #event-modal .event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid rgba(224, 220, 198, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

#eventModal .detail-item, #event-modal .detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000000;
    font-weight: 700;
    padding: 22px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #E0DCC6;
    transition: all 0.3s ease;
}

#eventModal .detail-item:hover, #event-modal .detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #E0DCC6;
}

#eventModal .detail-item i, #event-modal .detail-item i {
    color: #000000;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    background: #E0DCC6;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#eventModal .modal-buttons, #event-modal .modal-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: auto;
    justify-content: center;
    padding: 20px 0;
}

#eventModal .btn, #event-modal .btn {
    background: #E0DCC6;
    color: #000000;
    border: 2px solid #E0DCC6;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 35px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#eventModal .btn:hover, #event-modal .btn:hover {
    background: #000000;
    color: #E0DCC6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Drink Modal Styles */
#drink-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#drink-modal[style*="display: flex"] {
    display: flex !important;
}


#drink-modal.show {
    opacity: 1;
    visibility: visible;
}

#drink-modal .modal-content {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    max-width: 600px;
    width: 95%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    border: 2px solid #E0DCC6;
    transform: scale(0.8) translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#drink-modal.show .modal-content {
    transform: scale(1) translateY(0);
}

#drink-modal .modal-content:focus,
#drink-modal .modal-content:focus-visible {
    outline: none !important;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid #E0DCC6 !important;
}

#drink-modal .close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #E0DCC6 0%, #f4f1e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    border: none;
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(224, 220, 198, 0.3);
}

#drink-modal .close:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    color: #E0DCC6;
}

#drink-modal .drink-image {
    height: 400px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#drink-modal .drink-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    background: #f0f0f0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#drink-modal .drink-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    background: #f0f0f0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#drink-modal .drink-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

#drink-modal .drink-info {
    padding: 50px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

#drink-modal .drink-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E0DCC6 0%, #f4f1e8 50%, #E0DCC6 100%);
}

#drink-modal .drink-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
}

#drink-modal .drink-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Button Styles */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: #333333;
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-logo h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: #333333;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('photo_2025-09-19_20-36-09.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    filter: brightness(1.1) contrast(1.05);
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 80px;
    width: 100%;
}

.feature > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.feature i {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-top: 5px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    text-align: left;
    width: 100%;
    align-self: flex-start;
    margin-left: 0;
    padding-left: 0;
}

.feature p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    width: 100%;
    align-self: flex-start;
    margin-left: 0;
    padding-left: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat:hover {
    transform: translateY(-5px);
    border-color: #1a1a1a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.stat-label {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background: #ffffff;
    display: block; /* Always visible */
}


.menu-categories {
    display: grid;
    gap: 60px;
}

.menu-category {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu-category.active {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.menu-category-header:hover {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
}

.menu-category-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.menu-toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
}

.menu-category.active .menu-toggle-icon {
    transform: rotate(45deg);
}

.menu-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
}

.menu-category.active .menu-items {
    max-height: 5000px;
    padding: 25px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    cursor: pointer;
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }

.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
    border-color: #1a1a1a;
    transform: translateX(5px);
}

.menu-item-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-info {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-info > div {
    flex-grow: 1;
}

.menu-item-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1a1a1a;
}

.menu-item-description {
    color: #666666;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

.menu-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-left: 15px;
    flex-shrink: 0;
}

/* Specials Section */
.specials {
    padding: 100px 0;
    background: #f8f9fa;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.special-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: default;
    user-select: none;
    outline: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.special-card:focus,
.special-card:focus-visible,
.special-card:active,
.special-card:focus-within {
    outline: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e0e0e0 !important;
}

.special-card * {
    outline: none !important;
}

.special-card *:focus,
.special-card *:focus-visible,
.special-card *:active,
.special-card *:focus-within {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.special-card,
.special-card *,
.special-card *:before,
.special-card *:after {
    outline: none !important;
    box-shadow: none !important;
}

.special-card:hover {
    cursor: default;
}

/* Removed hover effects for special cards to indicate they are not clickable */

.special-day {
    background: #1a1a1a;
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    border: none;
}

.special-content {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.special-content::after {
    content: 'Information only';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.7rem;
    color: #999999;
    font-style: italic;
    opacity: 0.7;
}

.special-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
    text-align: center;
    width: 100%;
}

.special-content p {
    color: #666666;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

.special-time {
    display: inline-block;
    background: #f0f0f0;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: #ffffff;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.event-card {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.05) 0%, rgba(26, 26, 26, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: #1a1a1a;
}



.event-card:active {
    transform: translateY(-5px) scale(0.98);
    transition: all 0.1s ease;
}

.event-image {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Ensure all event images use consistent styling */
.event-card .event-image img {
    object-fit: cover;
    object-position: center;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-info {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.event-info::after {
    content: none;
}

.event-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
    text-align: center;
    width: 100%;
}

.event-date {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.event-date .day {
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.event-date .weekday {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.event-description {
    color: #666666;
    line-height: 1.6;
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
}

.event-time {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    background: #f0f0f0 !important;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* Принудительно применяем серый фон ко всем event-time */
.events .event-time {
    background: #f0f0f0 !important;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 500px;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    flex-direction: row;
}

.gallery-item {
    min-width: 100%;
    flex-shrink: 0;
    flex-basis: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    background: #f8f9fa;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6b6b;
    transform: scale(1.2);
}

.dot:hover {
    background: #666;
}

/* Mobile styles for carousel dots */
@media (max-width: 768px) {
    .carousel-dots {
        gap: 8px;
        margin-top: 20px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 60px;
}

.contact-item i {
    font-size: 2rem;
    color: #1a1a1a;
    margin-top: 5px;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-item p {
    color: #666666;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-link:active {
    background: #1a1a1a !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.social-link:focus {
    background: #1a1a1a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
    outline: none !important;
}

.social-link i {
    font-size: 1.2rem;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Drink Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
}

.modal.show {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #ffffff;
    margin: 2% auto;
    padding: 0;
    border: 2px solid #E0DCC6;
    width: 90%;
    max-width: 400px;
    max-height: 95vh;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
    transform: scale(0.8);
    opacity: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
    transition: all 0.3s ease-out;
}

.modal .modal-content {
    transition: all 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close {
    color: #E0DCC6;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 2001;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #fff;
}

.modal-body {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    flex: 1;
    overflow-y: auto;
}

.drink-image {
    flex: 0 0 auto;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.drink-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(224, 220, 198, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.drink-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.drink-image img:hover {
    transform: scale(1.05);
}

.drink-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #ffffff;
    min-height: 0;
}

.drink-info h3 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.drink-info p {
    color: #666666;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    font-weight: 400;
}


/* Event Modal Styles */
.modal .event-image {
    flex: 0 0 auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: none;
    max-height: 60vh;
}


.modal .event-image img {
    max-width: 50vw;
    max-height: 60vh;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    box-shadow: none;
    position: relative;
    z-index: 2;
    transition: none;
    background: transparent;
}

.modal .event-image img:hover {
    transform: none;
}

.event-info {
    flex: 0 0 auto;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #ffffff;
    min-height: 200px;
    width: 100%;
    box-sizing: border-box;
}

.event-info h3 {
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.event-info p {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.event-info p:last-child {
    margin-bottom: 0;
}

/* Event details removed - only showing title and description */

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: #333333;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer p {
    color: #666666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile First Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .nav-menu {
        padding: 10px;
        max-height: 75vh;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .nav-link:hover {
        padding-left: 20px;
    }

    /* Ultra compact menu for very small screens */
    @media (max-width: 360px) {
        .nav-menu {
            padding: 8px;
            max-height: 70vh;
        }

        .nav-link {
            padding: 8px 10px;
            font-size: 0.85rem;
        }

        .nav-link:hover {
            padding-left: 18px;
        }
    }

    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url('photo_2025-09-19_20-36-09.jpg');
        background-size: cover;
        background-position: center;
        filter: brightness(1.1) contrast(1.05);
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        color: #ffffff;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        color: #ffffff;
        font-weight: 500;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
        color: #1a1a1a;
    }

    .nav {
        padding: 15px 0;
        padding-left: 10px;
        padding-right: 10px;
    }

    .nav-logo h2 {
        font-size: 1.4rem;
    }

    .modal-content {
        width: 95%;
        margin: 10px;
    }

    .modal-info h2 {
        font-size: 1.8rem;
        color: #1a1a1a;
    }

    #eventModal .modal-image, #event-modal .event-image {
        max-width: 70vw;
        max-height: 50vh;
    }
    
    #eventModal .modal-info, #event-modal .modal-info {
        padding: 30px;
    }
    
    #eventModal .modal-info h2, #event-modal .modal-info h2 {
        font-size: 2.4rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    }
    
    #eventModal .event-date, #event-modal .event-date {
        font-size: 1.2rem;
        padding: 15px 20px;
    }
    
    #eventModal .event-description, #event-modal .event-description {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    #eventModal .event-details, #event-modal .event-details {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    #eventModal .detail-item, #event-modal .detail-item {
        padding: 15px;
    }

    .event-details {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }

    
    .about-text {
        text-align: left;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
        color: #1a1a1a;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10px;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .about-text p {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat {
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }


    .menu-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .menu-item-info {
        padding: 15px;
    }

    .specials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-carousel {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .gallery-item img {
        height: 300px;
        object-fit: contain;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
    }

    .contact-item i {
        font-size: 1.8rem;
        margin-top: 0;
        flex-shrink: 0;
    }

    .social-links {
        justify-content: center;
        margin-top: 30px;
    }
    
    .social-link:active {
        background: #1a1a1a !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    }
    
    .social-link:focus {
        background: #1a1a1a !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
        outline: none !important;
    }
    
    .social-link:visited {
        background: #ffffff !important;
        transform: translateY(0) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .menu-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .specials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 350px;
    }
    
    .contact-item {
        gap: 18px;
    }
    
    .contact-item i {
        font-size: 1.8rem;
        width: 28px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 15px;
        gap: 0;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid #e0e0e0;
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
    }

    .nav-link {
        display: block;
        padding: 12px 15px;
        font-size: 1rem;
        font-weight: 600;
        color: #1a1a1a;
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-family: 'Inter', sans-serif;
    }

    .nav-link:hover {
        background: rgba(0, 0, 0, 0.1);
        color: #1a1a1a;
        padding-left: 25px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero-title {
        font-size: 2.5rem;
        color: #ffffff;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        color: #ffffff;
        font-weight: 500;
    }

    .section-title {
        font-size: 2rem;
        color: #1a1a1a;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
        padding: 0 20px;
    }
    
    .about-text {
        text-align: left;
        max-width: 100%;
    }
    
    .about-text h3 {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10px;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .about-text p {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .modal-content {
        flex-direction: column;
        width: 98%;
        max-height: 95vh;
    }

    .modal-info {
        padding: 25px;
    }

    .modal-info h2 {
        font-size: 2.2rem;
        color: #1a1a1a;
    }

    .modal-image {
        height: 250px;
    }

    .event-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons .btn {
        width: 100%;
    }

    
    .menu-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-category-header h3 {
        font-size: 1.2rem;
    }
    
    .menu-category-header {
        padding: 15px 20px;
    }
    
    .menu-category.active .menu-items {
        padding: 20px;
        max-height: 5000px;
        overflow: visible;
    }
    
    .menu-items {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .specials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item img {
        height: 250px;
        object-fit: contain;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* Modal Mobile Styles */
    .modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 96vh;
        overflow: hidden;
    }
    
    .modal-body {
        flex-direction: column;
        min-height: 0;
        flex: 1;
        overflow-y: auto;
    }
    
    .drink-image {
        flex: 0 0 auto;
        height: 250px;
        padding: 8px;
    }
    
    .drink-image img {
        max-height: 200px;
    }
    
    .drink-info {
        padding: 25px;
        flex: 1;
        min-height: 0;
    }
    
    .drink-info h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .drink-info p {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    
    /* Event Modal Mobile Styles */
    .modal .event-image {
        flex: 0 0 auto;
        max-width: 70vw;
        max-height: 50vh;
        padding: 0;
        width: 100%;
    }
    
    .modal .event-image img {
        max-width: 70vw;
        max-height: 50vh;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        position: relative;
        background: transparent;
    }
    
    .event-info {
        padding: 20px;
        min-height: 150px;
    }
    
    .event-info h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .event-info p {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .event-info {
        padding: 25px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .event-info h3 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .event-info p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    /* Event details removed for mobile */
}

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

    .hero-title {
        font-size: 2rem;
        color: #ffffff;
    }

    .section-title {
        font-size: 1.8rem;
        color: #1a1a1a;
    }

    .menu-item-info,
    .event-info {
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    
    .menu-item-info {
        padding: 15px;
    }
    
    .menu-item-info h4 {
        font-size: 1.1rem;
        color: #1a1a1a;
    }
    
    .menu-item-description {
        font-size: 0.85rem;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-item i {
        font-size: 1.6rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
}

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

/* Touch improvements for mobile */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Prevent zoom on input focus */
input, textarea, select {
    font-size: 16px;
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url('photo_2025-09-19_20-36-09.jpg');
        background-size: cover;
        background-position: center;
        filter: brightness(1.1) contrast(1.05);
    }
    
    .modal-content {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Reduce animations on mobile for better performance */
    .menu-item:hover,
    .event-card:hover,
    .gallery-item:hover,
    .special-card:hover {
        transform: none;
    }
    
    /* Touch-friendly button sizes */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    .modal-close {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 4px;
}

/* Extra small screens for modals */
@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 1% auto;
        max-height: 98vh;
    }
    
    .drink-image {
        height: 200px;
        padding: 5px;
    }
    
    .drink-image img {
        max-height: 150px;
    }
    
    .drink-info {
        padding: 20px;
    }
    
    .drink-info h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .drink-info p {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    
}

::-webkit-scrollbar-thumb:hover {
    background: #333333;
}
