

/*=========
Font load
===========*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

body {

    background-color: #F6F2E7; /* Background color from mockup */
    margin: 0;
    padding: 0;
    overflow-x: hidden;

}

html {
    font-size: 16px; /* Osnovna veličina fonta za `rem` */
}

h1 {
    font-size: 2.5rem; /* oko 32px */
}

h2 {
    font-size: 1.5rem; /* oko 24px */
}

h3 {
    font-size: 1.25rem; /* oko 20px */
}

p {
    font-size: 1rem; /* oko 16px */
}

@media (max-width: 768px) {
    html {
        font-size: 15px; /* Smanjuje veličinu fonta za tablet */
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px; /* Smanjuje veličinu fonta za mobilne uređaje */
    }
}

/* Kontejner */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Unutrašnji razmak */
}

/* Preloader styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #5E4C3E; /* Background color for the preloader */
    z-index: 9999; /* Ensure it stays on top */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-icon {
    text-align: center;
    animation: spin 1.5s linear infinite;
}

.preloader-icon img {
    width: 80px; /* Size of the icon */
    height: 80px;
}

/* Animation for spinning icon (optional) */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* Resetovanje osnovnih stilova */



.hero-section8 {
    position: relative;
    height: 100vh;
    background-image: url('../img/our-story-main.jpg'); /* Zameni sa putanjom do slike */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}


.hero-section7 {
    position: relative;
    height: 100vh;
    background-image: url('../img/our-companies.jpg'); /* Zameni sa putanjom do slike */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-section6 {
    position: relative;
    height: 100vh;
    background-image: url('../img/our-story.jpg'); /* Zameni sa putanjom do slike */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}


.hero-section5 {
    position: relative;
    height: 100vh;
    background-image: url('../img/contact.jpg'); /* Zameni sa putanjom do slike */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-section4 {
    position: relative;
    height: 100vh;
    background-image: url('../img/thought-leadership.jpg'); /* Zameni sa putanjom do slike */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-section3 {
    position: relative;
    height: 100vh;
    background-image: url('../img/what-we-offer.jpg'); /* Zameni sa putanjom do slike */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('../img/hero-image11.jpg'); /* Zameni sa putanjom do slike */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Crni overlay sa prozirnošću */
    z-index: 1;
}

.navbar {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.logo {
    width: 220px;
}

#lighter .menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 5px 0;
    background-color: #5E4C3E;
    transition: 0.3s;
}

.menu-toggle {
    width: 30px;
    cursor: pointer;
    z-index: 4;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 5px 0;
    background-color: #F6F2E7;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: #F6F2E7 !important;
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: #F6F2E7 !important;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(94, 76, 62, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    transition: right 0.5s ease;
    z-index: 2;
}

.nav-links.open {
    right: 0;
}

.nav-links li {
    margin: 15px 0;
}

.nav-links li a {
      text-decoration: none;
    color: #F6F2E7;
    font-size: 15px;
    padding: 5px 5px;
    text-transform: uppercase;
  font-optical-sizing: auto;
  font-style: normal;
      font-weight: 800;
    font-family: "Cormorant Garamond", serif;
     letter-spacing: 2px;
}

.nav-links li a:hover {
   text-decoration: underline;
}

.hero-section2 {
    position: relative;
    height: 100vh;
    background-image: url('../img/hero-image2.jpg'); /* Zameni sa putanjom do slike */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: white;
}

.hero-section2 .hero-content {
    position: relative;
    max-width: 90%;
    z-index: 2;
    text-align: left;
      padding: 50px 100px 50px 100px;
}

.hero-section2 .hero-content h1 {

    line-height: 1.1;
    color: #F6F2E7;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 2px;
}

.hero-section2 .hero-content span {
      background: linear-gradient(to right, #E1BD81, #B68E5E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-section2 .hero-content p {
  font-family: "Inter", serif;

    color: #F6F2E7;
    margin: 20px 0;
    font-weight: 300;
    line-height: 1.5;
    max-width: 500px;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    z-index: 2;

}

.hero-content h1 {

    line-height: 1.1;
    color: #F6F2E7;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-style: normal;
     letter-spacing: 2px;
}

.hero-content span {
      background: linear-gradient(to right, #E1BD81, #B68E5E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-content p {
  font-family: "Inter", serif;

    color: #F6F2E7;
    margin: 20px 0;
    font-weight: 300;
    line-height: 1.5;
}

/* Responsivnost */
@media (max-width: 768px) {
    .hero-content h1, .hero-section2 .hero-content h1 {
      
        padding: 0px 20px 0px 20px;
    }

    .hero-content p {
  
    } 

   .hero-section2 .hero-content h1 {
  
        padding: 0px;
    }

    .hero-section2 .hero-content {
    position: relative;
    /* max-width: 90%; */
    z-index: 2;
    text-align: left;
    padding: 20px;
}
}








/* About Section */
.about {
    background-color: #F6F2E7; /* Svetlo bež pozadina */

}

.about-container {
     padding: 50px 100px 50px 100px;
      display: flex;
    margin: 0 auto;
    gap: 30px;
}

.about-left {
    flex: 1;
    display: flex;
    align-items: top;
    width: 50%;
}

.about-left h1 {
   font-weight: 800;
    color: #5E4C3E; /* Tamno smeđa za "About" */
    font-family: "Cormorant Garamond", serif;
     letter-spacing: 2px;
     text-transform: uppercase;
}

.about-left span {
    color: #e1c785;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.about-right h2 {
    font-weight: 300;
    color: #5E4C3E; /* Tamno smeđa za "About" */
        font-family: "Inter", serif;
     letter-spacing: 2px;
}

.about-right p {
    font-weight: 300;
    color: #5E4C3E; /* Tamno smeđa za "About" */
        font-family: "Inter", serif;
     letter-spacing: 2px;
}

.approach-link {
    font-size: 1em;
    color: #5E4C3E;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    transition: color 0.3s;
    font-family: "Cormorant Garamond", serif;
  font-style: normal;
   letter-spacing: 2px;
   text-transform: uppercase;
   margin-top: 20px;

}

.approach-link2 {
    font-size: 1em;
    color: #F6F2E7;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    transition: color 0.3s;
    font-family: "Cormorant Garamond", serif;
  font-style: normal;
   letter-spacing: 2px;
   text-transform: uppercase;
   margin-top: 20px;

}



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

    .about-container {
     padding: 20px;
      display: flex;
    margin: 0 auto;
    gap: 30px;
    flex-direction: column;
}

.about-left, .about-right {

    width: 100%;
}

}






.services-section {
    padding: 60px 0px 60px 0px;
    background-color: #5E4C3E; /* Tamno smeđa pozadina */
    text-align: center;
}

.services-section h1 {
    font-family: "Cormorant Garamond", serif;
text-transform: uppercase;
    margin-bottom: 20px;
    color: #F6F2E7;
    text-align: left;
    font-weight: 800;
    padding-left: 100px;
     letter-spacing: 2px;
}



.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    padding-left: 100px;
}

.slide {
    min-width: 80%;
    margin-right: 10px; /* Ostavlja deo za sledeći slajd */
    position: relative;
    text-align: left;
    color: white;
    transition: transform 0.5s ease;
}

.slide img {
    width: 100%;
    height: auto;
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #F6F2E7;
    max-width: 100%;
    background-color:transparent;
    padding: 20px;
}

.slide-content h3 {
    font-family: "Cormorant Garamond", serif;
    color: #F6F2E7;
    text-align: left;
    font-weight: 800;
    padding-left: 50px;
    letter-spacing: 2px;
}

.slide-content p {
    font-family: "Inter", serif;

    color: #F6F2E7;
    margin: 20px 0;
    font-weight: 300;
    line-height: 1.5;
    padding-left: 50px;
    width: 70%;
}

/* Navigacione strelice ispod slajdova */
.slideshow-nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.slideshow-nav .prev, .slideshow-nav .next {
    font-family: "Inter", serif;
    cursor: pointer;
    padding: 10px 16px;
    color: rgba(255, 247, 244, 0.8);
    font-weight: bold;
    font-size: 24px;
    background-color: transparent;
    margin: 0 10px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.slideshow-nav .prev:hover, .slideshow-nav .next:hover {
   color: rgba(255, 247, 244, 1);
}

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


    .services-section {
        padding: 20px 0;
         text-align: left;
    }

        .services-section h1 {

    text-align: left;
    padding-left: 20px;

}

    .services-section h2 {
 
        padding-left: 0;
        text-align: left;
    }

    .slideshow-container {
        width: 100vw;
        height: 100vw; /* Čini slajd kvadratnim */
        display: flex;
        overflow: hidden;
            padding-left: 0px;
    }

    .slide {
        width: 100vw;
        height: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-shrink: 0; /* Onemogućava smanjenje slajdova */
    }

    .slide img {
        width: 100vw;
        height: 100vw;
        object-fit: cover; /* Puni kvadratni prostor bez iskrivljenja */
    }

    .slide-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px;
        text-align: center;
        background: transparent;
    }

    .slide-content h3 {
        padding-left: 0;
        margin: 0;

    }

    .slide-content p {
        line-height: 1.4;
        padding-left: 0;
        width: auto;
        text-align: left
    }

    .slideshow-nav {
        bottom: 10px;
        width: 100%;
        display: flex;
        padding: 0 20px;
    }

    .slideshow-nav .prev, .slideshow-nav .next {
        font-size: 2em;

    }


    .slide-content h3 {
    
    }

    .slide-content p {
   
        max-width: 600px;
    }
}






.science-section {

    background-color: #F6F2E7; /* Svetlo bež pozadina */


}

.science-section .content{

   padding: 50px 100px 50px 100px;

}


.science-section h1 {
    font-family: "Cormorant Garamond", serif;
 letter-spacing: 2px;
    margin-bottom: 50px;
    color: #5E4C3E;
    text-align: left;
    font-weight: 800;
        text-align: left;
        text-transform: uppercase;
}

.science-section h1 span {
      background: linear-gradient(to right, #E1BD81, #B68E5E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-style: italic;
     text-transform: none;
}


.science-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    margin-bottom: 30px;
}


.science2-content {
      display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Raspodela prostora između stavki */
    gap: 20px; /* Razmak između stavki */

}

.science2-item {
   flex: 1 1 calc(33.333% - 20px); /* Širina svake stavke sa razmakom */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centriranje sadržaja unutar stavke */
    text-align: center;
    border-right: 1px solid #54433a;
}

.science2-item:last-child {
    border-right: none;
}

.science2-item img {
    width: 100%; /* Slika zauzima punu širinu roditeljskog elementa */
    height: auto; /* Automatski prilagođava visinu prema širini */
    border-radius: 0px; /* Zaobljeni uglovi slike (opciono) */
}

.science2-item p {
    font-family: "Inter", serif;
    color: #5E4C3E;
    margin: 20px 0;
    font-weight: 300;
    line-height: 1.5;
    text-align: left;
    padding-right: 20px;
}



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




    .science2-content {
    flex-direction: column;
}

.science2-item {
    flex: 1;
    padding: 0;
    border-right: none;
       text-align: left;

}


.science2-item:last-child {

    border-bottom: none;
}

    .science-content {
        flex-direction: row;
        justify-content: space-around;
        gap: 0;
    }

    .science-section .content{

   padding: 20px;

}

.science-section h2{

  text-align: left;

}

.science2-item p{


  text-align: left;

}


.science-section .custom-hr{

  display: none;

}


}





.spaces-section {
    background-color: #D0C6AB;

}


.spaces-section .content{

   padding: 50px 100px 50px 100px;

}

.spaces-section h1 {
   font-family: "Cormorant Garamond", serif;
    margin-bottom: 50px;
    color: #5E4C3E;
    font-weight: 800;
    text-align: left;
     letter-spacing: 2px;
     text-transform: uppercase;
}

.image-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.grid-item {
    position: relative; /* This makes the parent a containing block for absolute positioning */
    overflow: hidden;
}

.item5{
    padding-top: 20px;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;
}

.icon-container {
    position: absolute; /* To position it over the image */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Perfect centering */
    text-align: center; /* Ensures both icon and text are aligned centrally */
    color: #5E4C3E; /* White color for text/icons */
    display: flex;
    flex-direction: column; /* Ensures icon and text stack vertically */
    align-items: center; /* Center-aligns the content */

}

.icon-container .ikona {
    width: 50px; /* Adjust icon size */
    height: 50px;
    margin-bottom: 10px; /* Adds spacing between icon and text */
}

.icon-container .icon-text span{
    font-size: 2rem;
   line-height: 1.1;
    color: #F6F2E7;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.icon-container .icon-text {

    font-weight: 300;
    text-align: center; /* Center-align the text itself */
       font-family: "Inter", serif;
       color: #F6F2E7;

}




/* Responsive styling */
@media (max-width: 768px) {

    .spaces-section .content{

   padding: 20px;

}
    .image-grid {
        flex-direction: column;
    }

    .left-column,
    .right-column {
        flex-direction: column;
    }

    .grid-item {
        margin-bottom: 20px;
    }
}





/* Team Section Styles */
.tim-section {

    background-color: #F6F2E7;

}

.tim-section .content{

   padding: 50px 100px 50px 100px;

}

.tim-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: -100px;
}

.tim-member {
    flex: 1 1 calc(33.33% - 20px);
    background: #5E4C3E;
    border-radius: 0px;
    overflow: hidden;
    text-align: left;
    padding: 20px;
}

.tim-member img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px; /* Space between image and title */
}

.tim-member h2 {
    line-height: 1.1;
    color: #F6F2E7;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.tim-member p {
        font-family: "Inter", serif;
    line-height: 1.6;
    color: #F6F2E7;
    margin: 10px 0;
    font-weight: 300;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tim-member {
        flex: 1 1 100%;
    }
    .tim-section .content{

   padding: 20px;

}
}




















.footer {
    background-color: #5E4C3E; /* Tamno braon */
    color: #F6F2E7; /* Bela boja za tekst */
    padding: 40px 20px;
    text-align: center;
}

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

.footer-logo {
    width: 250px;
    margin-bottom: 20px;
}


/* Sakrijte mobilni logo na desktop verziji */
.mobile-logo {
    display: none;
}

/* Sakrijte desktop logo na mobilnoj verziji */
.desktop-logo {
 
     text-align: center;
}

/* Na mobilnoj verziji prikazati samo mobilni logo */
@media (max-width: 768px) {
    .mobile-logo {
        display: block;
    }
    
    .desktop-logo {
        display: none;
    }
}



















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

.footer-nav a {
    color: #F6F2E7;
    text-decoration: none;
    font-size: 15px;
    padding: 5px 5px;
    transition: color 0.3s;
    text-transform: uppercase;
    font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1px;
}

.footer-nav a:hover {
    color: #F6F2E7; /* Zlatna nijansa za hover efekat */
    text-decoration: underline;
}

.footer-nav a.active {
    color: #F6F2E7; /* Zlatna nijansa za hover efekat */
    text-decoration: underline;
}

.footer-nav2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.footer-nav2 a {
    text-decoration: none;
    color: #F6F2E7;
    font-size: 15px;
    padding: 5px 5px;
    transition: color 0.3s;
    text-transform: uppercase;
   font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1px;
}

.footer-nav2 a:hover {
    color: #fff7f0; /* Zlatna nijansa za hover efekat */
    text-decoration: underline;
}

.footer-nav2 a.active {
    color: #F6F2E7; /* Zlatna nijansa za hover efekat */
    text-decoration: underline;
}

.footer-copy {
    border-top: 1px solid #F6F2E7;
        color: #F6F2E7;
    text-decoration: none;
    font-weight: lighter;
    font-size: 12px;
    padding: 5px 5px;
    transition: color 0.3s;
    text-transform: uppercase;
    font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1px;
}


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

    .footer {
  
        padding: 40px 20px;
        text-align: left;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: row;
        align-content: flex-end;
        align-items: flex-start;
    }

    .footer-logo {
        width: 200px;
        margin-bottom: 20px;
    }

    /* Postavljanje navigacija u dve kolone */
    .footer-nav, .footer-nav2 {
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: left;
        width: 50%; /* Svaka navigacija zauzima polovinu širine */
       
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
    }

    .footer-nav a, .footer-nav2 a {

        text-decoration: none;
        font-weight: 500;
        font-size: 1em;
        transition: color 0.3s;

    }

    .footer-nav a:hover, .footer-nav2 a:hover {
        text-decoration: underline;
    }

        .footer-nav a.active, .footer-nav2 a.active {
        text-decoration: underline;
    }

    .footer-copy {
        font-size: 0.9em;

        margin-top: 20px;
        border-top: 1px solid #F6F2E7;
        padding-top: 10px;
        width: 100%;
        text-align: center;
    }

}







.custom-hr {
    border: none;
    border-top: 0.5px solid #F6F2E7;
    width: 100%;
    margin: 20px 0;
}


/* OUR STORY PAGE */


.video-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #F6F2E7; /* Svetla pozadina */
}


.video-section .content {
       padding: 50px 100px 50px 100px;
}



.video-section h1 {

    font-weight: 800;
    color: #5E4C3E; /* Tamno smeđa za "About" */
    font-family: "Cormorant Garamond", serif;
     letter-spacing: 2px;
}

.video-section h1 span {
          background: linear-gradient(to right, #E1BD81, #B68E5E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: "Cormorant Garamond", serif;
}

.video-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 0px;
    margin-top: 50px;
}

.responsive-video {
    width: 100%;
    height: auto;
    border-radius: 0px;
}

/* Dugme za play u centru */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.7);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: #5e4c3e;
    cursor: pointer;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}



/* Skrivene kontrole po default-u */
#myVideo::-webkit-media-controls {
    display: none !important;
}

#myVideo:focus::-webkit-media-controls,
#myVideo:hover::-webkit-media-controls {
    display: block !important;
}





/* Responsive CSS */
@media (max-width: 768px) {


.video-section h1 {

    padding-top: 50px;
}

    .video-section .content {
       padding: 0px;
}

    .video-section h2 {

       padding-top: 50px;
    }

    .play-button {
        width: 60px;
        height: 60px;
   
    }
}



.about-us-section {
    background-color: #5E4C3E; /* Tamno braon pozadina */
    padding: 60px 20px;
    text-align: left;
    color: #F6F2E7;
}

.about-content {
     padding: 50px 100px 50px 100px;
}

.about-content h2 {
    font-family: "Cormorant Garamond", serif;
 letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #F6F2E7;
}

.about-content p {
   font-family: "Inter", serif;
    font-weight: 300;
    line-height: 1.6;
    color: #F6F2E7;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
    border-radius: 0px;
}

/* Responsive dizajn */
@media (max-width: 768px) {

    .about-content {
     padding: 0px;
}

    .about-content h2 {
     
    }

    .about-content p {
      
    }
}





.mission-section {
    background-color: #5E4C3E; /* Svetlija braon boja */

    text-align: center;
    color: #F6F2E7;
}

.mission-content {
         padding: 50px 100px 100px 100px;
    margin: 0 auto;
}

.mission-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 800;
    color: #fff7f0;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.mission-columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.column {
    font-family: "Inter", serif;
    line-height: 1.6;
    font-weight: 300;
    color: #fff7f0;
    flex: 1;
    text-align: left;
}

.column:not(:last-child) {
    border-right: 1px solid #fff7f0;
    padding-right: 20px;
}

.learn-more-link {
    font-family: "Cormorant Garamond", serif;
    font-weight: 800;
    color: #fff7f0;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: color 0.3s ease;
    letter-spacing: 2px;
}

.learn-more-link:hover {
    color: #fff7f0;
}

/* Responsive dizajn */
@media (max-width: 768px) {

    .mission-content {
         padding: 20px;
    margin: 0 auto;
}

    .mission-columns {
        flex-direction: column;
        gap: 20px;
    }

    .column:not(:last-child) {
        border-right: none;
        padding-right: 0;
    }

    .learn-more-link {
       
    }
}




.destinations-section {
    background-color: #F6F2E7; /* Svetlija braon boja */
    padding: 0px;
    text-align: center;
    color: #5E4C3E;
    margin-top: 50px;

}


.destinations-section .container {
     padding: 0px 100px 50px 100px;
         max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;

}

.destinations-section .text-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.destinations-section .text-image img {
    width: 60%;
    height: auto;
    object-fit: cover;
    border-radius: 0px;
         height: 70vh;
}

.destinations-section .tekst-content {
    flex: 1;
    text-align: left;
    color: #5E4C3E;
    padding: 50px;
}

.destinations-section .tekst-content h2 {
   font-family: "Cormorant Garamond", serif;
    margin-bottom: 10px;
    color: #5E4C3E;
    font-weight: 800;
}

.destinations-section .tekst-content p {
   font-family: "Inter", serif;
    line-height: 1.6;
    color: #5E4C3E;
    font-weight: 300;
}

.destinations-section .tekst-content a {
    color: #F6F2E7;
}

.destinations-section .ikona{
    width: 70px !important;
    height: 70px !important;
}


/* Responsive stilovi */
@media (max-width: 768px) {

    .destinations-section {

    margin-top: 0px;

}

     .destinations-section .container {
     padding: 20px;
     }

 .destinations-section .text-image img {
    width: 100%;

}

.destinations-section .tekst-content {

    padding: 0px;
}


.destination-utah {
  
    height: 100vh !important;

}

}




/* Sekcija za Abu Dhabi */
.destination-abu-dhabi {
    background-image: url('../img/Abu-Dhabi-main.jpg'); /* Putanja do slike */
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3); /* Sloj za tamniju sliku */
}

.destination-content {
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 900px;
}

.destination-content img.destination-icon {
    width: 70px; /* Veličina ikone */
    margin-bottom: 20px;
}

.destination-content h2 {
    line-height: 1.1;
   color: #F6F2E7;
      font-weight: 800;
      letter-spacing: 1px;
      font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.destination-content p {
    font-family: "Inter", serif;
    line-height: 1.6;
    color: #F6F2E7;
    font-weight: 300;
}

/* Responsive stilovi */
@media (max-width: 768px) {
     .destination-abu-dhabi .destination-content h2 {
     
    }

    .destination-abu-dhabi .destination-content p {

    
    }

    .destination-content img.destination-icon {
        width: 50px; /* Smanjena veličina ikone na manjim ekranima */
     
    }

        .destination-abu-dhabi .destination-content {
        text-align: left;
      
    }


}



/* Sekcija za Abu Dhabi */
.destination-utah {
    background-image: url('../img/utah-main.jpg'); /* Putanja do slike */
    background-size: cover;
    background-position: center;
    height: 75vh;
    position: relative;
}

/* Responsive stilovi */
@media (max-width: 768px) {
     .destination-utah .destination-content h2 {
     
    }

    .destination-utah .destination-content p {

    
    }

    .destination-utah img.destination-icon {
        width: 50px; /* Smanjena veličina ikone na manjim ekranima */
     
    }

        .destination-utah .destination-content {
        text-align: left;
      
    }


}





.design-section {
    background-color: #D4C7B3; /* Svetlija braon boja */
    padding: 0px;
    text-align: center;
    color: #5E4C3E;

}

.content-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;

}

#braon {
    background-color: #5E4C3E; /* Tamno braon pozadina */
}

#bez {
    background-color: #D0C6AB; /* Tamno braon pozadina */
}


#bez-light {
    background-color: #F6F2E7; /* Tamno braon pozadina */
}


.text-content .temple-icon {
    width: 70px !important;
    height: 70px !important;
}

.text-image {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-direction: row;
}

.text-image img {
    width: 60%;
    height: auto;
    object-fit: cover;
    border-radius: 0px;
         height: 70vh;
}

.text-content {
   display: flex;
    flex-direction: column;
    justify-content: center; /* Vertikalno centriranje */
    align-items: flex-start; /* Horizontalno poravnanje levo, može se promeniti u 'center' za centriranje */
    padding: 20px; /* Razmak unutar braon kocke */
    background-color: #5E4C3E; /* Boja pozadine */
    color: #F6F2E7; /* Boja teksta */
    height: 100%; /* Visina braon kocke */
}

#braon .text-content h2 {
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 10px;
    color: #f8f4ec;
    font-weight: 800;
    letter-spacing: 2px;
}

#braon .text-content p {
    font-family: "Inter", serif;
    line-height: 1.6;
    color: #f8f4ec;
    font-weight: 300;
}

#braon .text-content a {
    color: #F6F2E7;
}


#bez-light .text-content h2 {
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 10px;
    color: #5E4C3E;
    letter-spacing: 2px;
    font-weight: 800;
}

#bez-light .text-content h3 {
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 10px;
    color: #5E4C3E;
     font-weight: 800;
}

#bez-light .text-content p {
    font-family: "Inter", serif;
    line-height: 1.6;
    color: #5E4C3E;
     font-weight: 300;
}

.text-content h2 {
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 10px;
    color: #5E4C3E;
     font-weight: 800;
     letter-spacing: 2px;
}

.text-content p {
   font-family: "Inter", serif;
    line-height: 1.6;
    font-weight: 300;
}

/* Responsive dizajn */
@media (max-width: 768px) {
    .text-image {
        flex-direction: column;
        text-align: center;
    }

    .text-image img {
        width: 100%;
    }

    .text-content h2 {
       
    }

    .text-content p {
      
    }
}



.vision-section {
    background-color: #f8f4ec; /* Tamno braon pozadina */
    padding: 60px 20px;
    text-align: left;
}

.vision-section .content {
     padding: 50px 100px 50px 100px;
}

.vision-section h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 800;
    margin-bottom: 20px;
    color: #5E4C3E;
}

.vision-section h3 {
    font-family: "IBM Plex Sans", sans-serif;
    line-height: 1.6;
    color: #5E4C3E;
    font-weight: 800;
}




.residential-design-section {
    text-align: left;
    background-color: #F6F2E7;
    padding: 40px 20px;
}


.residential-design-section .content {
     padding: 50px 100px 50px 100px;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.text-columns {
    display: flex;
    padding-top: 30px;
    align-items: left;
    justify-content: space-between;
    gap: 20px;

}


.headline h1 {
    font-family: "Cormorant Garamond", serif;
    color: #5E4C3E;
    text-align: left;
     font-weight: 800;
     letter-spacing: 2px;
}

.headline h2 {
    font-family: "Cormorant Garamond", serif;
    color: #5E4C3E;
    text-align: left;
     font-weight: 800;
     letter-spacing: 2px;
}

.description h3 {
    font-family: "IBM Plex Sans", sans-serif;
    color: #5E4C3E;
    text-align: left;
    line-height: 1.6;
    font-weight: 500;
    max-width: 600px; 
}



/* Responsive dizajn */
@media (max-width: 768px) {

    .residential-design-section .content {
     padding: 0px;
}

    .text-columns {
        flex-direction: column;
        text-align: center;
    }

    .headline h3, .description p {
        text-align: center;
    }
}




.blog-posts-section {
    background-color: #F6F2E7;

}

.container {
     padding: 50px 100px 50px 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.blog-post-card {
    background-color: #F6F2E7;
    border-radius: 0px;
    overflow: hidden;

}

.blog-post-card img {
    width: 100%;
    height: auto;
}

.post-info {
    padding: 20px 0;
}

.post-info .date {
    font-family: "IBM Plex Sans", sans-serif;
    color: #5E4C3E;
    opacity: .7;
}

.post-info h3 {
     font-family: "IBM Plex Sans", sans-serif;
    margin: 10px 0;
    color: #5E4C3E;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.read-more-arrow {
    color: #5E4C3E;
    margin-left: 5px;
    text-decoration: none;
}

.post-info p {
    font-family: "Inter", serif;
    line-height: 1.6;
    color: #5E4C3E;
    margin: 10px 0;
    font-weight: 300;
}


.post-info a {
   text-decoration: none;
}

/* Responzivni dizajn */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
            padding: 20px;
    }
}

@media (max-width: 768px) {
    .container {
            padding: 20px;
        grid-template-columns: 1fr;
    }

    .post-info h3 {
    }

    .post-info p {
    }
}





.connect-section {
    
    padding: 60px 20px;
    background-color: #F6F2E7;
}

.connect-section .content {
     padding: 50px 100px 50px 100px;
     display: flex;
    align-items: center;
    justify-content: space-between;
}


.connect-content {
    max-width: 50%;
}

.connect-content h1 {
    line-height: 1.1;
   color: #5E4C3E;
      font-weight: 800;
      letter-spacing: 1px;
      font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.connect-content h2 {
     font-family: "IBM Plex Sans", sans-serif;
    margin: 10px 0;
    color: #5E4C3E;
    display: flex;
    align-items: center;
    font-weight: 500;
     font-weight: 800;
     letter-spacing: 2px;
}


.connect-content h3 {
      font-family: "Inter", serif;
    margin: 10px 0;
    color: #5E4C3E;
    display: flex;
    align-items: center;
         font-weight: 300;
     letter-spacing: 2px;
}

.connect-content p {
    font-family: "Inter", serif;
    line-height: 1.6;
    color: #5E4C3E;
    margin: 10px 0;
    padding-top: 50px;
         font-weight: 300;

}

.connect-content a {
    font-family: "Inter", serif;
    line-height: 1.6;
    color: #5E4C3E;
    margin: 10px 0;
    padding-top: 50px;
     font-weight: 300;
}

.connect-form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}



.connect-form label {
    color: #5E4C3E;
    margin-bottom: 5px;
   font-family: "Inter", serif;
    line-height: 1.6;
    color: #5E4C3E;
    margin: 10px 0;

}

.connect-form input {
    font-family: "Inter", serif;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #5E4C3E;
    background: transparent;
    color: #5E4C3E;
}



.connect-form button {
    font-family: "Inter", serif;
    background: none;
    border: none;
    color: #5E4C3E;
    cursor: pointer;
    align-self: flex-start;
}

.email-info {
    margin-top: 20px;
    color: #5E4C3E;
}

.connect-image {
    max-width: 40%;
}

.connect-image img {
    width: 100%;
    height: auto;
    border-radius: 0px;
}

/* Responsive styling */
@media (max-width: 768px) {
   

    .connect-section .content {
     padding: 0px;
      flex-direction: column;
        text-align: center;
        text-align: left;

}

    
    .connect-content {
        max-width: 100%;
    }
    
    .connect-image {
        max-width: 100%;
        margin-top: 20px;
    }
}





.team-section {

    background-color: #D0C6AB;
    text-align: left;
}

.team-section .content {
     padding: 50px 100px 50px 100px;

}


.team-section h1 {
    line-height: 1.1;
   color: #5E4C3E;
      font-weight: 800;
      font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
    margin-bottom: 50px;
   letter-spacing: 2px;
   text-transform: uppercase;
}

.team-section h2 {
    line-height: 1.1;
   color: #5E4C3E;
      font-weight: 800;
      letter-spacing: 1px;
      font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.team-member {
     display: flex;
    align-items: center; /* Vertikalno centrira sadržaj */
    margin-bottom: 40px;
    border-bottom: 1px solid #5E4C3E;
    padding-bottom: 40px;
}

.team-member:last-child {

    border-bottom: none;

}

.team-member img {
    width: 350px;
    height: auto;
    border-radius: 0px;
    margin-right: 20px;
}

.team-info {
    max-width: 70%;
}

.team-info h3 {
    font-family: "Cormorant Garamond", serif;
    margin: 10px 0;
    color: #5E4C3E;
    display: flex;
    align-items: center;
    font-weight: 800;
    letter-spacing: 2px;
}

.team-info p {
    font-family: "Inter", serif;
    line-height: 1.6;
    color: #5E4C3E;
    margin: 10px 0;
   font-weight: 300;
}

/* Responsive styling */
@media (max-width: 768px) {

    .team-section .content {
     padding: 20px;
     text-align: left;

}

.team-section h2 {
  margin-top: 30px;
    margin-bottom: 20px;
}

    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }
    
    .team-member img {
        margin: 0 0 0px 0;
        width: 100%;

    }
    
    .team-info {
        max-width: 100%;
    }
}







.news-article {
    padding: 0;
    background-color: #F6F2E7;
}

.news-article-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Full-width Hero Image */
.news-hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Article Content */
.news-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.news-details h1 {
    line-height: 1.1;
   color: #5E4C3E;
      font-weight: 800;
      letter-spacing: 1px;
      font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.news-article h2 {
 font-family: "Inter", serif;
    margin: 10px 0;
    color: #5E4C3E;
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-top: 30px;
    }

.news-details .date {
           line-height: 1.6;
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #5E4C3E;
  letter-spacing: 1px;
  font-size: 13px;
    margin-bottom: 15px;
    opacity: 0.75;
}

.news-text {

    line-height: 1.6;
    color: #5E4C3E;
}

.news-text p {

  font-family: "Inter", serif;

    line-height: 1.6;
    color: #5E4C3E;
    margin: 10px 0;
    font-weight: 300;

}

.news-text ul {

  list-style: disc;
  padding-left: 30px;

}


.news-text ol {

  padding-left: 30px;

}


.news-text li {

   font-family: "Inter", serif;

    line-height: 1.6;
    color: #5E4C3E;
    margin: 10px 0;
    font-weight: 300;

}

/* Social Share Section */
.social-share {
    display: flex;
    align-items: center;
    margin: 40px 0;
    padding-left: 20px;
}

.social-share span {
           line-height: 1.6;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #5E4C3E;
  letter-spacing: 1px;
  font-size: 15px;
  padding-right: 10px;
    
}

.social-icon img {
    width: 30px;
    height: auto;
    margin-right: 10px;
    transition: transform 0.2s ease;
}

.social-icon img:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-details h1 {
        
    }

    .news-text {
        
    }

    .social-icon img {
        width: 25px;
    }

    .news-content {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .news-details h1 {
     
    }

    .news-text {
     
    }

    .social-icon img {
        width: 20px;
    }
}



/* General styling */
.spa-section {

    background-color: #F6F2E7;
}

.spa-section .container {
    padding: 50px 100px 50px 100px;
}

.spa-section .section-title {
 
    line-height: 1.1;
   color: #5E4C3E;
      font-weight: 300;
      letter-spacing: 1px;
   font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 300;
}

/* Flexbox layout */
.spa-flex {
    display: flex;
    justify-content: space-between;
    gap: 50px; /* Control gap between columns */
    padding-top: 50px;
}

.spa-column {
    flex: 1;
    min-width: 250px;
}

.spa-column h3 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;

    color: #5E4C3E;
    margin-bottom: 15px;
    padding-top: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spa-column p, .spa-column ul li {
   font-family: "Inter", serif;
font-weight: 300;
    line-height: 1.6;
    color: #5E4C3E;
    margin: 10px 0;
}

.spa-column ul {
    list-style-type: disc;
    padding-left: 20px;
}

.spa-column h4 {

    color: #5E4C3E;
    margin-bottom: 10px;
}

/* Responsive styles for mobile */
@media screen and (max-width: 768px) {
    .spa-flex {
        flex-direction: column;
        align-items: center;
        gap: 0px;
        padding-top: 0px;
    }

    .spa-column {
        padding: 10px 0;
        min-width: 100%;
        text-align: left;
    }

    .section-title {
        
    }

    .spa-column h3, .spa-column p, .spa-column ul li, .spa-column h4 {
       
    }
}

.pozadina-section2 {
    position: relative;
    min-height: 75vh;
    background: url('../img/pozadina2.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: left;
}


.pozadina-section3 {
    position: relative;
    min-height: 75vh;
    background: url('../img/restaurant.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: left;
}

/* North Lake Powell Utah Section */
.pozadina-section {
    position: relative;
    min-height: 75vh;
    background: url('../img/about-image.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: left;
}


















.image-text-section {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.image-text-section .image-container {
    flex: 1;
    overflow: hidden;
}

.image-text-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ovo će sliku postaviti tako da se uklopi u prostor */
}

.image-text-section .text-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertikalno centriranje */
    padding: 50px;
    background-color: #5E4C3E; /* Braon pozadina */
    color: #F6F2E7; /* Boja teksta */
   
}


.image-text-section .temple-icon{
   width: 70px;
   width: 70px;
   margin-bottom: 20px;
}



.image-text-section h2{
    display: flex;
    width: 100%;
    align-items: stretch;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}


.image-text-section p{
    display: flex;
    width: 100%;
    align-items: stretch;
    font-family: "Inter", serif;
    font-weight: 300;
}

/* Responsive dizajn za mobilne uređaje */
@media (max-width: 768px) {
.image-text-section {
        flex-direction: column; /* Postavlja sliku iznad teksta */
    }

    .image-text-section .image-container, .image-text-section .text-box {
        width: 100%; /* Puni širinu sekcije na mobilnim uređajima */
    }

    .image-text-section .text-box {
        padding: 15px;
        text-align: left; /* Centrirani tekst na mobilnim uređajima */
        padding-top: 30px;
        padding-bottom: 30px;
    }
}



.text-image-section {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.text-image-section .text-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertikalno centriranje teksta */
    padding: 50px;
    background-color: #F6F2E7; /* Braon pozadina */
    color: #5E4C3E; /* Boja teksta */
}


.text-image-section .temple-icon{
   width: 70px;
   width: 70px;
   margin-bottom: 20px;
}



 .text-image-section h2{
    display: flex;
    width: 100%;
    align-items: stretch;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}


.text-image-section p{
    display: flex;
    width: 100%;
    align-items: stretch;
   font-family: "Inter", serif;
   font-weight: 300;
}

.text-image-section .image-container {
    flex: 1;
    overflow: hidden;
}

.text-image-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Sliku postavlja tako da se uklopi u prostor */
}

/* Responsive dizajn za mobilne uređaje */
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column-reverse; /* Postavlja sliku iznad teksta */
    }

    .text-image-section .text-box, .text-image-section .image-container {
        width: 100%; /* Puni širinu sekcije na mobilnim uređajima */
    }

    .text-image-section .text-box {
        padding: 15px;
        text-align: left; /* Centrirani tekst na mobilnim uređajima */
        padding-top: 30px;
        padding-bottom: 30px;
    }
}



.news2 {
    display: flex;
    gap: 10px; /* Razmak između slika */
}

.news2 img {
    width: 50%; /* Svaka slika zauzima pola prostora */
    height: auto;
}

@media (max-width: 768px) {
    .news2 {
        flex-direction: column; /* Na mobilnom prikazu slike idu jedna ispod druge */
    }

    .news2 img {
        width: 100%; /* Svaka slika zauzima punu širinu na mobilnim uređajima */
    }
}



.author {
    display: flex;
    align-items: center; /* Poravnava sliku i ime vertikalno */
    gap: 10px; /* Razmak između slike i imena */
    margin-top: 20px; /* Malo prostora iznad sekcije autora */
}

.author img {
    width: 100px; /* Veličina slike pisca */
    height: 100px;
    border-radius: 50%; /* Da slika bude kružna */
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: bold;
     font-family: "Cormorant Garamond", serif;
}



.custom-blockquote {
  font-style: italic;
  color: #444;
  border-left: 4px solid #ccc;
  padding: 1em 1.5em;
  margin: 2em 0;
  background-color: #f9f9f9;
  border-radius: 4px;
}

.custom-blockquote footer {
  display: block;
  margin-top: 0.5em;
  font-weight: bold;
  color: #333;
}

.newslink {
    font-size: 1em;
    color: #5E4C3E;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    transition: color 0.3s;
    font-family: "Cormorant Garamond", serif;
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
}








.destinations{
  background: #F6F2E7;
  padding: clamp(40px, 6vw, 84px) 0;
  color: var(--ink);
}
.dest-container{
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

.dest-heading{
          font-weight: 800;
    color: #5E4C3E;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 2px;
    font-size: 2.5rem; /* oko 32px */
    padding-bottom: 20px;
}


.dest-intro{

    font-size: 1rem;
    margin-bottom: 1.5rem;
  max-width: 80ch;
     font-family: "Inter", serif;
    line-height: 1.6;
    color: #5E4C3E;
    font-weight: 300;
}

/* List */
.dest-list{ list-style: none; padding: 0; margin: 22px 0 10px; }
.dest-item{ border-top: 1px solid #5E4C3E; }
.dest-item:last-child{ border-bottom: 1px solid #5E4C3E; }

/* Header */
.dest-trigger{
  all: unset;
  display: block;
  width: 100%;
  cursor: pointer;
}
.dest-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.dest-title-wrap{ min-width: 0; }
.dest-title{
margin: 0 0 .5rem;
    color: #5E4C3E;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0rem;
    line-height: 1;
  line-height: 1.2;
}

.dest-meta{
   font-size: 1rem;
    margin-bottom: 1.5rem;
  max-width: 80ch;
     font-family: "Inter", serif;
    line-height: 1.6;
    color: #5E4C3E;
    font-weight: 300;
    font-style: italic;
}

/* Chevron (right) */
.dest-arrow{
  position: relative;
  width: 14px; height: 14px;
  flex: 0 0 14px;
  transform: rotate(0deg);
  transition: transform .28s ease;
}

.dest-arrow::before{
  content:"";
  position: absolute; inset: 0;
  border-right: 2px solid #5E4C3E;;
  border-bottom: 2px solid #5E4C3E;;
  transform: rotate(-45deg);
}



.dest-item.is-open .dest-arrow{ transform: rotate(180deg); }

/* Panel – smooth open/close */
.dest-panel{
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height .45s ease,
    opacity .3s ease,
    transform .3s ease;
  will-change: max-height, opacity, transform;
  padding-right: 1px; /* avoid subpixel jitter in some browsers */
}
.dest-item.is-open .dest-panel{
  opacity: 1;
  transform: none;
}

/* Panel content */
.dest-panel > p{
  margin: 0 0 12px 0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
     font-family: "Inter", serif;
    line-height: 1.6;
    color: #5E4C3E;
    font-weight: 300;
}

.dest-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 14px 0 12px;
}
.dest-gallery img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.dest-cta{
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 8px 0 20px;
}

/* Buttons */
.btn{ display:inline-block; padding:.7em 1.1em; border-radius:999px; text-decoration:none; }
.btn-brown{ background: transparent; color:#5E4C3E; }
.btn-brown:hover{ background: #9b4e2f; }
.btn-ghost{ border:1px solid #5E4C3E; color:#5E4C3E; background: transparent; }
.btn-ghost:hover{ background: #5E4C3E; color:#fff; }

.dest-loadmore{
  display:flex; justify-content:center; margin-top: 18px;
}

/* Hidden items for load more */
.dest-item.is-hidden{ display: none; }

/* Responsive */
@media (max-width: 860px){
  .dest-gallery{ grid-template-columns: 1fr; }
  .dest-gallery img{ height: 52vw; }
}



