/* Main CSS for Charisma Cocktail- & Shishabar */

/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #c8a97e;
    --primary-dark: #a48654;
    --secondary-color: #1a1a1a;
    --text-color: #f5f5f5;
    --text-dark: #333;
    --overlay-color: rgba(0, 0, 0, 0.7);
    --transition: all 0.3s ease;
    --section-padding: 100px 0;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: #0f0f0f;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    padding: 30px 50px;
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 15px 50px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.logo {
    z-index: 1001;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary-color);
    letter-spacing: 3px;
}

.logo p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: -5px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 40px;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #0a0a0a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/charisma-atmosphere.jpg');
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #111;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.outline {
    background-color: transparent;
    color: var(--primary-color);
}

/* Fix for hover state sticking on touch devices */
@media (hover: hover) {
    .cta-button.outline:hover {
        background-color: var(--primary-color);
        color: #111;
    }
}

@media (hover: none) {
    .cta-button.outline:active {
        background-color: var(--primary-color);
        color: #111;
    }
    
    /* Return to original state after touch */
    .cta-button.outline {
        -webkit-tap-highlight-color: transparent;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.chevron {
    position: relative;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale(0.3);
    animation: moveDown 3s ease-out infinite;
}

.chevron:first-child {
    animation-delay: 0s;
}

.chevron:nth-child(2) {
    animation-delay: 0.5s;
}

.chevron:nth-child(3) {
    animation-delay: 1s;
}

.chevron:before,
.chevron:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--primary-color);
}

.chevron:before {
    left: 0;
    transform: skewY(30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    transform: skewY(-30deg);
}

@keyframes moveDown {
    25% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        transform: translateY(55px) scale(0.3);
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background-color: #0f0f0f;
}

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

.section-header h2 {
    font-size: 2.5rem;
    display: inline-block;
    color: var(--primary-color);
}

.accent-line {
    height: 3px;
    width: 70px;
    background-color: var(--primary-color);
    margin: 0 auto;
    margin-top: 10px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 30px;
}

.feature {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    transition: var(--transition);
    background-color: rgba(25, 25, 25, 0.7);
}

.feature:hover {
    transform: translateY(-10px);
    background-color: rgba(35, 35, 35, 0.9);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary-color);
    z-index: 1;
    opacity: 0.5;
}

.image-standard {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===== ATMOSPHERE SECTION ===== */
.atmosphere-section {
    position: relative;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
    background-color: #0a0a0a;
}

.atmosphere-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.atmosphere-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.atmosphere-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.atmosphere-feature {
    text-align: center;
    width: 160px;
}

.atmosphere-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.atmosphere-feature p {
    font-size: 1rem;
}

/* ===== MENU SECTION ===== */
.menu-section {
    padding: var(--section-padding);
    background-color: #0f0f0f;
}

.tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-header {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.menu-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.menu-item {
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--box-shadow);
    cursor: default;
    transition: transform 0.5s ease;
}

.menu-item:hover {
    transform: scale(1.03);
}

.menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transition: var(--transition);
}

.menu-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.menu-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.menu-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
}

.menu-button:hover {
    background-color: var(--primary-color);
    color: #111;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: var(--section-padding);
    background-color: #0f0f0f;
}

.gallery-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    min-height: 700px;
}

.gallery-track {
    position: relative;
}

.gallery-slide {
    text-align: center;
    padding: 20px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.gallery-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 300px;
    gap: 30px;
    margin-top: -10px;
    margin-bottom: 30px;
    padding: 0 10px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: default;
    border-radius: 8px;
    height: 300px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.5s ease;
    margin-bottom: 5px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-dots {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 10;
    padding: 10px 0;
}

.gallery-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #555;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active {
    background-color: var(--primary-color);
}

.gallery-modal {
    display: none;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 2001;
}

.modal-content {
    display: block;
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    object-fit: contain;
}

.modal-caption {
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    width: 80%;
    margin: auto;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    color: var(--primary-color);
}

/* ===== EVENTS SECTION ===== */
.events-section {
    position: relative;
    padding: 150px 0;
    text-align: center;
}

.section-header.light h2 {
    color: #fff;
}

.events-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.events-track {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 0 auto;
}

.event-card {
    flex: 0 0 calc(25% - 23px);
    min-width: 220px;
    background-color: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.event-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.event-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.event-card p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-prev, .slider-next {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--primary-color);
    color: #111;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding);
    background-color: #0f0f0f;
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    min-height: 250px;
}

.testimonial {
    text-align: center;
    padding: 20px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
    z-index: 1;
}

.rating {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    user-select: text;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.testimonial-author {
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #555;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background-color: #0f0f0f;
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background-color: rgba(25, 25, 25, 0.7);
    border-radius: 10px;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    background-color: rgba(35, 35, 35, 0.9);
    box-shadow: var(--box-shadow);
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 50px;
    text-align: center;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-content p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.info-content a {
    color: var(--text-color);
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--primary-color);
}

.small {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 5px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.map-container {
    flex: 1;
    min-width: 300px;
}

.map {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.parking-info {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(25, 25, 25, 0.7);
    border-radius: 5px;
}

.parking-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.parking-info i {
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
footer {
    background-color: #0a0a0a;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary-color);
    letter-spacing: 3px;
}

.footer-logo p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: -5px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-nav-column {
    min-width: 180px;
}

.footer-nav-column h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-nav-column ul li {
    margin-bottom: 10px;
}

.footer-nav-column a {
    opacity: 1;
    transition: var(--transition);
}

.footer-nav-column a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-nav-column ul li i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== MENU MODAL ===== */
.menu-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.menu-modal-content {
    position: relative;
    background-color: #0f0f0f;
    margin: 1% auto;
    padding: 20px;
    width: 96%;
    max-width: 1800px;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.close-menu-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-menu-modal:hover {
    color: var(--primary-color);
}

.menu-modal-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 2rem;
}

.menu-pages {
    max-width: 100%;
}

.menu-page-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.menu-page-counter {
    font-size: 1rem;
}

.menu-page-prev, .menu-page-next {
    background-color: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.menu-page-prev:hover, .menu-page-next:hover {
    color: var(--primary-color);
}

.menu-page-prev.disabled, .menu-page-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.menu-page-container {
    position: relative;
    height: 90vh;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-page {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100%;
}

.menu-page.active {
    display: block;
}

.menu-page-prev, .menu-page-next {
    background-color: rgba(20, 20, 20, 0.6);
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    height: 80px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 4px;
}

.menu-page-prev {
    left: 10px;
}

.menu-page-next {
    right: 10px;
}

.menu-page-prev:hover, .menu-page-next:hover {
    color: var(--primary-color);
    background-color: rgba(20, 20, 20, 0.8);
}

.menu-page-prev.disabled, .menu-page-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.menu-page-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.menu-dot {
    width: 12px;
    height: 12px;
    background-color: #555;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.menu-dot.active {
    background-color: var(--primary-color);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    header {
        padding: 20px 30px;
    }

    header.scrolled {
        padding: 15px 30px;
    }

    .about-content {
        flex-direction: column;
    }

    .features {
        justify-content: center;
    }

    .event-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    html {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .section-header {
        margin-bottom: 30px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease;
    }

    .main-nav.active {
        right: 0;
        backdrop-filter: blur(10px);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .main-nav a {
        font-size: 1.1rem;
    }

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

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

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

    .tab-header {
        flex-wrap: wrap;
    }

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

    .event-card {
        flex: 0 0 calc(50% - 15px);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 25px;
        padding: 0 15px;
    }

    .menu-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-button {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .feature {
        flex: 0 0 100%;
    }

    .menu-item {
        height: 280px;
    }

    .event-card {
        flex: 0 0 100%;
        max-width: 300px;
    }

    .menu-modal-content {
        width: 95%;
        padding: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 25px;
        padding: 0 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .gallery-item {
        height: 220px;
        margin-bottom: 0;
    }
    
    .gallery-dots {
        margin-top: 15px;
        background-color: rgba(15, 15, 15, 0.5);
        border-radius: 20px;
        display: inline-block;
        padding: 8px 15px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .gallery-slider {
        min-height: 300px;
    }
}

/* ===== IMPRESSUM MODAL ===== */
.impressum-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.impressum-modal-content {
    position: relative;
    background-color: #0f0f0f;
    margin: 5% auto;
    padding: 40px;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.close-impressum-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: var(--transition);
}

.close-impressum-modal:hover {
    color: var(--primary-color);
}

.impressum-modal-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 2rem;
}

.impressum-content {
    max-width: 100%;
}

.impressum-content h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.impressum-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.impressum-content a {
    color: var(--text-color);
    transition: var(--transition);
}

.impressum-content a:hover {
    color: var(--primary-color);
}

#impressum-link {
    cursor: pointer;
    transition: var(--transition);
}

#impressum-link:hover {
    color: var(--primary-color);
}

/* Verbesserte Seitenladeperformance */
.no-transitions * {
    transition: none !important;
    animation: none !important;
}

html.loading {
    overflow: hidden;
}

html.loading body {
    opacity: 0;
}

/* SHISHA MENU MODAL */
.shisha-menu-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.close-shisha-menu-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-shisha-menu-modal:hover {
    color: var(--primary-color);
}

.shisha-menu-page {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100%;
}

.shisha-menu-page.active {
    display: block;
}

.shisha-menu-page-prev, .shisha-menu-page-next {
    background-color: rgba(20, 20, 20, 0.6);
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    height: 80px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 4px;
}

.shisha-menu-page-prev {
    left: 10px;
}

.shisha-menu-page-next {
    right: 10px;
}

.shisha-menu-page-prev:hover, .shisha-menu-page-next:hover {
    color: var(--primary-color);
    background-color: rgba(20, 20, 20, 0.8);
}

.shisha-menu-page-prev.disabled, .shisha-menu-page-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.shisha-menu-page-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.shisha-menu-dot {
    width: 12px;
    height: 12px;
    background-color: #555;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.shisha-menu-dot.active {
    background-color: var(--primary-color);
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .menu-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-button {
        width: 100%;
        max-width: 300px;
    }
} 