

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
}

/* Animated background with hexagon pattern */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, transparent 2%, rgba(255, 94, 0, 0.03) 2%, rgba(255, 94, 0, 0.03) 3%, transparent 3%),
        radial-gradient(circle at 75% 75%, transparent 2%, rgba(0, 178, 255, 0.03) 2%, rgba(0, 178, 255, 0.03) 3%, transparent 3%);
    background-size: 80px 80px;
    animation: grid-move 30s linear infinite;
    z-index: -2;
}

/* Animated shapes */
.shapes-container {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-circle {
    width: 300px;
    height: 300px;
    border: 2px solid #FF5E00;
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation: float-rotate 20s ease-in-out infinite;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(0, 178, 255, 0.2);
    top: 60%;
    right: 15%;
    animation: float-rotate 25s ease-in-out infinite reverse;
}

.shape-square {
    width: 150px;
    height: 150px;
    border: 2px solid #00B2FF;
    transform: rotate(45deg);
    bottom: 20%;
    left: 20%;
    animation: float-rotate 22s ease-in-out infinite;
}

@keyframes float-rotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translateY(-10px) rotate(270deg) scale(1.05);
    }
}

/* Gradient overlay */
.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 94, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 178, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: -1;
    animation: gradient-shift 10s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Floating particles */
.particle {
    position: fixed;
    pointer-events: none;
    opacity: 0;
    z-index: 1;
}

.particle::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #FF5E00;
    box-shadow: 0 0 10px #FF5E00, 0 0 20px #FF5E00;
    animation: float-up 15s linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 94, 0, 0.1);
}

nav.scrolled {
    padding: 15px 50px;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 5px 30px rgba(255, 94, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-svg {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(45deg, #FF5E00, #00B2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
}

@keyframes glow {
    0%, 100% { 
        filter: brightness(1);
        text-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
    }
    50% { 
        filter: brightness(1.5);
        text-shadow: 0 0 40px rgba(255, 94, 0, 0.8);
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.nav-links a.active {
    opacity: 1;
    color: #FF5E00;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    border-color: #FF5E00;
    box-shadow: inset 0 0 10px rgba(255, 94, 0, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF5E00, #00B2FF);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.8);
}

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

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #ffffff;
    margin: 4px 0;
    transition: 0.3s;
}

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

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

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

/* Hero */


.subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    opacity: 0.8;
    margin-top: 20px;
    max-width: 600px;
    animation: subtitle-fade 1s ease forwards;
    animation-delay: 0.5s;
}

@keyframes subtitle-fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 0.8; transform: translateY(0); }
}

.cta-container {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    z-index: 3;
}

.cta-button {
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(45deg, #FF5E00, #00B2FF);
    color: #ffffff;
}

.cta-secondary {
    background: transparent;
    border: 2px solid #FF5E00;
    color: #FF5E00;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 94, 0, 0.5);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    transform: skewX(-20deg);
}

.cta-button:hover::after {
    left: 100%;
}

/* Features */
.features {
    padding: 100px 20px;
    text-align: center;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #FF5E00, #00B2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 94, 0, 0.5);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.feature-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 94, 0, 0.2);
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.tab-item:hover {
    opacity: 1;
    background: rgba(255, 94, 0, 0.1);
}

.tab-item.active {
    background: linear-gradient(45deg, rgba(255, 94, 0, 0.2), rgba(0, 178, 255, 0.2));
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.3);
}

.tab-icon {
    font-size: 1.5rem;
}

.feature-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 94, 0, 0.2);
    text-align: left;
}

.content-panel {
    display: none;
}

.content-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.content-panel h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FF5E00;
}

.content-panel p {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.feature-list li::before {
    content: '►';
    position: absolute;
    left: 0;
    color: #00B2FF;
}

/* About */
.about {
    padding: 100px 20px;
    background: linear-gradient(to bottom, rgba(10,10,10,1), rgba(20,20,20,1));
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00B2FF;
}

.about-text p {
    line-height: 1.8;
    opacity: 0.8;
}

.about-visual {
    position: relative;
    height: 400px;
}

.about-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #FF5E00, #00B2FF);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.1); }
}

.about-graphic-alt {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.hexagon {
    width: 100px;
    height: 57.735px;
    background: rgba(255, 94, 0, 0.3);
    position: relative;
    animation: rotate 10s linear infinite;
}

.hexagon::before {
    content: "";
    position: absolute;
    top: -28.8675px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 28.8675px solid rgba(255, 94, 0, 0.3);
}

.hexagon::after {
    content: "";
    position: absolute;
    bottom: -28.8675px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 28.8675px solid rgba(255, 94, 0, 0.3);
}

/* Artists Section */
.artists {
    padding: 100px 20px;
    text-align: center;
}

.artist-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-card {
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 10px #000000;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.artist-card:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

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

/* Fullscreen Gallery */
.fullscreen-gallery {
    padding: 100px 20px;
    text-align: center;
}

.gallery-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.fullscreen-modal.active {
    display: flex;
}

.fullscreen-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close, .prev, .next {
    position: absolute;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close {
    top: 20px;
    right: 20px;
}

.prev {
    left: 20px;
    top: 50%;
}

.next {
    right: 20px;
    top: 50%;
}

/* Contact */
.contact {
    padding: 100px 20px;
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 94, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 94, 0, 0.3);
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF5E00;
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #FF5E00, #00B2FF);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.5);
}

.contact-info {
    padding: 40px;
}

.contact-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffffff, #FF5E00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF5E00, #00B2FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-details h4 {
    color: #FF5E00;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-details p {
    opacity: 0.8;
}

/* Map Section */
.map-container {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(10px);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    text-align: center;
    opacity: 0.6;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 94, 0, 0.1) 50%, transparent 60%);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 94, 0, 0.2);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #FF5E00;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #00B2FF;
    text-shadow: 0 0 10px currentColor;
}

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

.copyright a {
    color: #FF5E00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: #00B2FF;
    text-shadow: 0 0 10px currentColor;
}

.logo-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.copyright-logo {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 94, 0, 0.5));
    transition: transform 0.3s ease;
}

.copyright-logo:hover {
    transform: scale(1.1);
}

/* Scanlines effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
        transparent 50%,
        rgba(255, 94, 0, 0.01) 50%
    );
    background-size: 100% 4px;
    animation: scanlines 8s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

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

@keyframes float {
    0%, 100% { 
        transform: translateY(0);
        box-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
    }
    50% { 
        transform: translateY(-10px);
        box-shadow: 0 10px 40px rgba(255, 94, 0, 0.7);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        padding: 0 20px;
    }

    .glitch-text {
        font-size: clamp(1.2rem, 4.9vw, 2.4rem);
    }

    .text-rotator {
        min-height: 150px;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

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

    .feature-tabs {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding: 10px;
    }

    .tab-item {
        min-width: 120px;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-graphic {
        width: 200px;
        height: 200px;
    }

    .shape-circle,
    .shape-triangle,
    .shape-square {
        transform: scale(0.6);
    }

    .artist-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .gallery-container {
        flex-direction: column;
        align-items: center;
    }
}
/* Hero sekcija - prilagođeno za spojeni dizajn */
.hero {
    height: auto; /* Više nije fiksno 100vh, da se prilagodi sadržaju */
    padding: 100px 20px; /* Dodat padding za bolji spacing */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 3;
}

/* Logo u bijelom okviru */
.logo-frame {
    margin-bottom: 40px; /* Razmak između loga i texta */
    border: 2px solid #ffffff; /* Bijeli okvir */
    border-radius: 50%; /* Okrugli oblik za ljepši dizajn */
    padding: 20px; /* Unutarnji padding oko loga */
    display: inline-block;
    background: rgba(255, 255, 255, 0.1); /* Blago prozirna bijela pozadina za kontrast */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); /* Blagi sjaj */
}

.hero-logo {
    width: 150px; /* Veličina loga - prilagodi po potrebi */
    height: auto;
}

/* Home info content - centriran text */
.home-info-content {
    text-align: center; /* Sredina za sav text */
    max-width: 800px; /* Ograniči širinu da bude u skladu sa info-card */
    margin: 0 auto; /* Centriraj cijeli home-info-content */
}

.home-info-content .section-title {
    font-size: 3rem; /* Veći naslov za bolji fokus */
    margin-bottom: 20px;
    text-align: center; /* Eksplicitno centriranje */
}

.home-info-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-align: center; /* Eksplicitno centriranje */
}

.info-card {
    max-width: 800px; /* Ograniči širinu za bolju čitljivost */
    margin: 0 auto; /* Centriraj karticu */
    padding: 30px;
    background: rgba(255, 255, 255, 0.05); /* Blaga pozadina za kontrast */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Bijeli okvir oko kartice */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); /* Blagi sjaj */
}

.info-card p.highlight {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left; /* Lijevo poravnanje za tekst unutar kartice */
}

.info-card p.small {
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: left; /* Lijevo poravnanje za kontakt info */
}

/* Responsive prilagodbe */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }

    .logo-frame {
        padding: 15px;
    }

    .hero-logo {
        width: 120px;
    }

    .home-info-content .section-title {
        font-size: 2.5rem;
    }

    .info-card {
        padding: 20px;
    }

    .home-info-content {
        max-width: 100%; /* Puni prostor na manjim ekranima */
        padding: 0 10px;
    }
}

/* ===== FIXED & OPTIMIZED STYLES ===== */
.home-info-content .subtitle {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.fullscreen-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.fullscreen-image {
    width: auto;
    height: auto;
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
}

@media (max-width: 480px) {
    .prev, .next, .close {
        font-size: 2rem;
    }
    .gallery-image {
        width: 100%;
        height: auto;
    }
}

/* Uklonjena map-overlay jer se koristi pravi Google Maps iframe */
.map-overlay { display: none !important; }

@media (max-width: 480px) {
    nav {
        padding: 10px 15px;
    }

    .nav-links a {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero {
        padding: 60px 15px;
    }

    .home-info-content .section-title {
        font-size: 2rem;
    }

    .info-card p.highlight {
        font-size: 1rem;
        text-align: justify;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .gallery-image {
        width: 100%;
        height: auto;
    }

    .fullscreen-image {
        max-width: 90%;
        max-height: 80vh;
    }
}
