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

body{
    font-family:Arial,sans-serif;
    background:#faf7f2;
    color:#2b2118;
}

.container{
    width:1200px;
    max-width:94%;
    margin:auto;
}

/* HEADER */

.site-header{
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid #eadfd3;
}

.header-inner{
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:28px;
    font-weight:800;
    color:#2b2118;
    text-decoration:none;
}

.main-nav{
    display:flex;
    gap:28px;
}

.main-nav a{
    text-decoration:none;
    color:#4b3a2d;
    font-weight:600;
    transition:.2s;
}

.main-nav a:hover{
    color:#ea580c;
}

.header-btn{
    background:#ea580c;
    color:white;
    padding:12px 18px;
    border-radius:12px;
    text-decoration:none;
    font-weight:bold;
}


.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.lang-switch{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:10px 14px;
    border:1px solid #eadfd3;
    border-radius:12px;
    color:#4b3a2d;
    background:#fffaf3;
    text-decoration:none;
    font-weight:800;
    font-size:14px;
    letter-spacing:.3px;
}

.lang-switch:hover{
    color:#ea580c;
    border-color:#ea580c;
}

/* MAIN */

.site-main{
    min-height:70vh;
}

/* FOOTER */

.site-footer{
    background:#2b2118;
    color:white;
    margin-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
    padding:60px 0;
}

.footer-grid h3,
.footer-grid h4{
    margin-bottom:18px;
}

.footer-grid p,
.footer-grid li{
    color:#d8c7b6;
    line-height:1.8;
}

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

.footer-grid a{
    color:#d8c7b6;
    text-decoration:none;
}

.footer-grid a:hover{
    color:white;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:20px;
    color:#b6a391;
}

/* MOBILE */

@media(max-width:900px){

    .header-inner{
        height:auto;
        padding:20px 0;
        flex-direction:column;
        gap:18px;
    }

    .main-nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .header-actions{
        flex-wrap:wrap;
        justify-content:center;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }
}
.home-hero {
    background:
        linear-gradient(135deg, rgba(15,23,42,.86), rgba(234,88,12,.72)),
        url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 90px 0;
}

.home-hero-inner {
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 40px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    background: rgba(255,255,255,.16);
    padding: 9px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-weight: bold;
}

.home-hero h1 {
    font-size: 58px;
    line-height: 1.05;
    max-width: 760px;
    margin-bottom: 20px;
}

.home-hero p {
    font-size: 19px;
    line-height: 1.7;
    max-width: 680px;
    color: rgba(255,255,255,.9);
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.primary-btn,
.secondary-btn {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
}

.primary-btn {
    background: #ea580c;
    color: white;
}

.secondary-btn {
    background: white;
    color: #2b2118;
}

.home-hero-card {
    background: rgba(255,255,255,.95);
    color: #2b2118;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.home-hero-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.hero-stat {
    background: #fffaf3;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 18px;
}

.hero-stat strong {
    display: block;
    font-size: 48px;
    color: #ea580c;
}

.hero-stat span {
    color: #75685b;
}

.section {
    padding: 70px 0;
}

.section-heading {
    margin-bottom: 32px;
    max-width: 720px;
}

.section-heading span {
    color: #ea580c;
    font-weight: bold;
}

.section-heading h2 {
    font-size: 42px;
    margin: 10px 0;
}

.section-heading p {
    color: #75685b;
    font-size: 18px;
    line-height: 1.6;
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.unit-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(74,49,31,.08);
}

.unit-image {
    height: 260px;
    background: #eadfd3;
    position: relative;
}

.unit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unit-no-image {
    height: 100%;
    display: grid;
    place-items: center;
    color: #75685b;
}

.unit-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: white;
    color: #ea580c;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: bold;
}

.unit-body {
    padding: 24px;
}

.unit-body h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.unit-desc {
    color: #75685b;
    line-height: 1.6;
    margin-bottom: 18px;
}

.unit-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.unit-meta span {
    background: #fff7ed;
    color: #b45309;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
}

.unit-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.unit-price {
    font-size: 22px;
    font-weight: 800;
}

.unit-price small {
    font-size: 14px;
    color: #75685b;
    font-weight: normal;
}

.unit-link {
    background: #ea580c;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: bold;
}

.empty {
    background: white;
    padding: 30px;
    border-radius: 20px;
    color: #75685b;
}

.info-section {
    padding: 30px 0 70px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.info-box {
    background: white;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(74,49,31,.06);
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.info-box p {
    color: #75685b;
    line-height: 1.6;
}

.contact-strip {
    background: #2b2118;
    color: white;
    padding: 55px 0;
}

.contact-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.contact-strip span {
    color: #fdba74;
    font-weight: bold;
}

.contact-strip h2 {
    margin-top: 8px;
    font-size: 34px;
}

@media(max-width: 900px) {
    .home-hero-inner,
    .info-grid,
    .contact-strip-inner {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .home-hero h1 {
        font-size: 40px;
    }

    .units-grid {
        grid-template-columns: 1fr;
    }

    .unit-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
.unit-hero{
    color:#fff;
    padding:90px 0 65px;
    position:relative;
    overflow:hidden;
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
    min-height:320px;
    display:flex;
    align-items:center;
}

.unit-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(20,12,8,0.42) 0%,
        rgba(20,12,8,0.18) 45%,
        rgba(20,12,8,0.05) 100%
    );
    z-index:1;
}

.unit-hero .container{
    position:relative;
    z-index:2;
}

.unit-hero h1{
    font-size:64px;
    font-weight:800;
    margin:18px 0 14px;
    line-height:1.05;
    color:#fff;
    text-shadow:0 5px 18px rgba(0,0,0,0.28);
    max-width:700px;
}

.unit-hero p{
    color:rgba(255,255,255,0.95);
    font-size:20px;
    text-shadow:0 2px 10px rgba(0,0,0,0.22);
}

.hero-label{
    display:inline-flex;
    align-items:center;
    background:rgba(255,255,255,0.92);
    color:#9a4d10;
    padding:10px 20px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
}

@media (max-width: 768px){

    .unit-hero{
        min-height:320px;
        padding:70px 0 55px;
    }

    .unit-hero h1{
        font-size:42px;
    }

    .unit-hero p{
        font-size:17px;
    }
}

.hero-label{
    display:inline-flex;
    align-items:center;
    background:rgba(255,255,255,0.92);
    color:#9a4d10;
    padding:12px 22px;
    border-radius:999px;
    font-size:15px;
    font-weight:700;
    backdrop-filter:blur(10px);
}

@media (max-width: 768px){

    .unit-hero{
        padding:90px 0 70px;
    }

    .unit-hero h1{
        font-size:44px;
    }

    .unit-hero p{
        font-size:18px;
    }
}

.unit-page {
    padding: 40px 0 20px;
}

.unit-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    border-radius: 26px;
    overflow: hidden;
    margin-bottom: 34px;
}

.unit-gallery-main {
    height: 520px;
    background: #eadfd3;
}

.unit-gallery-main img,
.unit-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unit-gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.unit-gallery-thumbs img {
    height: 254px;
    display: block;
}

.unit-layout {
    display: grid;
    grid-template-columns: 2fr 380px;
    gap: 28px;
    align-items: start;
}

.unit-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(74,49,31,.07);
}

.unit-card h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.unit-description {
    color: #475569;
    line-height: 1.8;
    font-size: 17px;
}

.unit-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.unit-detail-grid div {
    background: #fff7ed;
    color: #b45309;
    padding: 14px;
    border-radius: 16px;
    font-weight: bold;
}

.unit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.unit-features span {
    background: #fff7ed;
    color: #ea580c;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: bold;
}

.prices table {
    width: 100%;
    border-collapse: collapse;
}

.prices th {
    background: #2b2118;
    color: white;
    text-align: left;
    padding: 14px;
}

.prices td {
    padding: 14px;
    border-bottom: 1px solid #eadfd3;
}

.booking-box {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(15,23,42,.1);
    position: sticky;
    top: 105px;
}

.booking-price {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
}

.booking-price small {
    font-size: 16px;
    color: #75685b;
    font-weight: 400;
}

.booking-info {
    color: #75685b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.inquiry-form label {
    display: block;
    margin-bottom: 8px;
    margin-top: 16px;
    font-weight: bold;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #dbe1ea;
    border-radius: 12px;
    font-family: Arial, sans-serif;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-btn {
    width: 100%;
    border: none;
    background: #ea580c;
    color: white;
    padding: 15px;
    border-radius: 14px;
    font-weight: bold;
    margin-top: 18px;
    cursor: pointer;
}

.success-box {
    background: #dcfce7;
    color: #166534;
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 18px;
}

.error-box {
    background: #fee2e2;
    color: #991b1b;
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 18px;
}

.fc {
    background: white;
    border-radius: 18px;
    padding: 10px;
}

.fc-button {
    background: #ea580c !important;
    border: none !important;
}

@media(max-width: 900px) {
    .unit-hero h1 {
        font-size: 38px;
    }

    .unit-gallery,
    .unit-layout {
        grid-template-columns: 1fr;
    }

    .unit-gallery-main {
        height: 320px;
    }

    .unit-gallery-thumbs img {
        height: 170px;
    }

    .booking-box {
        position: static;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}
.destination-box,
.why-box {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    margin-top: 22px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #eadfd3;
}

.destination-box {
    background: linear-gradient(135deg, #fff7ed, #ecfeff);
}

.destination-box h3,
.why-box h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2b2118;
}

.destination-box p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 18px;
}

.destination-list {
    display: grid;
    gap: 10px;
}

.destination-list span {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(226,232,240,0.9);
    padding: 11px 13px;
    border-radius: 14px;
    font-weight: 600;
    color: #4b3a2d;
}

.why-item {
    padding: 15px 0;
    border-bottom: 1px solid #eadfd3;
}

.why-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.why-item strong {
    display: block;
    margin-bottom: 5px;
    color: #2b2118;
}

.why-item span {
    color: #75685b;
    line-height: 1.5;
}
.dalmatia-gallery {
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    margin-top: 22px;
    box-shadow: 0 12px 35px rgba(74,49,31,.08);
    border: 1px solid #eadfd3;
}

.dalmatia-gallery h3 {
    font-size: 22px;
    margin-bottom: 18px;
}

.dalmatia-gallery img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 14px;
}

.dalmatia-text {
    color: #475569;
    line-height: 1.7;
    margin-top: 10px;
}

/* Topla mediteranska dorada - bez plavog dojma */
body {
    background: #faf7f2;
}

.site-header {
    background: rgba(255,250,243,.96);
    backdrop-filter: blur(10px);
}

.logo img {
     height: 100px;
    width: auto;
    display: block;
}

.header-btn,
.primary-btn,
.unit-link,
.contact-btn {
    background: #b45309;
}

.header-btn:hover,
.primary-btn:hover,
.unit-link:hover,
.contact-btn:hover {
    background: #92400e;
}

.secondary-btn {
    color: #3b2a1f;
}

.home-hero {
    background-size: cover;
    background-position: center;
}

.hero-label,
.unit-badge {
    background: rgba(255,247,237,.95);
    color: #92400e;
}

.home-hero-card,
.unit-card,
.info-box {
    border: 1px solid rgba(146,64,14,.08);
}

.hero-stat strong,
.section-heading span,
.contact-strip span {
    color: #b45309;
}

.unit-meta span,
.unit-detail-grid div,
.unit-features span {
    background: #fff7ed;
    color: #92400e;
}

.contact-strip,
.site-footer {
    background: #2b2118;
}

.unit-hero {
    background: linear-gradient(135deg, #3b2a1f, #b45309);
}
.lang-switch {
    position: relative;
    display: inline-block;
}

.lang-btn {
    border: 1px solid #ddd;
    background: #fff;
    color: #3b2f24;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
}

.lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 115%;
    background: #fff;
    min-width: 150px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    overflow: hidden;
    z-index: 9999;
}

.lang-menu a {
    display: block;
    padding: 11px 14px;
    color: #3b2f24;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.lang-menu a:hover {
    background: #f4eee7;
}

.lang-switch:hover .lang-menu {
    display: block;
}

@media (max-width: 768px) {
    .lang-btn {
        padding: 9px 12px;
        font-size: 13px;
    }

    .lang-menu {
        right: 0;
        min-width: 140px;
    }
}
/* HEADER NOVI */

.site-header {
    background: #fffaf3;
    border-bottom: 1px solid #eadfce;
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-bar {
    background: #7a3f0c;
    color: #fff;
    font-size: 14px;
}

.top-bar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.top-item {
    white-space: nowrap;
    opacity: .95;
}

.main-header {
    background: #fffaf3;
}

.main-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
   height: 82px;
    width: auto;
    display: block;
}

.site-logo span {
    font-size: 22px;
    font-weight: 800;
    color: #3a2d22;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.site-nav > a {
    color: #3a2d22;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 28px 0;
    transition: color .2s ease;
}

.site-nav > a:hover {
    color: #b95708;
}

.language-dropdown {
    position: relative;
}

.language-button {
    border: 1px solid #dfd3c4;
    background: #fff;
    color: #3a2d22;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #fff;
    min-width: 170px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    border: 1px solid #eee2d6;
    z-index: 1000;
}

.language-menu.open {
    display: block;
}

.language-menu a {
    display: block;
    padding: 13px 16px;
    color: #3a2d22;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.language-menu a:hover {
    background: #f7efe5;
    color: #b95708;
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: #b95708;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .top-bar-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 18px;
        padding: 8px 0;
        font-size: 13px;
    }

    .main-header-inner {
        min-height: 72px;
    }

    .site-logo img {
        height: 90px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .site-nav {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        background: #fffaf3;
        border-top: 1px solid #eadfce;
        box-shadow: 0 20px 35px rgba(0,0,0,.12);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px 22px;
    }

    .site-nav.active {
        display: flex;
    }

    .site-nav > a {
        padding: 15px 0;
        border-bottom: 1px solid #eee2d6;
    }

    .language-dropdown {
        margin-top: 14px;
        width: 100%;
    }

    .language-button {
        width: 100%;
        justify-content: space-between;
    }

    .language-menu {
        position: static;
        margin-top: 10px;
        width: 100%;
        box-shadow: none;
    }
}
.hero-featured-card {
    padding: 28px;
}

.hero-featured-card h3 {
    margin-bottom: 18px;
}

.hero-featured-slider {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-featured-item {
    display: grid;
    grid-template-columns: 115px 1fr;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    text-decoration: none;
    color: #2f241c;
    transition: .2s ease;
}

.hero-featured-item:hover {
    transform: translateY(-2px);
    background: #fff;
}

.hero-featured-image {
    height: 82px;
    border-radius: 14px;
    overflow: hidden;
    background: #f1e7dc;
}

.hero-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-featured-no-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.hero-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.hero-featured-content strong {
    font-size: 18px;
}

.hero-featured-content span {
    font-size: 14px;
    color: #5f5147;
}

.hero-featured-bottom {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-featured-bottom span {
    background: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    color: #8a460c;
}

@media (max-width: 768px) {
    .hero-featured-item {
        grid-template-columns: 95px 1fr;
    }

    .hero-featured-image {
        height: 72px;
    }
}
.petrcane-section {
    padding: 90px 0;
    background: #fffaf3;
}

.petrcane-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 46px;
    align-items: center;
}

.petrcane-text span {
    display: inline-block;
    background: #fff3e8;
    color: #a84f08;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 18px;
}

.petrcane-text h2 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #2d2118;
}

.petrcane-text p {
    font-size: 18px;
    line-height: 1.75;
    color: #5c5149;
    margin-bottom: 16px;
}

.petrcane-points {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.petrcane-points span {
    background: #fff;
    color: #8a4308;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

.video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 55px rgba(0,0,0,.18);
    background: #000;
}

.video-box iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 900px) {
    .petrcane-grid {
        grid-template-columns: 1fr;
    }

    .petrcane-text h2 {
        font-size: 32px;
    }

    .petrcane-section {
        padding: 60px 0;
    }
}
/* =========================
   O NAMA + KONTAKT
========================= */

.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 120px 0 90px;
    overflow: hidden;
    background: linear-gradient(rgba(15,35,45,.55), rgba(15,35,45,.65)),
                url('../img/dalmacija.jpg') center/cover;
}

.page-hero-content {
    width: 100%;
    max-width: 1240px;
    margin: auto;
    padding: 0 24px;
    color: white;
}

.page-hero span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: .5px;
}

.page-hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin: 0 0 18px;
    max-width: 760px;
}

.page-hero p {
    font-size: 19px;
    line-height: 1.8;
    max-width: 760px;
    opacity: .92;
}

/* ========================= */

.about-section {
    padding: 90px 0;
    background: #fff;
}

.about-container {
    max-width: 1240px;
    margin: auto;
    padding: 0 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    min-height: 520px;
    box-shadow: 0 20px 45px rgba(15,23,42,.12);
}

.about-content h2 {
    font-size: 42px;
    margin: 0 0 24px;
    color: #10212a;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 22px;
}

/* ========================= */

.location-section {
    padding: 90px 0;
    background: #f8fafc;
}

.location-grid {
    max-width: 1240px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.location-card {
    background: white;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(15,23,42,.08);
    transition: .25s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.location-card-content {
    padding: 24px;
}

.location-card-content h3 {
    margin: 0 0 14px;
    font-size: 28px;
    color: #10212a;
}

.location-card-content p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

/* ========================= */

.attractions-section {
    padding: 90px 0;
    background: white;
}

.attractions-container {
    max-width: 1240px;
    margin: auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 44px;
    margin: 0 0 18px;
    color: #10212a;
}

.section-title p {
    max-width: 760px;
    margin: auto;
    color: #64748b;
    line-height: 1.8;
    font-size: 18px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.attraction-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    transition: .25s ease;
}

.attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,23,42,.10);
}

.attraction-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.attraction-card-content {
    padding: 22px;
}

.attraction-card-content h3 {
    margin: 0 0 12px;
    color: #10212a;
    font-size: 24px;
}

.attraction-card-content p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

/* ========================= */

.contact-section {
    padding: 90px 0;
    background: #f8fafc;
}

.contact-container {
    max-width: 1240px;
    margin: auto;
    padding: 0 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 30px;
}

.contact-info {
    background: linear-gradient(135deg, #23424a, #1c343a);
    color: white;
    padding: 42px;
    border-radius: 30px;
}

.contact-info h2 {
    font-size: 40px;
    margin: 0 0 20px;
}

.contact-info p {
    line-height: 1.8;
    opacity: .9;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
}

.contact-item span,
.contact-item a {
    color: rgba(255,255,255,.86);
    text-decoration: none;
}

.contact-form-box {
    background: white;
    border-radius: 30px;
    padding: 42px;
    box-shadow: 0 18px 42px rgba(15,23,42,.08);
}

.contact-form-box h2 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 38px;
    color: #10212a;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-group {
    margin-bottom: 18px;
}

.contact-form-group.full {
    grid-column: 1 / -1;
}

.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #10212a;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid #dbe2e8;
    font-size: 15px;
    transition: .2s ease;
}

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

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: #2f5d67;
    box-shadow: 0 0 0 4px rgba(47,93,103,.10);
}

.contact-btn {
    background: linear-gradient(135deg, #2f5d67, #23424a);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: .25s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

/* ========================= */

.map-section iframe {
    width: 100%;
    height: 520px;
    border: none;
}

/* ========================= */

@media(max-width:1100px){

    .about-grid,
    .contact-grid,
    .location-grid,
    .attractions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-hero h1 {
        font-size: 48px;
    }
}

@media(max-width:768px){

    .about-grid,
    .contact-grid,
    .location-grid,
    .attractions-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 360px;
        padding: 110px 0 70px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .page-hero p {
        font-size: 17px;
    }

    .about-content h2,
    .section-title h2,
    .contact-info h2,
    .contact-form-box h2 {
        font-size: 32px;
    }

    .about-image img {
        min-height: 320px;
    }

    .contact-info,
    .contact-form-box {
        padding: 30px;
    }
}


/* =====================================================
   FIX O NAMA STRANICA - dodati na kraj assets/css/style.css
   Ne dira ostale stranice, cilja samo klase iz o-nama.php
===================================================== */

.about-hero {
    width: 100%;
    min-height: 520px;
    padding: 120px 0 90px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(43,33,24,.76), rgba(43,33,24,.34)),
        url('../images/dalmacija.jpg') center/cover no-repeat;
    color: #fff;
}

.about-hero .page-hero-inner {
    max-width: 1200px;
    width: 94%;
    margin: 0 auto;
}

.about-hero .section-label,
.about-section .section-label,
.attractions-preview .section-label,
.cta-section .section-label {
    display: inline-block;
    background: #fff7ed;
    color: #92400e;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-hero .section-label {
    background: rgba(255,247,237,.92);
    color: #92400e;
}

.about-hero h1 {
    max-width: 850px;
    font-size: 58px;
    line-height: 1.08;
    margin: 0 0 18px;
    color: #fff;
}

.about-hero p {
    max-width: 760px;
    font-size: 20px;
    line-height: 1.75;
    color: rgba(255,255,255,.92);
}

.about-section {
    padding: 90px 0;
    background: #fffaf3;
}

.about-section.soft-bg {
    background: #f6efe7;
}

.about-section .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-section .about-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.15;
    color: #2b2118;
    margin: 0 0 22px;
}

.about-content p {
    color: #5f5147;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image-card {
    border-radius: 30px;
    overflow: hidden;
    background: #eadfd3;
    min-height: 430px;
    box-shadow: 0 24px 55px rgba(74,49,31,.14);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    object-fit: cover;
}

.attractions-preview {
    padding: 90px 0;
    background: #fffaf3;
}

.section-head.centered {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-head.centered h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 14px;
    color: #2b2118;
}

.section-head.centered p {
    font-size: 18px;
    color: #75685b;
    line-height: 1.7;
}

.attractions-preview .attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.attractions-preview .attraction-card {
    background: #fff;
    border: 1px solid #eadfd3;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(74,49,31,.08);
    transition: .25s ease;
}

.attractions-preview .attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(74,49,31,.12);
}

.attractions-preview .attraction-card img {
    width: 100%;
    height: 245px;
    display: block;
    object-fit: cover;
}

.attractions-preview .attraction-card > div {
    padding: 24px;
}

.attractions-preview .attraction-card h3 {
    font-size: 25px;
    margin: 0 0 12px;
    color: #2b2118;
}

.attractions-preview .attraction-card p {
    color: #75685b;
    line-height: 1.7;
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    background: #f6efe7;
}

.cta-box {
    background: linear-gradient(135deg, #3b2a1f, #b45309);
    color: #fff;
    border-radius: 30px;
    padding: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 24px 55px rgba(74,49,31,.18);
}

.cta-box .section-label {
    background: rgba(255,247,237,.15);
    color: #fed7aa;
}

.cta-box h2 {
    font-size: 38px;
    line-height: 1.15;
    margin: 0 0 12px;
}

.cta-box p {
    color: rgba(255,255,255,.86);
    line-height: 1.7;
    max-width: 680px;
}

.btn-primary-site {
    display: inline-block;
    background: #fff;
    color: #92400e;
    padding: 15px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    transition: .2s ease;
}

.btn-primary-site:hover {
    transform: translateY(-2px);
    background: #fff7ed;
}

@media(max-width: 900px) {
    .about-hero {
        min-height: 420px;
        padding: 90px 0 70px;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-section .about-grid,
    .about-section .about-grid.reverse,
    .attractions-preview .attractions-grid {
        grid-template-columns: 1fr;
    }

    .about-image-card,
    .about-image-card img {
        min-height: 300px;
    }

    .about-content h2,
    .section-head.centered h2,
    .cta-box h2 {
        font-size: 32px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }
}
/* =========================
   KONTAKT PREMIUM - IZOLIRANO
   Dodati na kraj assets/css/style.css
========================= */

.contact-pro-page {
    background: #faf7f2;
}

.contact-pro-hero {
    background:
        linear-gradient(90deg, rgba(43,33,24,.82), rgba(43,33,24,.45)),
        url('../images/dalmacija.jpg') center/cover;
    color: #fff;
    padding: 115px 0 95px;
    border-bottom: 1px solid #eadfd3;
}

.contact-pro-hero-inner span,
.contact-pro-label,
.contact-pro-form-head span {
    display: inline-block;
    background: rgba(255,247,237,.92);
    color: #92400e;
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 18px;
}

.contact-pro-hero h1 {
    max-width: 760px;
    font-size: 58px;
    line-height: 1.05;
    margin: 0 0 18px;
    color: #fff;
}

.contact-pro-hero p {
    max-width: 720px;
    font-size: 19px;
    line-height: 1.75;
    color: rgba(255,255,255,.92);
    margin: 0;
}

.contact-pro-section {
    padding: 80px 0 40px;
}

.contact-pro-layout {
    display: grid;
    grid-template-columns: .9fr 1.25fr;
    gap: 32px;
    align-items: stretch;
}

.contact-pro-info {
    background: linear-gradient(135deg, #3b2a1f, #8a4308);
    color: #fff;
    border-radius: 34px;
    padding: 42px;
    box-shadow: 0 24px 55px rgba(74,49,31,.20);
    min-height: 100%;
}

.contact-pro-info h2 {
    font-size: 38px;
    line-height: 1.12;
    margin: 0 0 18px;
    color: #fff;
}

.contact-pro-info p {
    color: rgba(255,255,255,.88);
    line-height: 1.8;
    font-size: 16px;
    margin: 0 0 28px;
}

.contact-pro-list {
    display: grid;
    gap: 14px;
    margin-bottom: 26px;
}

.contact-pro-item {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    padding: 18px;
}

.contact-pro-item small {
    display: block;
    color: #fdba74;
    font-weight: 900;
    margin-bottom: 6px;
}

.contact-pro-item strong {
    display: block;
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
}

.contact-pro-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #7a3f0c;
    border-radius: 16px;
    padding: 14px 20px;
    font-weight: 900;
    text-decoration: none;
    transition: .2s ease;
}

.contact-pro-whatsapp:hover {
    transform: translateY(-2px);
    background: #fff7ed;
}

.contact-pro-form-card {
    background: #fff;
    border: 1px solid #eadfd3;
    border-radius: 34px;
    padding: 46px;
    box-shadow: 0 24px 60px rgba(74,49,31,.12);
}

.contact-pro-form-head h2 {
    font-size: 46px;
    line-height: 1.1;
    color: #2b2118;
    margin: 0 0 30px;
}

.contact-pro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-pro-field {
    min-width: 0;
}

.contact-pro-full {
    grid-column: 1 / -1;
}

.contact-pro-field label {
    display: block;
    color: #2b2118;
    font-weight: 900;
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-pro-field input,
.contact-pro-field textarea {
    display: block;
    width: 100%;
    border: 1px solid #d8cfc4;
    background: #fffaf3;
    color: #2b2118;
    border-radius: 15px;
    padding: 15px 16px;
    min-height: 52px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: .2s ease;
}

.contact-pro-field textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-pro-field input:focus,
.contact-pro-field textarea:focus {
    outline: none;
    background: #fff;
    border-color: #b45309;
    box-shadow: 0 0 0 4px rgba(180,83,9,.12);
}

.contact-pro-submit {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 28px;
    background: #b45309;
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: .2s ease;
}

.contact-pro-submit:hover {
    background: #92400e;
    transform: translateY(-2px);
}

.contact-pro-map-section {
    padding: 30px 0 80px;
}

.contact-pro-map {
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid #eadfd3;
    box-shadow: 0 24px 60px rgba(74,49,31,.12);
    background: #fff;
}

.contact-pro-map iframe {
    display: block;
    width: 100%;
    height: 460px;
    border: 0;
}

@media(max-width: 950px) {
    .contact-pro-hero {
        padding: 90px 0 70px;
    }

    .contact-pro-hero h1,
    .contact-pro-form-head h2 {
        font-size: 38px;
    }

    .contact-pro-layout,
    .contact-pro-grid {
        grid-template-columns: 1fr;
    }

    .contact-pro-info,
    .contact-pro-form-card {
        padding: 30px;
        border-radius: 26px;
    }
}
/* =========================
   FOOTER ATRAKCIJE
========================= */

.footer-attractions {
    padding: 90px 0;
    background: #fffaf3;
}

.footer-attractions-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.footer-attractions-heading span {
    display: inline-block;
    background: #fff3e8;
    color: #a84f08;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-attractions-heading h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #2b2118;
}

.footer-attractions-heading p {
    color: #75685b;
    line-height: 1.8;
    font-size: 18px;
}

.footer-attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-attraction-card {
    background: white;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid #eadfd3;
    box-shadow: 0 18px 40px rgba(74,49,31,.08);
    transition: .25s ease;
}

.footer-attraction-card:hover {
    transform: translateY(-5px);
}

.footer-attraction-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.footer-attraction-content {
    padding: 24px;
}

.footer-attraction-content h3 {
    font-size: 28px;
    margin-bottom: 14px;
    color: #2b2118;
}

.footer-attraction-content p {
    color: #75685b;
    line-height: 1.7;
}

@media(max-width:900px){

    .footer-attractions-grid {
        grid-template-columns: 1fr;
    }

    .footer-attractions-heading h2 {
        font-size: 32px;
    }
}
/* =========================
   ATRAKCIJE PAGE
========================= */

.attractions-hero {
    background:
        linear-gradient(135deg, rgba(43,33,24,.78), rgba(180,83,9,.72)),
        url('../images/attractions/zadar.jpg') center/cover;
    color: white;
    padding: 135px 0 95px;
}

.attractions-hero span {
    display: inline-block;
    background: rgba(255,255,255,.18);
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 18px;
}

.attractions-hero h1 {
    font-size: 58px;
    line-height: 1.08;
    max-width: 820px;
    margin-bottom: 18px;
}

.attractions-hero p {
    font-size: 19px;
    line-height: 1.8;
    max-width: 760px;
    color: rgba(255,255,255,.92);
}

.attractions-page-section {
    padding: 90px 0;
    background: #faf7f2;
}

.attractions-page-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.attractions-page-heading span {
    display: inline-block;
    background: #fff3e8;
    color: #a84f08;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 16px;
}

.attractions-page-heading h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #2b2118;
}

.attractions-page-heading p {
    color: #75685b;
    font-size: 18px;
    line-height: 1.75;
}

.attractions-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.attraction-page-card {
    background: white;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid #eadfd3;
    box-shadow: 0 16px 36px rgba(74,49,31,.08);
    transition: .25s ease;
}

.attraction-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(74,49,31,.13);
}

.attraction-page-image {
    height: 230px;
    position: relative;
    overflow: hidden;
    background: #eadfd3;
}

.attraction-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .35s ease;
}

.attraction-page-card:hover .attraction-page-image img {
    transform: scale(1.06);
}

.attraction-page-image span {
    position: absolute;
    left: 16px;
    top: 16px;
    background: rgba(255,250,243,.95);
    color: #92400e;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.attraction-page-content {
    padding: 24px;
}

.attraction-page-content h3 {
    font-size: 25px;
    margin-bottom: 12px;
    color: #2b2118;
}

.attraction-page-content p {
    color: #75685b;
    line-height: 1.7;
}

.attractions-cta {
    background: #faf7f2;
    padding: 0 0 90px;
}

.attractions-cta-box {
    background: linear-gradient(135deg, #3b2a1f, #b45309);
    color: white;
    border-radius: 32px;
    padding: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 22px 55px rgba(74,49,31,.18);
}

.attractions-cta-box span {
    display: inline-block;
    color: #fed7aa;
    font-weight: 900;
    margin-bottom: 10px;
}

.attractions-cta-box h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.attractions-cta-box p {
    color: rgba(255,255,255,.88);
    line-height: 1.7;
    max-width: 720px;
}

.attractions-cta-box a {
    background: white;
    color: #92400e;
    padding: 15px 24px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 900;
    white-space: nowrap;
}

@media(max-width:1100px) {
    .attractions-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .attractions-hero {
        padding: 105px 0 75px;
    }

    .attractions-hero h1,
    .attractions-page-heading h2 {
        font-size: 36px;
    }

    .attractions-page-grid {
        grid-template-columns: 1fr;
    }

    .attractions-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
    }
}
/* MODERNI FOOTER */

.modern-footer {
    background: #2b2118;
    color: white;
    margin-top: 0;
}

.footer-modern-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 42px;
    padding: 70px 0;
}

.footer-logo img {
    height: 90px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #d8c7b6;
    line-height: 1.8;
    max-width: 360px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col a,
.footer-col p {
    display: block;
    color: #d8c7b6;
    text-decoration: none;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-col a:hover {
    color: #fdba74;
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 20px 0;
    color: #b6a391;
    text-align: center;
    font-size: 14px;
}

@media(max-width:900px) {
    .footer-modern-grid {
        grid-template-columns: 1fr;
        padding: 50px 0;
    }

    .footer-logo img {
        height: 76px;
    }
}
/* FOOTER KONTAKT */

.footer-contact-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    color:#d8c7b6;
}

.footer-contact-item a{
    color:#d8c7b6;
    text-decoration:none;
}

.footer-contact-item a:hover{
    color:#fdba74;
}

.footer-icon{
    width:22px;
    display:flex;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}
/* LEGAL STRANICE */

.legal-hero {
    background: linear-gradient(135deg, #3b2a1f, #b45309);
    color: white;
    padding: 95px 0 75px;
}

.legal-hero span {
    display: inline-block;
    background: rgba(255,255,255,.16);
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 18px;
}

.legal-hero h1 {
    font-size: 50px;
    margin-bottom: 16px;
}

.legal-hero p {
    max-width: 780px;
    line-height: 1.8;
    font-size: 18px;
    color: rgba(255,255,255,.9);
}

.legal-content {
    padding: 70px 0;
    background: #faf7f2;
}

.legal-box {
    background: white;
    border: 1px solid #eadfd3;
    border-radius: 28px;
    padding: 46px;
    box-shadow: 0 18px 45px rgba(74,49,31,.08);
    max-width: 1000px;
}

.legal-box h2 {
    font-size: 26px;
    color: #2b2118;
    margin: 30px 0 12px;
}

.legal-box h2:first-child {
    margin-top: 0;
}

.legal-box p {
    color: #5f5147;
    line-height: 1.85;
    font-size: 17px;
}

.legal-note {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid #eadfd3;
    font-weight: bold;
    color: #8a4308 !important;
}

@media(max-width:768px) {
    .legal-hero h1 {
        font-size: 34px;
    }

    .legal-box {
        padding: 28px;
    }
}
.unit-identity-card {
    background: #fff8ef;
    border: 1px solid #f1dfc9;
    box-shadow: 0 18px 45px rgba(92, 48, 18, 0.08);
}

.unit-identity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.unit-identity-item {
    background: #fff;
    border: 1px solid #f1dfc9;
    border-radius: 18px;
    padding: 18px 20px;
}

.unit-identity-item span {
    display: block;
    font-size: 13px;
    color: #8a5a35;
    margin-bottom: 7px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.unit-identity-item strong {
    color: #2b1a10;
    font-size: 20px;
}

.unit-stars {
    color: #b45a12 !important;
    letter-spacing: 3px;
}

@media (max-width: 900px) {
    .unit-identity-grid {
        grid-template-columns: 1fr;
    }
}
.home-units-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:32px;
    align-items:stretch;
}

.home-unit-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(92,48,18,.08);
    border:1px solid #f1dfc9;
}

.home-unit-image{
    height:280px;
    display:block;
    position:relative;
    overflow:hidden;
}

.home-unit-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.35s ease;
}

.home-unit-card:hover img{
    transform:scale(1.04);
}

.home-unit-type{
    position:absolute;
    left:18px;
    top:18px;
    background:#fff8ef;
    color:#9a4d10;
    padding:9px 16px;
    border-radius:999px;
    font-weight:800;
}

.home-unit-body{
    padding:28px;
}

.home-unit-body h3{
    font-size:30px;
    margin:0 0 12px;
}

.home-unit-body h3 a{
    color:#1f130c;
    text-decoration:none;
}

.home-unit-labels,
.home-unit-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:14px 0;
}

.home-unit-labels span,
.home-unit-meta span{
    background:#fff5e8;
    color:#9a4d10;
    padding:8px 14px;
    border-radius:999px;
    font-weight:700;
    font-size:14px;
}

.home-unit-labels .stars{
    color:#b45a12;
    letter-spacing:2px;
}

.home-unit-desc{
    color:#6b4d3a;
    line-height:1.7;
    margin:12px 0 18px;
    min-height:58px;
}

.home-unit-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-top:24px;
}

.home-unit-price strong{
    display:block;
    font-size:26px;
    color:#1f130c;
}

.home-unit-price small{
    color:#6b4d3a;
}

.home-unit-btn{
    background:#b45309;
    color:#fff;
    text-decoration:none;
    padding:14px 22px;
    border-radius:14px;
    font-weight:800;
}

@media(max-width:900px){
    .home-units-grid{
        grid-template-columns:1fr;
    }

    .home-unit-image{
        height:240px;
    }

    .home-unit-footer{
        align-items:flex-start;
        flex-direction:column;
    }
}
.contact-owner-card {
    margin-top: 22px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(14, 116, 144, 0.15);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-owner-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-owner-row:last-child {
    border-bottom: none;
}

.contact-owner-row span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e0f7ff, #fff7d6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-owner-row strong {
    display: block;
    color: #082f49;
    font-size: 17px;
    font-weight: 800;
}

.contact-owner-row small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 14px;
}
.contact-owner-card {
    margin-top: 22px;
    background: #ffffff;
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.contact-owner-row {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-owner-row:last-child {
    border-bottom: none;
}

.contact-owner-row span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e0f2fe, #fff7d6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-owner-row strong {
    display: block;
    color: #082f49;
    font-size: 16px;
    font-weight: 800;
}

.contact-owner-row small {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 14px;
}
@media (max-width: 768px) {
    .logo img,
    .site-logo img,
    header img {
        max-width: 180px;
        width: auto;
        height: auto;
    }



  
}
/* MOBILNI FIX */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

.container,
.hero,
.header,
.topbar,
nav {
    width: 100%;
    max-width: 100%;
}



/* HEADER MOB */
@media (max-width: 768px) {

    header {
        width: 100%;
        overflow: hidden;
    }

    .header-inner,
    .topbar-inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .logo {
        max-width: 220px;
    }

    /* HERO */
    .hero-content {
        padding: 20px;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
}
/* FINALNI MOBILE HEADER FIX */

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    .main-header-inner {
        min-height: 70px;
        padding: 10px 14px;
    }

    .site-logo {
        max-width: calc(100% - 70px);
        overflow: hidden;
    }

    .site-logo img {
        height: 52px !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .home-hero,
    .unit-hero,
    .page-hero,
    .about-hero,
    .contact-pro-hero {
        overflow: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }
}
@media (max-width: 900px) {

    .site-header,
    .main-header {
        overflow: visible !important;
    }

    .main-header {
        position: relative;
        z-index: 9999;
    }

    .site-nav {
        z-index: 99999;
    }

    .site-nav.active {
        display: flex !important;
    }

    .mobile-menu-btn {
        position: relative;
        z-index: 100000;
    }
}
/* MOBILE FIX - SINGLE UNIT PAGE */

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    .unit-page,
    .unit-layout,
    .unit-card,
    .booking-box,
    .unit-identity-card,
    .unit-gallery,
    .unit-gallery-main,
    .unit-gallery-thumbs {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .unit-layout {
        display: block;
    }

    .unit-card,
    .booking-box,
    .unit-identity-card {
        padding: 22px;
        border-radius: 22px;
        margin-bottom: 20px;
    }

    .unit-description,
    .unit-card p,
    .unit-card div {
        word-break: break-word;
    }

    .unit-identity-grid {
        grid-template-columns: 1fr;
    }

    .unit-gallery-main {
        height: 240px;
    }

    .unit-gallery-thumbs {
        grid-template-columns: 1fr 1fr;
    }

    .unit-gallery-thumbs img {
        height: 110px;
    }

    .unit-card h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }
}
/* SAFARI FIX - telefon/mail u top baru */

.top-bar,
.top-bar a,
.top-bar-inner,
.top-bar-inner a,
.top-item,
.top-item a {
    color: #ffffff !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

.top-bar a[href^="tel"],
.top-bar a[href^="mailto"] {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}