/* Custom styles for Liraspin Slovenija */
/* Note: This template primarily uses Tailwind CSS */
/* Add any custom styles here if needed */

body {
    font-family: 'Open Sans', 'Roboto', sans-serif;
}

/* Hero section styling - ensures proper display with background image and overlay */
section.relative.overflow-hidden {
    min-height: 500px;
}

/* Hero overlay - enhanced dark gradient for better text readability */
section.relative.overflow-hidden > .absolute.inset-0:nth-child(2) {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.7) 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #34d399;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6ee7b7;
}

/* Mobile menu overlay - hidden on desktop */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 40;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile menu panel - hidden on desktop */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #0f172a;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 50;
    transition: right 0.3s ease;
    overflow-y: auto;
    visibility: visible;
}

@media (min-width: 768px) {
    .mobile-menu-panel {
        display: none !important;
    }
}

.mobile-menu-panel.active {
    right: 0;
}

/* Burger button - visible on mobile only */
.burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 60;
    position: relative;
}

@media (max-width: 767px) {
    .burger-button {
        display: flex !important;
    }
}

.burger-button span {
    width: 100%;
    height: 3px;
    background: #34d399;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.burger-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-button.active span:nth-child(2) {
    opacity: 0;
}

.burger-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Ensure register button and language selector are visible on desktop */
@media (min-width: 768px) {
    .header-register-btn.hidden {
        display: inline-block !important;
    }
    
    .header-language-selector.hidden {
        display: inline-block !important;
    }
}

@media (max-width: 767px) {
    .header-register-btn {
        display: none !important;
    }
    
    .header-language-selector {
        display: none !important;
    }
}

