:root {
    --ocean-deep: #005B96;
    --ocean-blue: #0077B6;
    --ocean-light: #0091D5;
    --sand-gold: #D4AF37;
    --sand-light: #F4E7C3;
    --white: #FFFFFF;
    --cream: #FAF9F6;
    --text-dark: #1A1A2E;
    --text-light: #4A4A6A;
    --shadow: rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent horizontal overflow and zoom on mobile */
html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: none;
}

/* Responsive media elements */
img, video, iframe {
    max-width: 100%;
    height: auto;
    touch-action: pan-y;
    display: block;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    max-width: 100%;
}

/* Prevent horizontal scroll on all containers */
.container,
.slider-container,
.calendar-grid,
.gallery-grid,
.contact-grid,
.footer,
section,
main {
    max-width: 100%;
    overflow-x: hidden;
}

/* Prevent zoom on form inputs - critical for iOS */
input, textarea, select {
    font-size: 16px !important;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
}

button, a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Additional mobile fixes */
@media (max-width: 768px) {
    * {
        -webkit-touch-callout: none;
    }
    
    /* Prevent double-tap zoom on links and buttons */
    a, button, input, textarea {
        touch-action: manipulation !important;
    }
}

/* Header with Image */
.header {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-light) 100%);
    min-height: 100px;
    z-index: 1;
}

.header-image-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

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

/* Header Logo - levo zgoraj */
.header-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 320px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 2050;
    animation: logoFloat 4s ease-in-out infinite, logoPulse 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 4px 15px rgba(0, 91, 150, 0.3));
    }
    50% {
        filter: drop-shadow(0 6px 25px rgba(0, 119, 182, 0.6));
    }
}

/* Desktop - slika v celoti */
@media (min-width: 1024px) {
    .header-image {
        max-height: none;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
    .header-image-container {
        max-width: 70%;
        margin: 0 auto;
    }
}

/* Weather Widget */
.weather-widget {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 2100;
}

.weather-icon {
    font-size: 2rem;
    animation: sunPulse 3s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.weather-info {
    display: flex;
    flex-direction: column;
}

.weather-temp {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ocean-deep);
}

.weather-location {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Animated Slovenian Flag */
.flag-si-animated {
    display: inline-block;
    animation: flagWave 2s ease-in-out infinite;
    font-size: 1.2em;
}

@keyframes flagWave {
    0%, 100% { 
        transform: rotate(-5deg) scale(1); 
    }
    25% { 
        transform: rotate(5deg) scale(1.1); 
    }
    50% { 
        transform: rotate(-3deg) scale(1.05); 
    }
    75% { 
        transform: rotate(3deg) scale(1.1); 
    }
}

/* Mobile Weather Widget - Larger Sun */
@media (max-width: 768px) {
    .header-image-container {
        max-width: 100%;
    }
    
    .header-logo {
        max-width: 220px;
        max-height: 140px;
        top: 15px;
        left: 15px;
    }
    
    .weather-widget {
        top: auto;
        bottom: 10px;
        right: 10px;
        padding: 6px 10px;
        border-radius: 10px;
        gap: 6px;
    }
    
    .weather-icon {
        font-size: 1.3rem;
    }
    
    .weather-temp {
        font-size: 0.85rem;
    }
    
    .weather-location {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .header-logo {
max-width: 150px;
    max-height: 63px;
    top: 15px;
    left: -8px;
    background-color: #0000007a;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    }
    
    .weather-icon {
        font-size: 1.2rem;
    }
    
    .weather-widget {
        padding: 5px 8px;
        gap: 5px;
        bottom: 8px;
        right: 8px;
    }
    
    .weather-temp {
        font-size: 0.8rem;
    }
}

/* Navigation Menu */
.nav-menu {
    background: var(--white);
    box-shadow: 0 4px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 2000;
}

.nav-menu .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: unset;
}

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

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-deep));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 10px 0;
    animation: menuPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.4);
}

@keyframes menuPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 119, 182, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(0, 119, 182, 0.6);
    }
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

.menu-text {
    font-size: 0.9rem;
}

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

.menu-item {
    margin: 0;
}

.menu-link {
    display: block;
    padding: 20px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.menu-link::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ocean-blue), var(--sand-gold));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.menu-link:hover {
    color: var(--ocean-blue);
    transform: translateY(-3px);
}

.menu-link:hover::before {
    width: 80%;
}

.language-switcher select {
    padding: 8px 15px;
    border: 2px solid var(--ocean-light);
    border-radius: 25px;
    background: var(--white);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
}

.language-switcher select:hover {
    background: var(--ocean-light);
    color: var(--white);
    transform: scale(1.05);
}

/* Slider Section */
.slider-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 100%);
    position: relative;
    z-index: 1;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    position: relative;
    min-height: 600px;
    height: auto;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding: 40px 20px;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.16);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(3px);
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    animation: slideContentIn 1s ease-out;
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 3rem;
    color: var(--ocean-deep);
    cursor: pointer;
    padding: 20px 25px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px var(--shadow);
}

.slider-btn:hover {
    background: var(--ocean-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--sand-gold);
    transform: scale(1.3);
}

/* Calendar Section */
.calendar-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--ocean-deep);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-blue), var(--sand-gold));
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
    margin-top: 40px;
}

.month-calendar {
    background: var(--cream);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.month-calendar:hover {
    transform: translateY(-10px);
}

.month-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--ocean-deep);
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--ocean-light);
    padding-bottom: 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day-name {
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 5px;
}

.day {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.day.available {
    background: #e8f5e9;
    color: var(--text-dark);
}

.day.occupied {
    background: var(--ocean-blue);
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
}

/* Rdeča diagonalna črta čez zasedene dni */
.day.occupied::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom right,
        transparent calc(50% - 1px),
        #ff0000 calc(50% - 1px),
        #ff0000 calc(50% + 1px),
        transparent calc(50% + 1px)
    );
    pointer-events: none;
    z-index: 2;
}

.day.occupied::after {
    content: '☀';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 1.2rem;
    animation: rotateSun 4s linear infinite;
    z-index: 3;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 119, 182, 0);
    }
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

/* Calendar Buttons */
.calendar-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.calendar-btn {
    background: var(--cream);
    color: var(--ocean-deep);
    border: 2px solid var(--ocean-blue);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 91, 150, 0.2);
}

.calendar-btn:hover {
    background: var(--ocean-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 91, 150, 0.3);
}

.calendar-btn.active {
    background: var(--ocean-blue);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 91, 150, 0.4);
    transform: scale(1.05);
}

.calendar-btn.active:hover {
    background: var(--ocean-deep);
}

/* Calendar Navigation */
.calendar-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.calendar-nav-btn {
    background: var(--ocean-blue);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.calendar-nav-btn:hover {
    background: var(--ocean-deep);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
}

.calendar-nav-btn:active {
    transform: scale(0.95);
}

.calendar-current-month {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ocean-deep);
    min-width: 250px;
    text-align: center;
}

/* Today marker */
.day.today {
    border: 3px solid var(--sand-gold) !important;
    font-weight: 700;
}

.day.today::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: var(--sand-gold);
    border-radius: 50%;
}

.day.empty {
    background: transparent;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.legend-color.available {
    background: #e8f5e9;
}

.legend-color.occupied {
    background: var(--ocean-blue);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--sand-light) 0%, var(--cream) 100%);
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 91, 150, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: 3px solid transparent;
}

.gallery-item::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    z-index: 5;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 91, 150, 0.35);
    border-color: var(--sand-gold);
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(0, 91, 150, 0.95) 0%, 
        rgba(0, 91, 150, 0.85) 50%,
        rgba(0, 91, 150, 0.6) 80%,
        transparent 100%);
    padding: 25px 30px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, 
        rgba(0, 91, 150, 0.98) 0%, 
        rgba(0, 91, 150, 0.9) 60%,
        rgba(0, 91, 150, 0.7) 85%,
        transparent 100%);
    padding-bottom: 30px;
    min-height: 140px;
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.5),
            0 0 10px rgba(255, 215, 0, 0.3),
            0 0 20px rgba(255, 215, 0, 0.2);
    }
    50% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 30px rgba(255, 215, 0, 0.4),
            0 0 40px rgba(255, 215, 0, 0.3);
    }
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 50px;
    margin-top: 40px;
}

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

.contact-map {
    min-height: 500px;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    border-radius: 15px;
}

/* Leaflet map styling */
#map {
    height: 500px;
    width: 100%;
    border-radius: 15px;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--cream);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ocean-blue);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--ocean-deep);
    margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

/* Ensure email stays on one line on mobile */
.contact-details a[href^="mailto:"] {
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
}

@media (max-width: 768px) {
    .contact-details a[href^="mailto:"] {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-details a[href^="mailto:"] {
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .contact-details a[href^="mailto:"] {
        font-size: 0.75rem;
    }
}

.contact-details a:hover {
    color: var(--ocean-blue);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--text-dark) 100%);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--sand-gold);
}

/* Animated Footer Title */
.footer-title-animated {
    background: linear-gradient(
        90deg,
        var(--sand-gold) 0%,
        var(--ocean-light) 25%,
        var(--sand-gold) 50%,
        var(--ocean-light) 75%,
        var(--sand-gold) 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 
        footerTitleGradient 6s ease-in-out infinite,
        footerTitleGlow 4s ease-in-out infinite,
        footerTitlePulse 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

@keyframes footerTitleGradient {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes footerTitleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3))
                drop-shadow(0 0 10px rgba(0, 145, 213, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6))
                drop-shadow(0 0 20px rgba(0, 145, 213, 0.4))
                drop-shadow(0 0 25px rgba(212, 175, 55, 0.3));
    }
}

@keyframes footerTitlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.footer-section p,
.footer-section a {
    color: var(--sand-light);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--sand-gold);
}

.footer-section ul {
    list-style: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--sand-light);
}

/* News Notification */
.news-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
    z-index: 9999;
    animation: slideInRight 0.5s ease-out;
    overflow: hidden;
}

.news-notification.hidden {
    display: none;
}

@keyframes slideInRight {
    from {
        transform: translateX(500px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.news-content {
    padding: 20px;
    position: relative;
}

.news-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--ocean-blue);
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.news-close:hover {
    background: var(--ocean-deep);
    transform: rotate(90deg);
}

.news-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.news-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--ocean-deep);
    margin-bottom: 10px;
}

.news-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-deep) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 91, 150, 0.4);
    border: 2px solid var(--ocean-light);
}

.news-link:hover {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 91, 150, 0.6);
    border-color: var(--sand-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2.5rem;
    }
    
    .sun-icon {
        r: 30;
    }
    
    .menu-items {
        flex-direction: column;
    }
    
    .menu-link {
        padding: 15px 20px;
    }
    
    .slide {
        min-height: 500px;
        height: auto;
        padding: 30px 15px;
    }
    
    .slide-content {
        padding: 20px 15px;
        width: 95%;
        max-width: 100%;
        max-height: 70vh;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        word-wrap: break-word;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .calendar-grid,
    .gallery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-section {
        padding: 50px 20px;
    }
    
    .gallery-item {
        margin-bottom: 10px;
    }
    
    .gallery-item img {
        height: 300px;
        object-position: center;
    }
    
    .gallery-overlay {
        padding: 15px 20px;
        min-height: 90px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .slider-btn {
        font-size: 2rem;
        padding: 15px 20px;
    }
    
    .news-notification {
        max-width: 90%;
        right: 5%;
    }
    
    /* Mobile Menu */
    .menu-toggle {
        display: flex;
    }
    
    .menu-items {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 15px 15px;
        overflow: hidden;
        z-index: 2000;
    }
    
    .menu-items.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .menu-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .menu-item:last-child {
        border-bottom: none;
    }
    
    .menu-link {
        padding: 15px 20px;
        text-align: center;
    }
    
    .language-switcher {
        padding: 15px 20px;
    }
    
    .language-switcher select {
        width: 100%;
    }
    
    /* Mobile Calendar */
    .calendar-section {
        padding: 40px 10px;
    }
    
    .calendar-days {
        gap: 4px;
    }
    
    .day {
        padding: 8px 4px;
        font-size: 0.8rem;
    }
    
    .day-name {
        font-size: 0.7rem;
        padding: 3px;
    }
    
    .month-calendar {
        padding: 15px 10px;
    }
    
    .calendar-navigation {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .calendar-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .calendar-current-month {
        font-size: 1.2rem;
        min-width: auto;
        order: -1;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .calendar-buttons {
        gap: 10px;
        margin: 20px 0;
    }
    
    .calendar-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.8rem;
    }
    
    .slide {
        min-height: 400px;
        padding: 20px 10px;
    }
    
    .slide-content {
        padding: 15px 12px;
        max-height: 65vh;
    }
    
    .slide-content h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .calendar-navigation {
        gap: 8px;
    }
    
    .calendar-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .calendar-current-month {
        font-size: 1.1rem;
    }
    
    .calendar-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .day {
        padding: 6px 2px;
        font-size: 0.75rem;
    }
    
    .day-name {
        font-size: 0.65rem;
    }
    
    .day.occupied::after {
        content: '';
        display: none;
    }
    
    .gallery-grid {
        gap: 15px;
        margin-top: 20px;
    }
    
    .gallery-section {
        padding: 40px 15px;
    }
    
    .gallery-item {
        border-radius: 15px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .gallery-overlay {
        padding: 12px 15px;
        min-height: 80px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -10px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: var(--sand-gold);
}

#lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.lightbox-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    padding: 30px 20px 20px;
    border-radius: 0 0 10px 10px;
}

.lightbox-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--sand-gold);
}

.lightbox-info p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}

/* Responsive lightbox info */
@media (max-width: 768px) {
    .lightbox-info {
        padding: 20px 15px 15px;
    }
    
    .lightbox-info h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .lightbox-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .lightbox-info {
        padding: 15px 10px 10px;
    }
    
    .lightbox-info h3 {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    .lightbox-info p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* News Popup Overlay - Fullscreen */
.news-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.news-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.news-popup-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.news-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--ocean-blue);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.news-popup-close:hover {
    background: var(--ocean-deep);
    transform: rotate(90deg) scale(1.1);
}

.news-popup-content img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
}

.news-popup-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--ocean-deep);
    margin-bottom: 20px;
}

.news-popup-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Gallery Navigation Arrows */
.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 3rem;
    color: var(--ocean-deep);
    cursor: pointer;
    padding: 20px 25px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10002;
    box-shadow: 0 4px 12px var(--shadow);
}

.gallery-lightbox-nav:hover {
    background: var(--ocean-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-prev {
    left: 20px;
}

.gallery-nav-next {
    right: 20px;
}

/* Gallery item hover enhancement */
.gallery-item {
    cursor: pointer;
}

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

.gallery-item img {
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -50px;
        right: 0;
        font-size: 2rem;
    }
    
    .lightbox-info h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-info p {
        font-size: 0.9rem;
    }
    
    #lightbox-image {
        max-height: 60vh;
    }
    
    .news-popup-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .news-popup-content h2 {
        font-size: 1.8rem;
    }
    
    .news-popup-content p {
        font-size: 1rem;
    }
    
    .news-popup-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .gallery-lightbox-nav {
        font-size: 2rem;
        padding: 15px 20px;
    }
    
    .gallery-nav-prev {
        left: 10px;
    }
    
    .gallery-nav-next {
        right: 10px;
    }
}

/* Gallery Image Count Badge */
.image-count {
    display: inline-block;
    background: var(--sand-gold);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Lightbox Image Counter */
.lightbox-counter {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--sand-gold);
    opacity: 0.9;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .image-count {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .lightbox-counter {
        font-size: 0.9rem;
        margin-top: 10px;
    }
}

/* Gallery Slider Styles */
.gallery-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 60px;
}

.gallery-slider-wrapper {
    width: 100%;
    overflow: visible;
}

.gallery-slider-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.gallery-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 3rem;
    color: var(--ocean-deep);
    cursor: pointer;
    padding: 20px 25px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slider-btn:hover {
    background: var(--ocean-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-slider-prev {
    left: 0;
}

.gallery-slider-next {
    right: 0;
}

/* Tablet - 2 galleries */
@media (min-width: 769px) and (max-width: 1023px) {
    .gallery-slider-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-slider-container {
        padding: 0 50px;
    }
    
    .gallery-slider-btn {
        font-size: 2.5rem;
        padding: 15px 20px;
    }
}

/* Mobile - 1 gallery */
@media (max-width: 768px) {
    .gallery-slider-slide {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-slider-container {
        padding: 0 40px;
    }
    
    .gallery-slider-btn {
        font-size: 2rem;
        padding: 12px 18px;
    }
    
    .gallery-slider-prev {
        left: -5px;
    }
    
    .gallery-slider-next {
        right: -5px;
    }
}

@media (max-width: 480px) {
    .gallery-slider-container {
        padding: 0 35px;
    }
    
    .gallery-slider-btn {
        font-size: 1.8rem;
        padding: 10px 15px;
    }
    
    .gallery-slider-prev {
        left: -10px;
    }
    
    .gallery-slider-next {
        right: -10px;
    }
}

/* Live Cam Button - levo spodaj v headerju */
.live-cam-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(220, 38, 38, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    z-index: 2050;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    animation: pulse-cam 2s ease-in-out infinite;
}

@keyframes pulse-cam {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(220, 38, 38, 0.6);
    }
}

.live-cam-btn:hover {
    background: rgba(185, 28, 28, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(220, 38, 38, 0.7);
}

.live-cam-btn:active {
    transform: scale(0.98);
}

.cam-icon {
    font-size: 1.3rem;
    animation: cam-blink 2s ease-in-out infinite;
}

@keyframes cam-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cam-text {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .live-cam-btn {
        bottom: 15px;
        left: 15px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .cam-icon {
        font-size: 1.1rem;
    }
    
    .cam-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .live-cam-btn {
        bottom: 10px;
        left: 10px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .cam-icon {
        font-size: 1rem;
    }
    
    .cam-text {
        font-size: 0.8rem;
    }
}

/* Live Cam Overlay */
.live-cam-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.live-cam-overlay.active {
    display: flex;
    opacity: 1;
}

.live-cam-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    background: #1a1a2e;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: liveCamZoom 0.4s ease-out;
}

@keyframes liveCamZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.live-cam-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
}

.live-cam-close:hover {
    background: rgba(185, 28, 28, 1);
    transform: rotate(90deg) scale(1.1);
}

.live-cam-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Camera Selector Buttons */
.camera-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.camera-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.camera-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--sand-gold);
    transform: translateY(-2px);
}

.camera-btn.active {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-deep) 100%);
    border-color: var(--sand-gold);
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.5);
}

.camera-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.7);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% {
        background: rgba(220, 38, 38, 0.2);
    }
    50% {
        background: rgba(220, 38, 38, 0.4);
    }
}

.live-cam-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.live-cam-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.live-cam-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Mobile responsive for overlay */
@media (max-width: 768px) {
    .live-cam-container {
        padding: 20px;
        margin: 10px;
    }
    
    .live-cam-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .camera-selector {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .camera-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .live-indicator {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .live-cam-close {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
        top: 10px;
        right: 10px;
    }
    
    .live-cam-info {
        font-size: 1rem;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .live-cam-container {
        padding: 15px;
        margin: 5px;
    }
    
    .live-cam-title {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .camera-selector {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .camera-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .live-indicator {
        font-size: 0.85rem;
    }
    
    .live-cam-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .live-cam-info {
        font-size: 0.9rem;
    }
}