/* =============================================================================
   LUXURY HOTEL CSS STYLES
   Štýly pre luxusný hotel dizajn
   ============================================================================= */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* =============================================================================
   ZÁKLADNÉ ŠTÝLY A RESET
   ============================================================================= */

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

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

/* =============================================================================
   NAVIGÁCIA
   ============================================================================= */

.homepage-slider {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e6e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.homepage-slider:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Logo štýly */
.homepage-slider > img {
    position: absolute !important;
    top: 40px !important;
    left: 60px !important;
    transform: none !important;
    width: 180px !important;
    height: auto !important;
    z-index: 10 !important;
    filter: brightness(0) invert(1);
}

/* Hlavná navigácia */
.main-menu {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 60px;
}

.main-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.main-menu ul li {
    margin: 0 30px;
    position: relative;
}

.main-menu ul li a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2c2c2c;
    text-decoration: none;
    padding: 15px 0;
    transition: all 0.3s ease;
    position: relative;
}

.main-menu ul li a:hover {
    color: #d4a574;
}

.main-menu ul li a:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #d4a574;
    transition: width 0.3s ease;
}

.main-menu ul li a:hover:after {
    width: 100%;
}

/* Book Now tlačidlo v navigácii */
.main-menu-book {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2c2c2c !important;
    text-decoration: none !important;
    padding: 12px 30px !important;
    border: 2px solid #d4a574 !important;
    background-color: transparent !important;
    transition: all 0.3s ease !important;
    margin-left: 40px;
    position: relative;
    top: 0 !important;
    right: 0 !important;
}

.main-menu-book:hover {
    background-color: #d4a574 !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

/* Jazykové menu */
.language {
    position: absolute;
    top: 50px;
    right: 60px;
    z-index: 10;
}

#lang a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin-left: 15px;
    transition: color 0.3s ease;
}

#lang a:hover,
#lang a.active {
    color: #d4a574;
}

/* =============================================================================
   HERO SEKCIA S OBRÁZKAMI
   ============================================================================= */

.homepage-swiper-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.homepage-swiper-img .swiper-slide {
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

.homepage-swiper-img .swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.4) 0%,
        rgba(44, 44, 44, 0.2) 50%,
        rgba(212, 165, 116, 0.1) 100%
    );
    z-index: 1;
}

/* =============================================================================
   HLAVNÝ NADPIS NA HERO SEKCII
   ============================================================================= */

.homepage-slider::before {
    content: "SUPERIOR HOTEL IN WORLD";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    line-height: 1.2;
}

/* Podnadpis */
.homepage-slider::after {
    content: "Completely exploit bleeding-edge web-readiness for diverse interfaces. Distinctively matrix visionary technologies rather than resource.";
    position: absolute;
    top: calc(50% + 120px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
    padding: 0 20px;
}

/* =============================================================================
   BOOKING FORMULÁR
   ============================================================================= */

.book-row {
    position: absolute !important;
    bottom: 80px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 20 !important;
    width: 100% !important;
    max-width: 1000px !important;
    padding: 0 20px;
}

.book-container {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 8px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
    color: #2c2c2c !important;
    padding: 40px !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.book-container .row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px;
}

.book-container .col-md-4 {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.book-container .date {
    position: relative;
    padding: 20px;
    border-right: 1px solid rgba(44, 44, 44, 0.1);
}

.book-container .date:last-of-type {
    border-right: none;
}

.book-container .popis {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.book-container .day {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1;
    margin-bottom: 5px;
}

.book-container .month {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Book Now tlačidlo v booking formulári */
.book-container a {
    display: inline-block !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: white !important;
    background: linear-gradient(135deg, #d4a574 0%, #c9966a 100%) !important;
    text-decoration: none !important;
    padding: 15px 40px !important;
    border: none !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3) !important;
}

.book-container a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4) !important;
    background: linear-gradient(135deg, #c9966a 0%, #b8855f 100%) !important;
}

/* =============================================================================
   LOGO V DOLNEJ ČASTI
   ============================================================================= */

.hg-logo {
    position: absolute !important;
    bottom: 30px !important;
    left: 60px !important;
    width: 120px !important;
    height: auto !important;
    z-index: 10 !important;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hg-logo:hover {
    opacity: 1;
}

/* =============================================================================
   RESPONSIVE DIZAJN
   ============================================================================= */

@media (max-width: 1200px) {
    .main-menu {
        padding: 0 40px;
    }
    
    .homepage-slider > img {
        left: 40px !important;
        width: 160px !important;
    }
    
    .language {
        right: 40px;
    }
}

@media (max-width: 768px) {
    .main-menu {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
        top: 30px;
    }
    
    .main-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .main-menu ul li {
        margin: 0 15px;
    }
    
    .main-menu-book {
        margin-left: 0 !important;
        margin-top: 10px;
    }
    
    .homepage-slider > img {
        left: 20px !important;
        top: 20px !important;
        width: 140px !important;
    }
    
    .language {
        top: 30px;
        right: 20px;
    }
    
    .homepage-slider::before {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        padding: 0 20px;
        line-height: 1.1;
    }
    
    .homepage-slider::after {
        top: calc(50% + 80px);
        font-size: 14px;
        padding: 0 30px;
    }
    
    .book-row {
        bottom: 40px !important;
        padding: 0 15px;
    }
    
    .book-container {
        padding: 25px !important;
    }
    
    .book-container .row {
        flex-direction: column !important;
        gap: 20px;
    }
    
    .book-container .date {
        border-right: none;
        border-bottom: 1px solid rgba(44, 44, 44, 0.1);
        padding: 15px;
    }
    
    .book-container .date:last-of-type {
        border-bottom: none;
    }
    
    .hg-logo {
        bottom: 20px !important;
        left: 20px !important;
        width: 100px !important;
    }
    
    .banner-content {
        bottom: 80px;
        left: 40px;
        right: 40px;
    }
    
    .banner-content h2 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        margin-bottom: 10px;
    }
    
    .banner-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .banner-link {
        padding: 10px 25px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .main-menu ul li {
        margin: 0 10px;
    }
    
    .main-menu ul li a {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .book-container .day {
        font-size: 24px;
    }
    
    .book-container a {
        padding: 12px 30px !important;
        font-size: 12px !important;
    }
    
    .banner-content {
        bottom: 60px;
        left: 20px;
        right: 20px;
    }
    
    .banner-content h2 {
        font-size: clamp(1.2rem, 6vw, 1.8rem) !important;
        margin-bottom: 8px;
    }
    
    .banner-content p {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .banner-link {
        padding: 8px 20px;
        font-size: 10px;
    }
}

/* =============================================================================
   ANIMÁCIE A PRECHODY
   ============================================================================= */

.homepage-slider,
.main-menu,
.book-container {
    animation: fadeInUp 1s ease-out;
}

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

.book-container {
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

/* =============================================================================
   BANNER OBSAH V SWIPER SLIDE
   ============================================================================= */

.banner-content {
    position: absolute;
    bottom: 120px;
    left: 60px;
    right: 60px;
    z-index: 15;
    color: white;
    text-align: left;
    max-width: 600px;
}

.banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.banner-link {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white !important;
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.banner-link:hover {
    background-color: #d4a574;
    border-color: #d4a574;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
}

/* =============================================================================
   SWIPER NAVIGÁCIA ŠTÝLY
   ============================================================================= */

.swiper-pagination {
    bottom: 30px !important;
    z-index: 10;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 0.7 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: #d4a574 !important;
    opacity: 1 !important;
    transform: scale(1.2);
}

/* =============================================================================
   LUXURY EFEKTY
   ============================================================================= */

.book-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, #d4a574, transparent, #d4a574);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-container:hover::before {
    opacity: 0.3;
}

/* Parallax efekt pre hero sekciu */
.homepage-swiper-img .swiper-slide {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* Luxusné farby a gradienty */
:root {
    --luxury-gold: #d4a574;
    --luxury-gold-dark: #c9966a;
    --luxury-dark: #2c2c2c;
    --luxury-light: #faf9f7;
    --luxury-gray: #f5f5f0;
}

/* =============================================================================
   SWIPER SLIDERY ŠTÝLY (#ser, #plogos)
   ============================================================================= */

/* Services Slider (#ser) */
#ser.swiper-container {
    width: 100%;
    height: auto;
    padding: 20px 0;
    margin: 40px 0;
}

#ser .swiper-wrapper {
    align-items: center;
}

#ser .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: auto;
    min-height: 120px;
}

#ser .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

#ser .swiper-slide img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Partner Logos Slider (#plogos) */
#plogos.swiper-container {
    width: 100%;
    height: auto;
    padding: 30px 0;
    margin: 50px 0;
    background: #f8f8f8;
    border-radius: 12px;
}

#plogos .swiper-wrapper {
    align-items: center;
}

#plogos .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 6px;
    padding: 25px 15px;
    transition: all 0.3s ease;
    height: auto;
    min-height: 100px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

#plogos .swiper-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#plogos .swiper-slide img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

#plogos .swiper-slide:hover img {
    filter: grayscale(0%);
}

/* Všeobecné Swiper štýly pre #ser a #plogos */
#ser.swiper-container,
#plogos.swiper-container {
    overflow: hidden;
    position: relative;
}

#ser .swiper-slide,
#plogos .swiper-slide {
    flex-shrink: 0;
    width: auto;
    position: relative;
}

/* Responsive štýly pre service a logo slidery */
@media (max-width: 768px) {
    #ser .swiper-slide,
    #plogos .swiper-slide {
        padding: 15px;
        min-height: 80px;
    }
    
    #ser .swiper-slide img {
        max-height: 60px;
    }
    
    #plogos .swiper-slide img {
        max-height: 45px;
    }
    
    #ser.swiper-container,
    #plogos.swiper-container {
        padding: 15px 0;
        margin: 30px 0;
    }
}

@media (max-width: 480px) {
    #ser .swiper-slide,
    #plogos .swiper-slide {
        padding: 10px;
        min-height: 70px;
    }
    
    #ser .swiper-slide img,
    #plogos .swiper-slide img {
        max-height: 40px;
    }
}
