/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary: #8B4513; /* Rich coffee brown - KávéZóna */
    --primary-dark: #0A0A0A; /* Dark - Derkó Terasz */
    --secondary: #000000;
    --accent: #D4A55D; /* Warm gold - KávéZóna */
    --accent-dark: #FF5252; /* Red accent - Derkó Terasz */
    --accent-dark-light: #FF6B6B;
    --light: #F8F5F0; /* Cream background */
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

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

.section-padding {
    padding: 120px 0;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--secondary);
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Derkó Terasz gombok */
.darko .btn-primary {
    background-color: var(--accent-dark);
    color: var(--white);
}

.darko .btn-primary:hover {
    background-color: var(--accent-dark-light);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.darko .btn-secondary {
    border-color: var(--accent-dark);
    color: var(--accent-dark);
}

.darko .btn-secondary:hover {
    background-color: var(--accent-dark);
    color: var(--white);
}

/* HEADER - FIXED */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background-color: var(--primary);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: auto;
    min-height: 70px;
}

.darko header {
    background-color: var(--primary-dark);
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 15px;
    width: 100%;
    min-height: 70px;
}

.logo-container {
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    width: 100%;
    padding: 5px 0;
}

.logo {
    text-decoration: none;
    display: inline-block;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 5px;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 3px;
    text-align: center;
}

.darko .logo-sub {
    color: var(--accent-dark);
}

/* NAV SWITCH */
.nav-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 25px;
    position: relative;
    max-width: 280px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
    box-sizing: border-box;
    overflow: hidden;
}

.switch-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 15px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    position: relative;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.switch-label.active {
    color: var(--secondary);
}

.switch-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 8px);
    height: calc(100% - 8px);
    background-color: var(--accent);
    border-radius: 20px;
    transition: var(--transition);
    z-index: 1;
}


.darko .switch-slider {
    left: calc(50% + 2px);
    background-color: var(--accent-dark);
}

/* MAIN NAVIGATION */
.main-nav {
    width: 100%;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

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

.nav-menu a:hover {
    color: var(--accent);
}

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

.darko .nav-menu a::after {
    background-color: var(--accent-dark);
}

.darko .nav-menu a:hover {
    color: var(--accent-dark);
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3000;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

/* HERO CAROUSEL - KávéZóna */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 120px;
    padding-bottom: 100px;
}

.carousel-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slide-1 .slide-content {
    text-align: center;
}

.slide-2 .slide-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.slide-3 .slide-content {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.slide-text {
    flex: 1;
}

.slide-image {
    flex: 1;
}

.slide-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: rotate(3deg);
    transition: var(--transition);
}

.slide-img:hover {
    transform: rotate(0deg);
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 8px;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 100px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--white);
}

.hero-title span {
    display: block;
    font-size: 60px;
    color: var(--accent);
    letter-spacing: 15px;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.9);
}

.slide-2 .hero-subtitle {
    margin: 0 0 50px 0;
    text-align: left;
}

.slide-2 .hero-title {
    text-align: left;
}

.slide-2 .hero-tagline {
    text-align: left;
}

.slide-3 .hero-tagline {
    color: var(--white);
    background: var(--primary);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.slide-2 .hero-buttons {
    justify-content: flex-start;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-nav {
    display: flex;
    gap: 15px;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
    font-weight: bold;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--secondary);
    transform: scale(1.1);
}

.carousel-autoplay {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.autoplay-toggle {
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.autoplay-toggle.active {
    background: var(--accent);
}

.autoplay-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.autoplay-toggle.active::after {
    left: calc(100% - 18px);
}

/* DARKO TERASZ HERO */
.darko-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 120px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
}

.darko-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.darko-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.darko-hero-content .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.darko-hero-text {
    flex: 1;
}

.darko-hero-image {
    flex: 1;
    position: relative;
}

.darko-hero-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 107, 0.3);
    transform: rotate(-3deg);
    transition: var(--transition);
}

.darko-hero-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.darko-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 8px;
    color: var(--accent-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.darko-title {
    font-size: 100px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--white);
}

.darko-title span {
    display: block;
    font-size: 60px;
    color: var(--accent-dark);
    letter-spacing: 15px;
    margin-top: 10px;
}

.darko-subtitle {
    font-size: 22px;
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

.darko-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.darko-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.darko-feature i {
    color: var(--accent-dark);
    font-size: 20px;
    width: 24px;
}

/* DARKO CAROUSEL */
.darko-carousel {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 120px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding-bottom: 100px;
}

.darko-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.darko-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.darko-slide.active {
    opacity: 1;
    z-index: 1;
}

.darko-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.4;
}

.darko-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: -1;
}

.darko-slide-1 .darko-slide-content {
    text-align: center;
    max-width: 800px;
}

.darko-slide-2 .darko-slide-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
}

.darko-slide-3 .darko-slide-content {
    text-align: center;
    background: rgba(255, 107, 107, 0.1);
    padding: 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.darko-slide-text {
    flex: 1;
}

.darko-slide-image {
    flex: 1;
}

.darko-slide-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.2);
    border: 2px solid rgba(255, 107, 107, 0.3);
    transform: rotate(3deg);
    transition: var(--transition);
}

.darko-slide-img:hover {
    transform: rotate(0deg);
}

.darko-slide-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 8px;
    color: var(--accent-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.darko-slide-title {
    font-size: 100px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--white);
}

.darko-slide-title span {
    display: block;
    font-size: 60px;
    color: var(--accent-dark);
    letter-spacing: 15px;
    margin-top: 10px;
}

.darko-slide-subtitle {
    font-size: 22px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.9);
}

.darko-slide-2 .darko-slide-subtitle {
    margin: 0 0 50px 0;
    text-align: left;
}

.darko-slide-2 .darko-slide-title {
    text-align: left;
}

.darko-slide-2 .darko-slide-tagline {
    text-align: left;
}

.darko-slide-3 .darko-slide-tagline {
    color: var(--white);
    background: var(--accent-dark);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.darko-slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.darko-slide-2 .darko-slide-buttons {
    justify-content: flex-start;
}

/* Derkó Terasz carousel controls */
.darko .carousel-controls {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.darko .carousel-dot.active {
    background-color: var(--accent-dark);
}

.darko .carousel-prev,
.darko .carousel-next {
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.darko .carousel-prev:hover,
.darko .carousel-next:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

/* PAGE SECTIONS */
.page-content {
    display: none;
}

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

/* SECTION COMMON STYLES */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.darko .section-title::after {
    background-color: var(--accent-dark);
}

.darko .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.darko .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* COFFEE EXPERIENCE SECTION */
.coffee-experience {
    background-color: var(--light);
    position: relative;
}

.experience-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.experience-content {
    flex: 1;
}

.experience-quote {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--secondary);
}

.experience-quote span {
    color: var(--primary);
    display: block;
    font-size: 48px;
}

.darko .experience-quote span {
    color: var(--accent-dark);
}

.experience-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--gray);
}

.experience-highlight {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
    line-height: 1.6;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
}

.darko .experience-highlight {
    color: var(--accent-dark);
    border-left-color: var(--accent-dark);
}

.experience-image {
    flex: 1;
    position: relative;
}

.experience-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(-3deg);
    transition: var(--transition);
}

.experience-img:hover {
    transform: rotate(0deg);
}

/* COFFEE SELECTION SECTION */
.coffee-selection {
    background-color: var(--white);
    position: relative;
}

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

.coffee-card {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.coffee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.coffee-image {
    height: 250px;
    overflow: hidden;
}

.coffee-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.coffee-card:hover .coffee-img {
    transform: scale(1.05);
}

.coffee-content {
    padding: 30px;
}

.coffee-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.coffee-origin {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
    font-weight: 500;
}

.coffee-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 20px;
}

.coffee-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coffee-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.coffee-button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.coffee-button:hover {
    background-color: var(--accent);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* DARKO COCKTAIL SECTION */
.darko-cocktails {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--white);
    position: relative;
}

.cocktails-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.cocktails-content {
    flex: 1;
}

.cocktails-quote {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--white);
}

.cocktails-quote span {
    color: var(--accent-dark);
    display: block;
    font-size: 48px;
}

.cocktails-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cocktails-highlight {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 40px;
    line-height: 1.6;
    padding-left: 20px;
    border-left: 3px solid var(--accent-dark);
}

.cocktails-image {
    flex: 1;
    position: relative;
}

.cocktails-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.2);
    transform: rotate(3deg);
    transition: var(--transition);
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.cocktails-img:hover {
    transform: rotate(0deg);
}

/* COCKTAIL MENU SECTION */
.cocktail-menu {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.cocktail-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 107, 0.1);
    backdrop-filter: blur(10px);
}

.cocktail-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.1);
}

.cocktail-header {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.cocktail-name {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 5px;
    color: var(--accent-dark);
}

.cocktail-type {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cocktail-body {
    padding: 30px;
}

.cocktail-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cocktail-ingredients {
    list-style: none;
    margin-bottom: 25px;
}

.cocktail-ingredients li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.cocktail-ingredients i {
    color: var(--accent-dark);
    font-size: 16px;
    min-width: 20px;
}

.cocktail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cocktail-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-dark);
}

.cocktail-order {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #ff5252 100%);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.cocktail-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

/* PHILOSOPHY SECTION */
.philosophy {
    background-color: var(--white);
}

.darko .philosophy {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-title {
    font-size: 48px;
    margin-bottom: 40px;
    color: var(--secondary);
}

.philosophy-title span {
    color: var(--primary);
}

.darko .philosophy-title {
    color: var(--white);
}

.darko .philosophy-title span {
    color: var(--accent-dark);
}

.philosophy-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.darko .philosophy-text {
    color: rgba(255, 255, 255, 0.8);
}

.philosophy-highlight {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 40px;
    padding: 20px;
    background-color: var(--light);
    border-radius: 8px;
    display: inline-block;
}

.darko .philosophy-highlight {
    color: var(--accent-dark);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
}

/* QUALITY SECTION */
.quality {
    background-color: var(--light);
}

.darko .quality {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.quality-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.quality-image {
    flex: 1;
    position: relative;
}

.quality-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(3deg);
    transition: var(--transition);
}

.quality-img:hover {
    transform: rotate(0deg);
}

.quality-content {
    flex: 1;
}

.quality-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--secondary);
}

.quality-title span {
    color: var(--primary);
    display: block;
    font-size: 48px;
}

.darko .quality-title {
    color: var(--white);
}

.darko .quality-title span {
    color: var(--accent-dark);
}

.quality-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--gray);
}

.darko .quality-text {
    color: rgba(255, 255, 255, 0.8);
}

/* DARKO EVENTS SECTION */
.darko-events {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--white);
}

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

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 107, 0.1);
    backdrop-filter: blur(10px);
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.1);
}

.event-header {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.event-name {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 5px;
    color: var(--accent-dark);
}

.event-type {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.event-body {
    padding: 30px;
}

.event-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-details {
    list-style: none;
    margin-bottom: 25px;
}

.event-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.event-details i {
    color: var(--accent-dark);
    font-size: 16px;
    min-width: 20px;
}

.event-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, #ff5252 100%);
    color: var(--white);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
}

.event-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

/* TESTIMONIALS SECTION */
.testimonials {
    background-color: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: -10px;
    font-family: serif;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--gray);
}

/* LOCATIONS SECTION */
.locations {
    background-color: var(--white);
}

.darko .locations {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.location-card {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.darko .location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.darko .location-card:hover {
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
}

.location-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.darko .location-header {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #ff5252 100%);
}

.location-name {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 5px;
}

.location-type {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.darko .location-type {
    color: rgba(255, 255, 255, 0.9);
}

.location-body {
    padding: 30px;
}

.location-info {
    margin-bottom: 25px;
}

.location-address, .location-phone, .location-hours {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--gray);
}

.location-address i, .location-phone i, .location-hours i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 18px;
    min-width: 20px;
}

.darko .location-address,
.darko .location-phone,
.darko .location-hours {
    color: rgba(255, 255, 255, 0.8);
}

.darko .location-address i,
.darko .location-phone i,
.darko .location-hours i {
    color: var(--accent-dark);
}

.location-button {
    width: 100%;
    padding: 15px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
}

.location-button:hover {
    background-color: var(--accent);
    color: var(--secondary);
}

.darko .location-button {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #ff5252 100%);
    color: var(--white);
}

.darko .location-button:hover {
    background: linear-gradient(135deg, #ff5252 0%, var(--accent-dark) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

/* FOOTER */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding-top: 80px;
    padding-bottom: 30px;
}

.darko footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.darko .footer-column h3 {
    color: var(--accent-dark);
}

.darko .footer-column h3::after {
    background-color: var(--accent-dark);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.darko .footer-links a:hover {
    color: var(--accent-dark);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 18px;
    min-width: 20px;
}

.darko .contact-info i {
    color: var(--accent-dark);
}

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

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

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

.darko .social-link:hover {
    background-color: var(--accent-dark);
    color: var(--white);
}

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

/* ANIMATIONS & SCROLL EFFECTS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* INSTAGRAM SECTION */
.container2 {
    text-align: center;
    padding: 30px 15px;
    height: auto;
    min-height: 400px;
    max-width: 100%;
    overflow: hidden;
}

.post-gallery {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    padding: 40px 15px;
    height: 320px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.post-gallery::-webkit-scrollbar {
    display: none;
}

.post {
    flex: 0 0 auto;
    width: 200px;
    height: 250px;
    transform: rotate(-5deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    scroll-snap-align: center;
}

.post:nth-child(even) {
    transform: rotate(5deg);
}

.post img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
    will-change: transform;
    backface-visibility: hidden;
}

.post img:active {
    cursor: grabbing;
}

.post:hover {
    transform: rotate(0deg) scale(1.1);
    z-index: 10;
}

/* RESPONSIVE DESIGN - DESKTOP FIRST */
@media (max-width: 1200px) {
    .hero-title, .darko-title, .darko-slide-title {
        font-size: 80px;
    }

    .hero-title span, .darko-title span, .darko-slide-title span {
        font-size: 50px;
        letter-spacing: 10px;
    }

    .experience-quote, .quality-title, .cocktails-quote {
        font-size: 56px;
    }

    .experience-quote span, .quality-title span, .cocktails-quote span {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .experience-container, .quality-container, .cocktails-container {
        flex-direction: column;
        gap: 50px;
    }

    .experience-content, .quality-content, .cocktails-content {
        order: 2;
        text-align: center;
    }

    .experience-image, .quality-image, .cocktails-image {
        order: 1;
    }

    .hero-carousel, .darko-hero, .darko-carousel {
        height: 90vh;
        min-height: 600px;
        margin-top: 100px;
    }

    .slide-2 .slide-content,
    .darko-hero-content .container,
    .darko-slide-2 .darko-slide-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .slide-2 .hero-title,
    .slide-2 .hero-subtitle,
    .slide-2 .hero-tagline,
    .darko-slide-2 .darko-slide-title,
    .darko-slide-2 .darko-slide-subtitle,
    .darko-slide-2 .darko-slide-tagline {
        text-align: center;
    }

    .slide-2 .hero-buttons,
    .darko-slide-2 .darko-slide-buttons {
        justify-content: center;
    }

    .hero-title, .darko-title, .darko-slide-title {
        font-size: 60px;
    }

    .hero-title span, .darko-title span, .darko-slide-title span {
        font-size: 40px;
        letter-spacing: 8px;
    }

    .hero-subtitle, .darko-subtitle, .darko-slide-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 40px;
    }

    .carousel-controls {
        bottom: 30px;
    }

    .darko-features {
        grid-template-columns: 1fr;
    }

    /* Instagram section */
    .container2 {
        padding: 25px 10px;
        min-height: 350px;
    }
    
    .post-gallery {
        height: 280px;
        padding: 30px 10px;
        gap: 12px;
    }
    
    .post {
        width: 160px;
        height: 200px;
        flex: 0 0 160px;
    }
    
    .post:active {
        transform: rotate(0deg) scale(1.05);
        z-index: 5;
    }
    
    .post,
    .post:nth-child(even) {
        transform: rotate(0deg);
    }
}

/* TABLET AND DESKTOP HEADER */
@media (min-width: 769px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
    
    .logo-container {
        margin-bottom: 0;
        text-align: left;
        width: auto;
    }
    
    .logo-main {
        font-size: 32px;
    }
    
    .logo-sub {
        font-size: 14px;
        letter-spacing: 4px;
    }
    
    .nav-switch {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        margin-top: -20px;
        margin-bottom: 0;
        width: 280px;
    }
    
    .switch-label {
        font-size: 12px;
        padding: 8px 25px;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background: none;
        display: block;
    }
    
    .nav-menu {
        gap: 20px;
        padding: 0;
    }
    
    .nav-menu a {
        font-size: 13px;
        padding: 5px 0;
    }
}

/* MOBILE DESIGN */
@media (max-width: 768px) {
    /* Header */
    header {
        padding: 10px 15px;
        overflow: hidden;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
        max-width: 100vw;
        position: relative;
        padding-right: 50px;
    }
    
    .logo-container {
        margin: 0;
        text-align: left;
        width: auto;
    }
    
    .logo-main {
        font-size: 24px;
    }
    
    .logo-sub {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    /* Nav switch */
    .nav-switch {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 70px;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 3px;
        gap: 5px;
    }
    
    .switch-label {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 0.8px;
    }
    
    .switch-slider {
        top: 3px;
        left: 3px;
        width: calc(50% - 3px);
        height: calc(100% - 6px);
    }
    
    .darko .switch-slider {
        left: calc(50% + 1.5px);
    }
    
    /* Mobile menu */
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary);
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 2000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .darko .main-nav {
        background: var(--primary-dark);
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-top: 40px;
    }
    
    .nav-menu a {
        font-size: 18px;
    }
    
    /* Body class for menu background */
    body.kave .main-nav {
        background-color: var(--primary);
    }
    
    body.darko .main-nav {
        background-color: var(--primary-dark);
    }
    
    /* Hero sections */
    .hero-carousel, .darko-hero, .darko-carousel {
        margin-top: 80px;
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-carousel {
        padding-bottom: 80px;
    }
    
    .hero-title, .darko-title, .darko-slide-title {
        font-size: 48px;
    }
    
    .hero-title span, .darko-title span, .darko-slide-title span {
        font-size: 32px;
        letter-spacing: 5px;
    }
    
    .hero-tagline, .darko-tagline, .darko-slide-tagline {
        font-size: 16px;
        letter-spacing: 5px;
    }
    
    .hero-buttons, .darko-hero-buttons, .darko-slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Content sections */
    .experience-quote, .quality-title, .cocktails-quote {
        font-size: 42px;
    }
    
    .experience-quote span, .quality-title span, .cocktails-quote span {
        font-size: 32px;
    }
    
    .locations-grid, .events-grid, .selection-grid, .menu-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    /* Carousel controls */
    .carousel-controls {
        flex-direction: row;
        gap: 15px;
        bottom: 30px;
        padding: 12px 20px;
        width: 90%;
        max-width: 350px;
        justify-content: space-between;
    }
    
    .carousel-dots {
        gap: 10px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .carousel-autoplay {
        display: none;
    }
    
    /* Ensure carousel controls are visible */
    .carousel-controls,
    .carousel-dots,
    .carousel-nav,
    .carousel-prev,
    .carousel-next,
    .carousel-dot {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Slide content adjustments */
    .slide-content,
    .darko-slide-content {
        padding: 0 15px !important;
    }
    
    .hero-subtitle,
    .darko-subtitle,
    .darko-slide-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
    
    /* Instagram section */
    .container2 {
        padding: 25px 10px;
        min-height: 350px;
    }
    
    .post-gallery {
        height: 280px;
        padding: 30px 10px;
        gap: 12px;
    }
    
    .post {
        width: 160px;
        height: 200px;
        flex: 0 0 160px;
    }
    
    .post:active {
        transform: rotate(0deg) scale(1.05);
        z-index: 5;
    }
    
    .post,
    .post:nth-child(even) {
        transform: rotate(0deg);
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    /* Header */
    .logo-main {
        font-size: 22px;
    }
    
    .logo-sub {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    
    .nav-switch {
        max-width: 220px;
        top: 65px;
    }
    
    .switch-label {
        padding: 5px 10px;
        font-size: 9px;
        letter-spacing: 0.5px;
    }
    
    /* Hero sections */
    .hero-title, .darko-title, .darko-slide-title {
        font-size: 36px;
    }
    
    .hero-title span, .darko-title span, .darko-slide-title span {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .hero-carousel, .darko-hero, .darko-carousel {
        min-height: 400px;
        height: 70vh;
        margin-top: 70px;
    }
    
    .hero-carousel {
        padding-bottom: 70px;
    }
    
    /* Content sections */
    .experience-quote, .quality-title, .cocktails-quote {
        font-size: 32px;
    }
    
    .experience-quote span, .quality-title span, .cocktails-quote span {
        font-size: 24px;
    }
    
    /* Carousel controls */
    .carousel-controls {
        bottom: 20px;
        padding: 10px 15px;
        gap: 10px;
        width: 95%;
        max-width: 320px;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    /* Slide content */
    .slide-3 .slide-content,
    .darko-slide-3 .darko-slide-content {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    /* Instagram section */
    .container2 {
        padding: 20px 8px;
        min-height: 300px;
    }
    
    .post-gallery {
        height: 240px;
        padding: 20px 8px;
        gap: 8px;
    }
    
    .post {
        width: 140px;
        height: 180px;
        flex: 0 0 140px;
    }
    
    .post.active {
        transform: scale(1.1) !important;
        z-index: 10;
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    }
}

/* VERY SMALL PHONES */
@media (max-width: 360px) {
    .logo-main {
        font-size: 20px;
    }
    
    .nav-switch {
        max-width: 200px;
    }
    
    .switch-label {
        padding: 5px 8px;
        font-size: 8px;
    }
    
    .post-gallery {
        height: 220px;
    }
    
    .post {
        width: 120px;
        height: 160px;
        flex: 0 0 120px;
    }
}

/* LANDSCAPE MODE */
@media (max-width: 768px) and (orientation: landscape) {
    .container2 {
        min-height: 280px;
    }
    
    .post-gallery {
        height: 200px;
    }
    
    .post {
        width: 150px;
        height: 180px;
        flex: 0 0 150px;
    }
}

/* OVERFLOW FIX */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    header {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .header-container {
        max-width: 100vw;
    }
}

/* SCROLL INDICATORS */
.post-gallery-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 69, 19, 0.8);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.scroll-indicator.left {
    left: 10px;
}

.scroll-indicator.right {
    right: 10px;
}

.post-gallery-container:hover .scroll-indicator {
    opacity: 1;
}

/* VISUAL INDICATOR FOR SCROLLABLE GALLERY */
.post-gallery::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(139, 69, 19, 0.7)'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    pointer-events: none;
    z-index: 5;
}

@media (max-width: 768px) {
    .post-gallery::after {
        width: 20px;
        height: 20px;
        right: 5px;
    }
}
/* JAVÍTOTT HEADER RÉSZ - DESKTOP */
@media (min-width: 769px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        position: relative;
    }
    
    .logo-container {
        margin-bottom: 0;
        text-align: left;
        width: auto;
        flex: 1;
    }
    
    .logo-main {
        font-size: 32px;
    }
    
    .logo-sub {
        font-size: 14px;
        letter-spacing: 4px;
    }
    
    /* NAV SWITCH - Középre igazítás, felette helyezés */
    .nav-switch {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        margin-top: 25px; /* A navbar alatt helyezkedik el */
        margin-bottom: 0;
        width: 280px;
        z-index: 1001;
    }
    
    .switch-label {
        font-size: 12px;
        padding: 8px 25px;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    /* MAIN NAV - A switch felett */
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background: none;
        display: block;
        margin-top: 15px; /* Space for the switch below */
        z-index: 1000;
    }
    
    .nav-menu {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 0;
        margin-top: 40px; /* Extra space for the switch */
    }
    
    .nav-menu a {
        font-size: 13px;
        padding: 5px 0;
    }
}

/* JAVÍTOTT MOBILE DESIGN */
@media (max-width: 768px) {
    /* Header */
    header {
        padding: 10px 15px;
        overflow: visible; /* Változtatás: hidden -> visible */
    }
    
    .header-container {
        flex-direction: column;
        align-items: stretch;
        padding: 0 10px;
        position: relative;
    }
    
    .logo-container {
        margin: 0;
        text-align: center;
        width: 100%;
        padding: 10px 0;
    }
    
    .logo-main {
        font-size: 24px;
    }
    
    .logo-sub {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    /* Nav switch - felette a logónak */
    .nav-switch {
        position: static;
        transform: none;
        top: auto;
        margin: 10px auto 15px;
        width: 90%;
        max-width: 250px;
        order: 2; /* A logo után, a menü gomb előtt */
    }
    
    .switch-label {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 0.8px;
    }
    
    .switch-slider {
        top: 3px;
        left: 3px;
        width: calc(50% - 3px);
        height: calc(100% - 6px);
    }
    
    .darko .switch-slider {
        left: calc(50% + 1.5px);
    }
    
    /* Mobile menu button - jobb felső sarok */
    .mobile-menu-btn {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3000;
    }
    
    /* Mobile menu - a header alatt */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 2000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 80px; /* Space for header */
    }
    
    .darko .main-nav {
        background: var(--primary-dark);
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-top: 40px;
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 18px;
        color: var(--white);
    }
    
    /* Body class for menu background */
    body.kave .main-nav {
        background-color: var(--primary);
    }
    
    body.darko .main-nav {
        background-color: var(--primary-dark);
    }
    
    /* Overlay for menu */
    .main-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: inherit;
        z-index: -1;
    }
}

/* EXTRA FIX FOR MOBILE LAYOUT ISSUES */
@media (max-width: 768px) {
    /* Ensure proper header layout */
    .header-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100px;
        padding: 10px;
    }
    
    /* Logo at top */
    .logo-container {
        order: 1;
        margin-bottom: 10px;
    }
    
    /* Nav switch below logo */
    .nav-switch {
        order: 2;
        margin: 0 auto 15px;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
    
    /* Menu button positioned absolutely */
    .mobile-menu-btn {
        order: 3;
        position: absolute;
        right: 15px;
        top: 25px;
        transform: none;
    }
    
    /* Hero sections adjustment */
    .hero-carousel, .darko-hero, .darko-carousel {
        margin-top: 120px; /* Increased to account for taller header */
    }
}

/* JAVÍTOTT HEADER - DESKTOP */
@media (min-width: 769px) {
    .header-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 20px;
        position: relative;
        min-height: 140px; /* Több hely a navbar résznek */
    }
    
    .logo-container {
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
        order: 1;
        flex: 0 0 auto;
    }
    
    .logo-main {
        font-size: 32px;
    }
    
    .logo-sub {
        font-size: 14px;
        letter-spacing: 4px;
    }
    
    /* NAV SWITCH - Középen, a navbar FELLETT */
    .nav-switch {
        order: 2;
        position: static;
        transform: none;
        top: auto;
        left: auto;
        margin: 15px auto 20px;
        width: 280px;
        z-index: 1001;
    }
    
    .switch-label {
        font-size: 12px;
        padding: 8px 25px;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    /* MAIN NAV - A switch ALATT */
    .main-nav {
        order: 3;
        position: static;
        width: 100%;
        height: auto;
        background: none;
        display: block;
        margin-top: 0;
        z-index: 1000;
        transform: none;
    }
    
    .nav-menu {
        display: flex;
        justify-content: center;
        gap: 25px;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 13px;
        padding: 5px 0;
        color: var(--white);
    }
    
    /* Fix for hover states */
    .nav-menu a:hover {
        color: var(--accent);
    }
    
    .darko .nav-menu a:hover {
        color: var(--accent-dark);
    }
}

/* JAVÍTOTT MOBILE DESIGN */
@media (max-width: 768px) {
    /* Header - módisított */
    header {
        padding: 10px 15px;
        overflow: visible;
        min-height: 120px;
    }
    
    .header-container {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
        position: relative;
        min-height: 110px;
    }
    
    .logo-container {
        order: 1;
        margin: 10px 0 15px;
        text-align: center;
        width: 100%;
        padding: 0;
    }
    
    .logo-main {
        font-size: 24px;
    }
    
    .logo-sub {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    /* Nav switch - logó alatt, középen */
    .nav-switch {
        order: 2;
        position: static;
        transform: none;
        top: auto;
        margin: 0 auto 15px;
        width: 90%;
        max-width: 250px;
    }
    
    .switch-label {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 0.8px;
    }
    
    .switch-slider {
        top: 3px;
        left: 3px;
        width: calc(50% - 3px);
        height: calc(100% - 6px);
    }
    
    .darko .switch-slider {
        left: calc(50% + 1.5px);
    }
    
    /* Mobile menu button - jobb felső sarok */
    .mobile-menu-btn {
        order: 3;
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3000;
    }
    
    /* Main nav - fix pozíció */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 2000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 80px;
    }
    
    .darko .main-nav {
        background: var(--primary-dark);
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-top: 40px;
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 18px;
        color: var(--white);
    }
    
    /* Body class for menu background */
    body.kave .main-nav {
        background-color: var(--primary);
    }
    
    body.darko .main-nav {
        background-color: var(--primary-dark);
    }
}

/* FIX FOR CAROUSEL MARGIN */
@media (min-width: 769px) {
    .hero-carousel, .darko-carousel {
        margin-top: 160px; /* Adjusted for taller header */
    }
}

/* EXTRA FIXES */
/* Remove old positioning styles that might interfere */
.nav-switch {
    /* Remove old absolute positioning */
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
}

/* Ensure proper header height on desktop */
@media (min-width: 769px) {
    header {
        min-height: 150px;
        padding: 0;
    }
    
    .header-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
/* JAVÍTOTT SWITCH-SLIDER - pontos méretezés */
.switch-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 8px); /* Módosítottam: -8px helyett -4px */
    height: calc(100% - 8px);
    background-color: var(--accent);
    border-radius: 20px; /* Egyezzen a switch-label border-radiusával */
    transition: var(--transition);
    z-index: 1;
    box-sizing: border-box;
}

.darko .switch-slider {
    background-color: var(--accent-dark);
}

/* DESKTOP méretezés */
@media (min-width: 769px) {
    .switch-slider {
        top: 4px;
        left: 4px;
        width: calc(50% - 8px);
        height: calc(100% - 8px);
    }
    
    .darko .switch-slider {
        left: calc(50% + 4px); /* Pontos pozíció darko oldalon */
    }
}

/* MOBILE méretezés */
@media (max-width: 768px) {
    .switch-slider {
        top: 3px;
        left: 3px;
        width: calc(50% - 6px); /* Módosítottam */
        height: calc(100% - 6px);
        border-radius: 18px;
    }
    
    .darko .switch-slider {
        left: calc(50% + 3px); /* Pontos pozíció mobile darkon */
    }
}

/* EXTRA PRECISION FIX */
.nav-switch {
    /* Biztosítsuk, hogy a switch-slider pontosan illeszkedjen */
    padding: 4px;
    border-radius: 25px;
    position: relative;
    box-sizing: border-box;
}

.switch-label {
    /* Label padding egyezzen a slider méretével */
    padding: 8px 15px;
    border-radius: 20px;
    z-index: 2;
    position: relative;
}

/* Ha továbbra is probléma van, próbáld ezt: */
.switch-slider {
    /* Kis árnyék a szélek kiemeléséhez */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    
    /* Smooth transition */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* EXTREME PRECISION FIX */
.switch-slider {
    width: calc(50% - 10px) !important; /* Még kisebb */
    margin: 0 2px; /* Kis margó a széleken */
}

/* VAGY */
.switch-slider {
    width: 48% !important; /* Százalékos méret */
    transform: translateX(0); /* Reset transform */
}

/* ================================
   NAV SWITCH - VÉGLEGES FIX
   Ezt tedd a CSS LEGÉRE
================================ */

/* A slider mindig a nav-switch-hez igazodjon, ne a headerhez */
.nav-switch{
  position: relative !important;
  overflow: hidden !important;

  /* ezek nálad amúgy is ilyenek, csak most változóba tesszük */
  --sw-pad: 4px;
  --sw-gap: 8px;

  padding: var(--sw-pad) !important;
  gap: var(--sw-gap) !important;
}

/* Mobilon nálad kisebb a padding/gap, itt is lekövetjük */
@media (max-width: 768px){
  .nav-switch{
    --sw-pad: 3px;
    --sw-gap: 5px;
  }
}

/* Slider: méret és pozíció matekkal, nem “érzésre” */
.nav-switch .switch-slider{
  position: absolute !important;
  z-index: 1 !important;

  top: var(--sw-pad) !important;
  left: var(--sw-pad) !important;

  height: calc(100% - (var(--sw-pad) * 2)) !important;
  width: calc((100% - (var(--sw-pad) * 2) - var(--sw-gap)) / 2) !important;

  margin: 0 !important;
  transform: none !important; /* ne szóljon bele a korábbi "reset" */
}

/* Darko oldalon ugyanaz a méret, csak jobbra kerül */
.darko .nav-switch .switch-slider{
  left: calc(50% + (var(--sw-gap) / 2)) !important;
}

/* Label-ek maradjanak a slider fölött */
.nav-switch .switch-label{
  position: relative;
  z-index: 2;
}
/* ================================
   SLIDE-2 RESPONSIVE FIX
   (mobilon a jobb oldali kép elrejthető)
================================ */

/* Alap: ne tudjon semmi kilógni */
.carousel-slide.slide-2,
.carousel-slide.slide-2 .slide-content{
  width: 100%;
  max-width: 100%;
}

.carousel-slide.slide-2{
  overflow: hidden; /* ha a kép bárhol túlcsúszna, nem lesz oldalra scroll */
}

/* Tabletig: legyen rugalmas, ne nőjön túl */
.slide-2 .slide-content{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 6vw, 80px);
}

.slide-2 .slide-text,
.slide-2 .slide-image{
  min-width: 0; /* fontos: flexben ettől nem fog szöveg/kép túlnyúlni */
}

.slide-2 .slide-img{
  width: 100%;
  max-width: 520px;  /* ne legyen óriás */
  height: auto;
  display: block;
}

/* 992 alatt: egymás alá (nálad már részben van, itt stabilizáljuk) */
@media (max-width: 992px){
  .slide-2 .slide-content{
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .slide-2 .hero-buttons{
    justify-content: center;
  }
}

/* 768 alatt: kép OFF, szöveg ON */
@media (max-width: 768px){
  .slide-2 .slide-image{
    display: none;
  }

  .slide-2 .slide-content{
    padding: 0 15px !important; /* a te mobile részeden is van, ez biztosra megy */
  }

  .slide-2 .hero-tagline{
    letter-spacing: 4px; /* mobilon a 8px sok, szétszakítja */
  }

  .slide-2 .hero-title{
    word-break: keep-all;
    hyphens: none;
  }
}
/* =========================================
   NAV SWITCH SLIDER - STABIL FIX (MINDEN MÉRETEN)
   Tedd a CSS LEGÉRE
========================================= */

.nav-switch{
  /* ezek a te desktop/mobil értékeid */
  --sw-pad: 4px;
  --sw-gap: 8px;

  position: relative !important;
  overflow: hidden !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  gap: var(--sw-gap) !important;
  padding: var(--sw-pad) !important;

  box-sizing: border-box;
}

@media (max-width: 768px){
  .nav-switch{
    --sw-pad: 3px;
    --sw-gap: 5px;
  }
}

/* Label mindig a slider fölött */
.nav-switch .switch-label{
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  min-width: 0;
}

/* Slider: mindig balról indul, pontos matekkal méretezve */
.nav-switch .switch-slider{
  position: absolute !important;
  z-index: 1 !important;

  top: var(--sw-pad) !important;
  left: var(--sw-pad) !important;

  height: calc(100% - (var(--sw-pad) * 2)) !important;
  width: calc((100% - (var(--sw-pad) * 2) - var(--sw-gap)) / 2) !important;

  margin: 0 !important;

  /* alapállapot: CAFE */
  transform: translateX(0) !important;

  /* csak a transform animálódjon, ne "all" */
  transition: transform .28s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  will-change: transform;
}

/* Cafe szín */
body.kave .nav-switch .switch-slider,
:not(.darko) .nav-switch .switch-slider{
  background-color: var(--accent) !important;
}

/* Bar oldal: ugyanott indul balról, csak átfordul jobbra + szín vált */
body.darko .nav-switch .switch-slider,
.darko .nav-switch .switch-slider{
  left: var(--sw-pad) !important;
  background-color: var(--accent-dark) !important;
  transform: translateX(calc(100% + var(--sw-gap))) !important;
}
