/* Fontovi */
@font-face {
    font-family: 'Tan Mon Cheri';
    src: url('TAN-MON CHERI-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Varijable */
:root {
    --primary-color: #c0a080;
    --border-width: 0px;
    --border-style: solid;
    --border-color: #c0a080;
    --border: var(--border-width) var(--border-style) var(--border-color);
    --bg-color: #ede4d8;
    --text-color: #333;
    --hover-color: #c0a080;
}

/* Osnovni reset i stilovi */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* Barlow za sve tekstove osim h tagova */
p, a, li, span, div:not(.logo a), input, textarea, button, .member-role, .photo-credit, .kontakt-info p {
    font-family: 'Barlow', sans-serif;
}

/* Tan Mon Cheri samo za h tagove i logo */
h1, h2, h3, .logo a {
    font-family: 'Tan Mon Cheri', cursive;
    font-weight: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigacija - providna s blur-om */
.navbar {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 20px;
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.nav-container:hover {
    background: rgba(237, 228, 216, 0.7);
    box-shadow: 0 8px 32px rgba(192, 160, 128, 0.2);
    border-color: rgba(192, 160, 128, 0.3);
}

.logo a {
    font-size: 1.8rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.3s ease;
    padding-top: 0.8rem;
}

.logo a:hover {
    color: var(--hover-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    padding: 0.5rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    display: block;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a:hover {
    color: var(--hover-color);
    transform: translateY(-2px);
}

.nav-menu li.langLinks {
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    padding: inherit 0;
    a {
        display: block;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Responsive za jako male ekrane */
@media (max-width: 480px) {
    .logo a {
        font-size: 1.3rem;
    }
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.4s;
    border-radius: 3px;
}

/* Sekcije */
.section {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section:nth-child(even) {
    background-color: white;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

/* Hero sekcija */
.hero {
    position: relative;
    text-align: center;
    background-image: url('guitar.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(237, 228, 216, 0.85) 0%, rgba(237, 228, 216, 0.7) 50%, rgba(237, 228, 216, 0.85) 100%);
    z-index: 1;
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 3rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(237, 228, 216, 0.2);
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    animation: fadeInDown 1s ease-out;
    letter-spacing: 2px;
}

.hero p {
    font-size: 2rem;
    color: var(--text-color);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
    margin-bottom: 2rem;
}

/* Welcome sekcija */
.welcome {
    background-color: white;
    padding: 80px 0;
}

/* Welcome wrapper koristi container stilove */
.welcome .container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.welcome-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-content {
    padding-right: 2rem;
}

.welcome-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.welcome-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: left;
    font-family: 'Tan Mon Cheri', cursive;
}

.welcome-divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 2rem;
}

.welcome-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
    font-family: 'Barlow', sans-serif;
}

.welcome-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.welcome-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 30px;
    height: 30px;
    stroke: #333;
    transition: all 0.3s ease;
}

.welcome-feature:hover .feature-icon-wrapper {
    background-color: #333;
}

.welcome-feature:hover .feature-icon {
    stroke: white;
}

.welcome-feature span {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.welcome-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.welcome-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: var(--border);
}

.welcome-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.welcome-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Duo description wrapper */
.duo-description-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 3px solid var(--primary-color);
}

.duo-description-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-family: 'Barlow', sans-serif;
}

.duo-description-wrapper p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.duo-description-wrapper strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Responsive za Welcome sekciju */
@media (max-width: 992px) {
    .welcome-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .welcome-content {
        padding-right: 0;
        text-align: center;
    }
    
    .welcome-content h2 {
        text-align: center;
    }
    
    .welcome-divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .welcome-features {
        justify-content: center;
    }
    
    .welcome-image-wrapper {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .welcome-content h2 {
        font-size: 2.5rem;
    }
    
    .welcome-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .welcome-feature {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon {
        width: 25px;
        height: 25px;
    }
    
    .welcome-image-wrapper {
        height: 300px;
    }
    
    .duo-description-wrapper {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .duo-description-wrapper p {
        font-size: 1rem;
    }
    
    .duo-description-wrapper p:last-child {
        font-size: 1.1rem;
    }
}

/* Brzi linkovi sekcija */


.quick-links-title {
    font-size: 2rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Tan Mon Cheri', cursive;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.quick-links-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0.8rem auto 0;
}

.quick-links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Ostali CSS za quick-linkove ostaje isti... */
.quick-links {
    background-color: var(--bg-color);
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.quick-links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 2rem;
    background-color: white;
    border: var(--border);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quick-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.quick-link:hover .quick-link-icon,
.quick-link:hover .quick-link-text {
    color: white;
}

.quick-link-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.quick-link-text {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Responsive za brze linkove */
@media (max-width: 768px) {
    .quick-links-wrapper {
        gap: 1rem;
    }
    
    .quick-link {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .quick-link-icon {
        font-size: 2rem;
    }
    
    .quick-link-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .quick-links-wrapper {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .quick-link {
        width: 100%;
        max-width: 250px;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .quick-link-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
}



/* CSS za SVG ikone */
.quick-link-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.quick-link-svg {
    width: 30px;
    height: 30px;
    stroke: var(--text-color);
    transition: stroke 0.3s ease;
}

.quick-link:hover .quick-link-svg {
    stroke: white;
}

/* Responsive za SVG */
@media (max-width: 480px) {
    .quick-link-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
    }
    
    .quick-link-svg {
        width: 25px;
        height: 25px;
    }
}

/* O nama sekcija */
.o-nama-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.o-nama-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.o-nama-slika {
    width: 100%;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: var(--border);
}

.o-nama-slika img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.o-nama-slika img:hover {
    transform: scale(1.05);
}

/* Grid sustavi */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

/* Kartice */
.card {
    background-color: var(--bg-color);
    padding: 0 0 2rem 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card-slika {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: var(--border);
}

.card-slika img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-slika img {
    transform: scale(1.1);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    padding: 0 1rem;
}

.card p {
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

/* Stil sekcija */
.style-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.style-galerija {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.galerija-slika {
    height: 250px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border: var(--border);
}

.galerija-slika img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galerija-slika:hover img {
    transform: scale(1.1);
}

.style-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.style-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Članovi */
.member-card {
    background-color: var(--bg-color);
    padding: 0 0 2rem 0;
    text-align: center;
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-slika {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: var(--border);
}

.member-slika img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-card:hover .member-slika img {
    transform: scale(1.05);
}

.member-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    padding: 0 1rem;
}

.member-role {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.member-card p {
    padding: 0 1.5rem;
    font-size: 1rem;
}

/* Kontakt sekcija */
.kontakt-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.kontakt-info {
    background-color: var(--bg-color);
    padding: 2rem;
}

.kontakt-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.kontakt-info p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.kontakt-forma {
    background-color: var(--bg-color);
    padding: 2rem;
}

.kontakt-forma input,
.kontakt-forma textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
}

.kontakt-forma button {
    background-color: var(--text-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.kontakt-forma button:hover {
    background-color: var(--hover-color);
}

/* Animacije */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile menu - do 1200px */
@media (max-width: 1200px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1004;
        padding: 8px 12px;
        border-radius: 5px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 3px 0;
        transition: 0.4s;
        border-radius: 3px;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        max-width: 280px;
        height: 100vh;
        text-align: left;
        transition: 0.3s;
        padding: 100px 20px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        margin: 0;
        gap: 0.5rem;
        display: flex !important;
        z-index: 1003;
    }
    
    .nav-menu.active {
        right: 0;
        left: auto;
    }
    
    .navbar {
        top: 0;
        z-index: 1002;
    }
    
    .nav-container {
        background: rgba(237, 228, 216, 0.95);
        backdrop-filter: blur(10px);
        padding: 0.8rem 20px;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0.2rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
        display: block;
        background: transparent;
        border: none;
        text-align: left;
        width: 100%;
        color: var(--text-color);
        line-height: 1.2;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background-color: rgba(192, 160, 128, 0.15);
        border-radius: 5px;
        padding-left: 1.3rem;
    }
    
    /* Stil za language selector li */
    .langLinks {
        margin-top: 2rem !important;
        padding-top: 1.5rem !important;
        border-top: 2px solid rgba(192, 160, 128, 0.3) !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.8rem !important;
        width: 100% !important;
    }
    
    /* Stil za linkove unutar language selector-a */
    .langLinks a {
        display: inline-block !important;
        width: auto !important;
        min-width: 60px !important;
        text-align: center !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        padding: 0.6rem 1rem !important;
        background-color: rgba(192, 160, 128, 0.1) !important;
        border-radius: 5px !important;
        margin: 0 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    
    .langLinks a:hover {
        background-color: var(--primary-color) !important;
        color: white !important;
        padding-left: 1rem !important;
    }
    
    /* Stil za razmak između linkova (non-breaking space) */
    .langLinks a + a {
        margin-left: 0 !important;
    }
    
    /* Hamburger animacija - X */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -5px);
    }
}

/* Dodatno za jako male ekrane */
@media (max-width: 480px) {
    .langLinks {
        gap: 0.5rem !important;
    }
    
    .langLinks a {
        min-width: 50px !important;
        font-size: 1rem !important;
        padding: 0.5rem 0.8rem !important;
    }
}

/* Overlay pozadina */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;
    animation: fadeIn 0.3s ease;
}

/* Responsive za manje ekrane */
@media (max-width: 768px) {
    .grid-3, .grid-2, .kontakt-wrapper, .o-nama-wrapper {
        grid-template-columns: 1fr;
    }
    
    .style-galerija {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .o-nama-slika {
        height: 300px;
    }
    
    .galerija-slika {
        height: 200px;
    }
    
    .member-slika {
        height: 300px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Page Hero za podstranice - s animacijama */
.page-hero {
    position: relative;
    text-align: center;
    background-image: url('guitar.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    padding-top: 80px;
    animation: heroAppear 1.2s ease-out;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
    z-index: 2;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(237, 228, 216, 0.9) 0%, rgba(237, 228, 216, 0.8) 100%);
    z-index: 1;
    animation: overlayFadeIn 1.5s ease-out;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    animation: containerSlideUp 1s ease-out 0.3s both;
}

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
    animation: titleGlow 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(192, 160, 128, 0.3);
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-color);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Nove animacije */
@keyframes heroAppear {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes overlayFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes containerSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(192, 160, 128, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(192, 160, 128, 0.6);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive za page header */
@media (max-width: 768px) {
    .page-hero {
        height: 300px;
        margin-top: 10px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 250px;
        margin-top: 5px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
}
/* Sekcija naše priče */
.story-section {
    padding: 80px 0;
    background-color: white;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content {
    padding-right: 2rem;
}

.section-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
}

.story-divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-family: 'Barlow', sans-serif;
}

.story-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: var(--border);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Sekcija članova */
.members-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    font-family: 'Barlow', sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

.members-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.member-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.member-detail-card.reverse {
    direction: rtl;
}

.member-detail-card.reverse .member-detail-content {
    direction: ltr;
}

.member-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border: var(--border);
}

.member-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-detail-card:hover .member-detail-image img {
    transform: scale(1.05);
}

.member-detail-content {
    padding: 1rem;
}

.member-detail-content h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
}

.member-detail-role {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-detail-divider {
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.member-detail-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    font-family: 'Barlow', sans-serif;
}

/* Vrijednosti sekcija */
.values-section {
    padding: 80px 0;
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Barlow', sans-serif;
}

/* CTA sekcija */
.cta-section {
    padding: 60px 0;
    background-color: var(--primary-color);
}

.cta-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Tan Mon Cheri', cursive;
}

.cta-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    font-family: 'Barlow', sans-serif;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: white;
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button:hover {
    background-color: transparent;
    color: white;
}

/* Responsive za O nama stranicu */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 3rem;
    }
    
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-content {
        padding-right: 0;
    }
    
    .member-detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-detail-card.reverse {
        direction: ltr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content h2 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .member-detail-content h3 {
        font-size: 2rem;
    }
    
    .member-detail-image {
        height: 300px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-wrapper h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .story-image {
        height: 300px;
    }
}

/* Ikone za vrijednosti */
.value-svg {
    width: 60px;
    height: 60px;
    stroke: var(--primary-color);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-svg {
    stroke: white;
    transform: scale(1.1);
}

/* Za ikone koje imaju fill dio */
.value-svg circle[fill],
.value-svg path[fill] {
    transition: fill 0.3s ease;
}

.value-card:hover .value-svg circle[fill],
.value-card:hover .value-svg path[fill] {
    fill: white;
}

/* Responsive */
@media (max-width: 768px) {
    .value-svg {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
}

/* Globalni stil za tekstualne linkove */
a:not(.logo a):not(.nav-menu a):not(.welcome-btn):not(.quick-link):not(.cta-button):not(.lang-link):not(.social-link):not(.footer-social-link) {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

a:not(.logo a):not(.nav-menu a):not(.welcome-btn):not(.quick-link):not(.cta-button):not(.lang-link):not(.social-link):hover {
    color: var(--text-color);
    border-bottom-color: var(--primary-color);
}

/* Opcionalno - ako želiš underline animaciju */
a:not(.logo a):not(.nav-menu a):not(.welcome-btn):not(.quick-link):not(.cta-button):not(.lang-link):not(.social-link):not(.footer-social-link)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

a:not(.logo a):not(.nav-menu a):not(.welcome-btn):not(.quick-link):not(.cta-button):not(.lang-link):not(.social-link):hover::after {
    width: 100%;
}

/* Intro sekcija */
.intro-section {
    padding: 80px 0;
    background-color: white;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content {
    padding-right: 2rem;
}

.intro-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-family: 'Barlow', sans-serif;
}

.intro-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: var(--border);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

/* Usluge sekcija */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: var(--border);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-svg {
    width: 60px;
    height: 60px;
    stroke: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-svg {
    stroke: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Barlow', sans-serif;
}

/* Dostupnost sekcija */
.availability-section {
    padding: 60px 0;
    background-color: white;
}

.availability-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-color);
    border: var(--border);
}

.availability-icon {
    margin-bottom: 1.5rem;
}

.availability-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
}

.availability-wrapper p {
    font-size: 1.2rem;
    color: #666;
    font-family: 'Barlow', sans-serif;
}

/* Prilagodljivost sekcija */
.custom-section {
    padding: 80px 0;
    background-color: white;
}

.custom-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.custom-content {
    padding-right: 2rem;
}

.custom-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
}

.custom-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-family: 'Barlow', sans-serif;
}

.custom-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #555;
    font-family: 'Barlow', sans-serif;
}

.custom-feature svg {
    flex-shrink: 0;
}

.custom-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: var(--border);
}

.custom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.custom-image:hover img {
    transform: scale(1.05);
}

/* Responsive za Što radimo stranicu */
@media (max-width: 992px) {
    .intro-wrapper,
    .custom-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-content,
    .custom-content {
        padding-right: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .intro-content h2,
    .custom-content h2 {
        font-size: 2.5rem;
    }
    
    .intro-image,
    .custom-image {
        height: 350px;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-svg {
        width: 50px;
        height: 50px;
    }
    
    .availability-wrapper h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .intro-content h2,
    .custom-content h2 {
        font-size: 2rem;
    }
    
    .intro-image,
    .custom-image {
        height: 300px;
    }
    
    .custom-feature {
        font-size: 1rem;
    }
}

/* Style Intro sekcija */
.style-intro-section {
    padding: 80px 0;
    background-color: white;
}

.style-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.style-intro-content {
    padding-right: 2rem;
}

.style-intro-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
}

.style-intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-family: 'Barlow', sans-serif;
}

.style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.style-tag {
    padding: 0.5rem 1.2rem;
    background-color: var(--bg-color);
    border: 1px solid var(--primary-color);
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.style-tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.style-intro-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: var(--border);
}

.style-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.style-intro-image:hover img {
    transform: scale(1.05);
}

/* Style Elements sekcija */
.style-elements-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.style-elements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.style-element-card {
    background-color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: var(--border);
}

.style-element-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background-color: var(--primary-color);
}

.style-element-card:hover h3,
.style-element-card:hover p {
    color: white;
}

.style-element-card:hover .style-element-svg {
    stroke: white;
}

.style-element-icon {
    margin-bottom: 1.5rem;
}

.style-element-svg {
    width: 60px;
    height: 60px;
    stroke: var(--primary-color);
    transition: all 0.3s ease;
}

.style-element-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
    transition: color 0.3s ease;
}

.style-element-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Barlow', sans-serif;
    transition: color 0.3s ease;
}

/* Atmosphere sekcija */
.atmosphere-section {
    padding: 80px 0;
    background-color: white;
}

.atmosphere-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.atmosphere-content {
    padding-right: 2rem;
}

.atmosphere-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
}

.atmosphere-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-family: 'Barlow', sans-serif;
}

.atmosphere-list {
    list-style: none;
    padding: 0;
}

.atmosphere-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
    font-family: 'Barlow', sans-serif;
}

.atmosphere-list-item svg {
    flex-shrink: 0;
}

.atmosphere-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: var(--border);
}

.atmosphere-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.atmosphere-image:hover img {
    transform: scale(1.05);
}

/* Video sekcija */
.video-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background-color: white;
    padding: 4rem;
    text-align: center;
    border: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.video-placeholder svg {
    margin-bottom: 1rem;
}

.video-placeholder p {
    font-size: 1.1rem;
    color: #666;
    font-family: 'Barlow', sans-serif;
}

/* Responsive za Naš stil stranicu */
@media (max-width: 992px) {
    .style-intro-wrapper,
    .atmosphere-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .style-intro-content,
    .atmosphere-content {
        padding-right: 0;
    }
    
    .style-elements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .style-intro-content h2,
    .atmosphere-content h2 {
        font-size: 2.5rem;
    }
    
    .style-intro-image,
    .atmosphere-image {
        height: 400px;
    }
    
    .style-element-card h3 {
        font-size: 1.2rem;
    }
    
    .video-placeholder {
        padding: 3rem;
    }
}

@media (max-width: 480px) {
    .style-intro-content h2,
    .atmosphere-content h2 {
        font-size: 2rem;
    }
    
    .style-intro-image,
    .atmosphere-image {
        height: 300px;
    }
    
    .style-elements-grid {
        grid-template-columns: 1fr;
    }
    
    .style-tag {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .atmosphere-list-item {
        font-size: 1rem;
    }
    
    .video-placeholder {
        padding: 2rem;
    }
    
    .video-placeholder svg {
        width: 60px;
        height: 60px;
    }
}

/* Kontakt info sekcija */
.contact-info-section {
    padding: 60px 0;
    background-color: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-info-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--bg-color);
    transition: all 0.3s ease;
    border: var(--border);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
}

.contact-info-card p {
    font-size: 1rem;
    color: #555;
    font-family: 'Barlow', sans-serif;
    margin-bottom: 0.3rem;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--text-color);
}

.contact-note {
    font-size: 0.9rem !important;
    color: #999 !important;
    margin-top: 0.5rem;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-social-link:hover {
    color: var(--text-color);
}

/* Kontakt forma sekcija */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    font-family: 'Tan Mon Cheri', cursive;
    margin-bottom: 1rem;
}

.contact-form-header p {
    color: #666;
    font-family: 'Barlow', sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #666;
}

.contact-submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: 2px solid var(--primary-color);
}

.contact-submit-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* FAQ sekcija */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #eee;
    background-color: #f9f9f9;
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    margin: 0;
}

.faq-icon {
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.faq-answer p {
    padding: 1.5rem;
    color: #666;
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    border-top: 1px solid #eee;
}

/* Responsive za Kontakt stranicu */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-form-header h2 {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form-header h2 {
        font-size: 1.8rem;
    }
    
    .checkbox-group label {
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #f0f0f0;
    padding: 4rem 0 2rem;
    margin-top: 0;
    font-family: 'Barlow', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Logo i opis */
.footer-logo a {
    font-family: 'Tan Mon Cheri', cursive;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.footer-logo a:hover {
    color: var(--primary-color);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

/* Social ikone */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #f0f0f0;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer naslovi */
.footer-title {
    font-family: 'Barlow', cursive;
    font-size: 1rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Footer linkovi */
.footer-menu,
.footer-legal-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Footer linkovi */
.footer-menu a,
.footer-legal-menu a,
.footer-contact-list a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-menu a:hover,
.footer-legal-menu a:hover,
.footer-contact-list a:hover {
    color: #aaa !important;
    transform: translateX(5px);
}

/* Kontakt podaci - posebno za li elemente bez linkova */
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #aaa;
    font-size: 0.95rem;
}

.footer-contact-list svg {
    flex-shrink: 0;
    stroke: var(--primary-color);
    transition: stroke 0.3s ease;
}

.footer-contact-list li:hover svg {
    stroke: #ffffff;  /* SVG ikone također postaju bijele na hover */
}

/* Social ikone - već su dobre, ali provjeri */
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #f0f0f0;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: #ffffff;  /* Promijenjeno s primary na bijelo */
    color: #2a2a2a;  /* Tamna boja za ikonu radi kontrasta */
    transform: translateY(-3px);
}

/* Kontakt podaci */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #aaa;
    font-size: 0.95rem;
}

.footer-contact-list svg {
    flex-shrink: 0;
    stroke: var(--primary-color);
}

.footer-contact-list a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

/* Donji dio footera */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* Responsive za footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: span 2;
    }
    
    .footer-description {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-menu,
    .footer-legal-menu,
    .footer-contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact-list li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 1.5rem;
    }
}

/* Pravne stranice */
.legal-section {
    padding: 60px 0;
    background-color: white;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-color);
    border-left: 3px solid var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    font-family: 'Barlow', cursive !important;
    margin: 2rem 0 1rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-family: 'Barlow', sans-serif;
    margin-bottom: 1.5rem;
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #999;
    font-size: 0.9rem;
    text-align: right;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
}

/* Modal stilovi */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 3% auto; /* Smanjeno s 5% na 3% */
    padding: 0;
    width: 90%;
    max-width: 450px; /* Smanjeno s 500px na 450px */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    padding: 1rem 1.5rem; /* Smanjeno s 1.5rem 2rem */
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Tan Mon Cheri', cursive;
    font-size: 1.5rem; /* Smanjeno s 1.8rem */
    color: white;
    margin: 0;
}

.modal-close {
    color: white;
    font-size: 1.8rem; /* Smanjeno s 2rem */
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    transform: scale(1.2);
}

.modal-body {
    padding: 1.2rem 1.5rem; /* Smanjeno s 2rem */
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem; /* Smanjeno s 1.2rem */
}

.modal-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem; /* Smanjeno s 0.5rem */
}

.modal-form-group label {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem; /* Smanjeno s 0.95rem */
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0; /* Dodano */
}

.modal-form-group input,
.modal-form-group textarea {
    padding: 0.6rem 0.8rem; /* Smanjeno s 0.8rem */
    border: 1px solid #ddd;
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem; /* Smanjeno s 1rem */
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.modal-form-group textarea {
    resize: vertical;
    min-height: 80px; /* Dodano minimalna visina */
    max-height: 120px; /* Dodano maksimalna visina */
}

.modal-form-group input:focus,
.modal-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
}

.modal-form-group.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem; /* Smanjeno s 0.8rem */
    margin: 0.2rem 0; /* Dodano */
}

.modal-form-group.checkbox-group input {
    width: auto;
    margin: 0;
}

.modal-form-group.checkbox-group label {
    font-size: 0.85rem; /* Smanjeno s 0.9rem */
    color: #666;
}

.modal-form-group.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.modal-form-group.checkbox-group a:hover {
    text-decoration: underline;
}

/* Validacijske poruke */
.error-message {
    color: #dc3545;
    font-size: 0.75rem; /* Smanjeno s 0.85rem */
    margin-top: 0.1rem; /* Smanjeno s 0.3rem */
    display: block;
    font-family: 'Barlow', sans-serif;
    min-height: 18px; /* Smanjeno s 20px */
}

/* Status poruke */
.modal-form-status {
    padding: 0.5rem 0.8rem; /* Smanjeno s 0.8rem */
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem; /* Smanjeno s 0.9rem */
    display: none;
    margin: 0.3rem 0; /* Smanjeno s 0.5rem */
}

.modal-submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.7rem 1rem; /* Smanjeno s 1rem */
    border: none;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 0.95rem; /* Smanjeno s 1rem */
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 0.3rem; /* Smanjeno s 0.5rem */
    border: 2px solid var(--primary-color);
}

.modal-submit-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.modal-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive za modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: 400px; /* Dodano za mobilne */
    }
    
    .modal-header {
        padding: 0.8rem 1.2rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1rem 1.2rem;
    }
    
    .modal-form-group input,
    .modal-form-group textarea {
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .modal-form-group textarea {
        min-height: 60px;
        max-height: 100px;
    }
    
    .modal-submit-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 2% auto;
        width: 96%;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-close {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 0.8rem 1rem;
    }
    
    .modal-form-group.checkbox-group label {
        font-size: 0.8rem;
    }
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}