/* Language Modal Styles */
.language-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.95);
    /* background: red; */
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.language-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.language-modal-content {
    background: linear-gradient(145deg, #1A1A1A, #0D0D0D);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 400px;
    width: 90%;
}

.language-header {
    margin-bottom: 30px;
}

.logo-small {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.language-header h2 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.language-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 20px;
    background: linear-gradient(145deg, #2A2A2A, #1A1A1A);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 15px;
}

.language-btn:hover {
    background: linear-gradient(145deg, #3A3A3A, #2A2A2A);
    border-color: #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.language-btn .flag {
    font-size: 24px;
}

.language-btn .lang-name {
    flex: 1;
    text-align: left;
}

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

:root {
    --primary-dark: #0D0D0D;
    --secondary-dark: #1A1A1A;
    --accent-gold: #D4AF37;
    --accent-blue: #4A90E2;
    --text-light: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #888888;
    --card-bg: #1E1E1E;
    --border-color: #333333;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
    --border-radius: 16px;
    --border-radius-small: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Manrope', sans-serif;
    /* background: linear-gradient(to right, #3b3b3b, #1A1A1A); */
    background: #2A2927;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 3px;
}

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

/* Header Styles */
.header {
    background: #2A2927;
    padding-top: 10px;
    position: relative;
    border-bottom: 1px solid black;
}

.header-content {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-toggle {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    padding: 8px 12px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
}

.language-toggle:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.language-icon {
    font-size: 16px;
}

.current-lang {
    font-weight: 600;
    font-size: 12px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
    box-shadow: var(--shadow-gold);
    /* border: 2px solid var(--accent-gold); */
}

.logo-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 4px;
}

.lounge-title {
    margin: 30px 0 20px;
    text-align: center;
}

.lounge-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 2px 15px rgba(212, 175, 55, 0.4);
}

.lounge-title p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.welcome-text {
    margin-top: 25px;
}

.welcome-text p {
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
}

.menu-note {
    font-size: 14px !important;
    color: var(--text-secondary) !important;
    font-style: normal !important;
    margin-top: 10px;
    font-weight: 500;
}

/* Main Content */
.main-content {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 100px;
}

.section {
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease-out;
}

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

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
}

/* Drinks Section */
.drinks-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drink-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid var(--border-color);
    cursor: default;
}

.drink-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.drink-card.featured {
    background: var(--gradient-dark);
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.drink-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-small);
    overflow: hidden;
}

.image-placeholder {
    width: 70px;
    height: 70px;
    background: var(--secondary-dark);
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.drink-emoji {
    font-size: 32px;
}

.drink-info {
    flex: 1;
}

.drink-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-light);
}

.description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 1px 5px rgba(212, 175, 55, 0.3);
}

/* Hookah Section */
.hookah-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.category {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.category h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: center;
}

.flavors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.flavors-grid.single-item {
    grid-template-columns: 1fr;
}

.flavor-item {
    background: var(--secondary-dark);
    border-radius: var(--border-radius-small);
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    cursor: default;
}

.flavor-item:hover {
    background: var(--card-bg);
    transform: translateY(-1px);
}

.flavor-item.special {
    background: var(--gradient-dark);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.flavor-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
}

.flavor-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-gold);
}

.random-mix {
    text-align: center;
    margin-top: 30px;
}

.random-mix-info {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: var(--border-radius);
    padding: 20px 28px;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    box-shadow: var(--shadow-gold);
    cursor: default;
}

.mix-icon {
    font-size: 20px;
}

.mix-text {
    flex: 1;
}

.mix-price {
    font-weight: 700;
    font-size: 18px;
}

.mix-description {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
    line-height: 1.4;
}

/* Desserts Section */
.desserts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.dessert-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    cursor: default;
}

.dessert-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.dessert-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.dessert-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.dessert-card .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 1px 5px rgba(212, 175, 55, 0.3);
}

/* Atmosphere Section */
.atmosphere-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.instagram-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.instagram-post {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.instagram-post:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.main-post {
    order: -1;
}

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

.instagram-media {
    background: var(--card-bg) !important;
    border: none !important;
    border-radius: var(--border-radius) !important;
    box-shadow: none !important;
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
}

.instagram-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--text-secondary);
    gap: 15px;
}

.main-post .instagram-loading {
    height: 250px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.instagram-loading p {
    font-size: 14px;
    font-weight: 500;
}

/* Override Instagram embed styles */
.instagram-media iframe {
    border-radius: var(--border-radius) !important;
}

.music-section {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.music-icon {
    font-size: 26px;
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.music-info {
    flex: 1;
}

.music-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-light);
}

.track-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.artist-name {
    font-size: 13px;
    color: var(--text-secondary);
}

.music-controls {
    flex-shrink: 0;
}

.music-btn {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.music-btn:hover {
    background: #B8941F;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

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

.spotify-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: var(--border-radius-small);
    background: var(--secondary-dark);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.spotify-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.spotify-icon {
    font-size: 16px;
}

/* Reviews Section */
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-gold);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.review-rating {
    display: flex;
    align-items: center;
}

.stars {
    font-size: 14px;
    color: #FFD700;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.review-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.avatar-emoji {
    filter: grayscale(0);
}

/* Footer */
.footer {
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.brand-phrase {
    font-size: 18px;
    font-weight: 500;
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: 24px;
    text-shadow: 0 1px 5px rgba(212, 175, 55, 0.3);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: var(--border-radius-small);
    background: var(--card-bg);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.back-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.back-icon {
    font-size: 16px;
}

.tagline {
    display: flex;
    justify-content: center;
    font-family: 'Ubuntu', sans-serif;
    background: #002c69;
    padding: 5px 0;
    margin: 10px auto;
    color: white;
    font-size: 14px;
    border-radius: 8px;
    max-width: 100%;
    margin-bottom: 100px;
}

.tagline a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tagline a:hover {
    color: #66A3FF;
    text-decoration: underline;
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #3b3b3b, #1A1A1A);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: 14px 10px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
    padding: 8px 6px;
    border-radius: var(--border-radius-small);
    min-width: 50px;
    flex: 1;
}

.nav-item:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-item.active {
    color: var(--accent-gold);
    /* background: rgba(212, 175, 55, 0.15); */
    /* box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2); */
}

.nav-icon {
    font-size: 20px;
}

.nav-label {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 480px) {
    .main-content {
        padding: 15px;
        padding-bottom: 100px;
    }
    
    .section {
        margin-bottom: 40px;
    }
    
    .logo-text h1 {
        font-size: 28px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-symbol {
        font-size: 24px;
    }
    
    .desserts-grid {
        grid-template-columns: 1fr;
    }
    
    .flavors-grid {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
    }
    
    /* Instagram mobile optimization */
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .instagram-loading {
        height: 180px;
    }
    
    .main-post .instagram-loading {
        height: 220px;
    }
    
    /* Header mobile optimization */
    .header-top {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .language-toggle {
        order: -1;
        align-self: flex-end;
    }
    
    /* Footer mobile optimization */
    .tagline {
        margin: 10px 15px;
        margin-bottom: 100px;
        font-size: 13px;
    }
}

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

/* Loading animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Hover effects */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Focus styles */
button:focus,
a:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Selection styles */
::selection {
    background: var(--accent-gold);
    color: var(--primary-dark);
} 