body, div, h3, h4, h5, h6, p, ul, img {margin:0px; padding:0px; }

body{
    font-family: 'Quicksand', sans-serif;
}
body {
  font-size: 17px;
  color: #444444;
  text-align: justify;
  text-justify: inter-word;
}
main {
   background-color: white;
    margin: 0 auto; 
}
header {
    position: relative;
    text-align: center;
}
img.nomob {
    max-width: 100%;
    height: auto;
    width: 100%;
}
p {
  text-align: justify;
  font-weight: 500;
}
hr {
     border: none; /* Remove default border */
    border-top: 3px solid #888888; /* Set a solid black top border */
}
header {
    width: 100%;
    margin: 0 auto; 
    text-align: left;
}
.mobile {
    display: none;
}
a {
  color: blue; 
  text-decoration: underline;
}
a:hover {
    color: green;
}
.off {
    max-width: 160px;
    float: right;
}
/* Style the navigation bar */
.navbar {
    background-image: linear-gradient(0deg, #FFBE4F, #F8DE7E); /* Background color for the navbar */
    padding: 10px 0; /* Increased padding for the top and bottom of the navbar */
}
.container-nav {
    max-width: 1200px; /* Set a maximum width for the content */
    margin: 0 auto; /* Center the content horizontally */
    display: flex;
    justify-content: space-between; /* Align the logo and menu at opposite ends */
    align-items: center; /* Vertically center the content */
}
.logo {
    font-size: 24px; /* Font size for the logo */
    text-decoration: none; /* Remove underline from the logo */
    padding-left: 20px;
    color: #fff; /* Text color for the logo */
}
.menu {
    list-style: none; /* Remove bullet points from the menu */
    display: flex;
    align-items: center; /* Center the menu vertically */
}
.menu li {
    margin-right: 20px; /* Add spacing between menu items */
}
.menu a {
    text-decoration: none; /* Remove underline from menu links */
    color: #333333; /* Text color for menu links */
    font-weight: bold; /* Make menu links bold */
     font-size: 18px; /* Larger font size for menu links */
    transition: color 0.3s; /* Smooth color transition on hover */
}
.menu a:hover {
    color: #f8de7f; /* Change color on hover */
}

.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: none; /* Make the button initially visible */
}
.menu.active {
    display: block; /* or any other style to show the menu */
}
.bar {
    width: 30px;
    height: 3px;
    background-color: #777777;
    margin: 6px 0;
    transition: 0.4s;
}
h1 {
    text-align: center;
    padding: 2%;
    color: #4C4B4B;
    font-size: 2.5rem; /* Explicitly defines size to stop the error */
    margin: 0.5em 0;   /* Recommended for better spacing */
}
h2 {
    text-align: center;
    color: #4C4B4B;
}
h3 {
    text-align: center;
    color: #4C4B4B;
}
.section-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px;
    background-color: white; /* Change the background color as needed */
}
.section-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px;
    background-color:  #F8DE7F; /* Change the background color as needed */
}
.section-left .content {
    order: 1;
}
.section-left .image {
    order: 2;
}
.section-right .content {
    order: 2;
}
.section-right .image {
    order: 1;
}
/* Additional styles as needed for text, images, etc. */
.content {
    flex: 1;
    max-width: 50%;
    padding: 0 0 16px 0;
}
.image img {
    max-width: 100%;
    height: auto;
}
.section-left img,
.section-right img {
      border: 2px solid #98491d;
  border-radius: 10px;
}
iframe{
    padding: 2%;
    width:100%;              
}

.sharebar{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  justify-content:center;   /* ← THIS is missing */
}
  .sharebar .sh{
    width:34px;
    height:34px;
    border-radius:6px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font:700 14px/1 Arial, sans-serif;
    color:#fff;
    text-decoration:none;
    user-select:none;
    box-shadow:0 1px 3px rgba(0,0,0,.15);
  }
  .sh-fb{background:#1877f2}
  .sh-msgr{background:#0084ff}
  .sh-x{background:#111}
  .sh-rd{background:#ff4500}
  .sh-th{background:#000}
  .sh-em{background:#6b7280}
  .sh-pin{background:#e60023}
  .sh-wa{background:#25d366}
  .sh-tg{background:#229ed9}
  .sh-ln{background:#0a66c2}
  .sh-copy{background:#16a34a}

  .sharebar .sh:hover{filter:brightness(0.95)}
  
footer {
  width: 100%;
}
.footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 60px;
  align-items: center;
  background-color: #d4d6d3; 
}
.footer-inner .image {
  max-width: 50%; /* Set the max-width for the "image" in PC */
}
.footer-inner .content {
  max-width: 48%; /* Set the max-width for the "content" in PC */
}
footer p {
    color: #353535;
    font-size: 18px;
}
footer a {
    color: green;
    text-decoration: none;
}
footer a:hover {
    color: blue;
}
.media {
  margin: 20px 0;
  padding: 0; 
}
.media li {
  float: left;
  padding: 4px;
  list-style: none;
  position: relative;
}
/* lists in sections */
.simplist  li {
    margin-left: 60px;
    text-align:left;
      font-weight: 500;
}
* {
  box-sizing: border-box;
}



#calendar{
  max-width:900px;
  margin:30px auto;
  font-family:system-ui;
}

.calendar-month{
  margin-bottom:30px;
}

.calendar-title{
  font-weight:700;
  margin-bottom:10px;
  font-size:18px;
}

.calendar-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:6px;
}

.day{
  padding:10px;
  text-align:center;
  border-radius:8px;
  background:#f3f3f3;
}

.booked{
  background:#ffb3b3;
  text-decoration:line-through;
}

.free{
  background:#e7f6e7;
}


.faq-container {
    width: 90%;  /* Uses 90% of the screen width, making it responsive */
    max-width: 1000px;  /* Limits the width for larger screens */
    margin: 20px auto;  /* Centers the container */
    padding: 20px;  /* Adds space inside the container */
}


  .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }

  .faq-question {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }



.faq-item.active .faq-question::after {
    transform: rotate(180deg); /* Rotates the "V" to point upwards */
}


  .faq-answer {
    display: none;
    padding: 10px;
    font-size: 16px;
    color: #333;
  }

  .faq-item.active .faq-answer {
    display: block;
  }

  .faq-item.active .faq-question::after {
    transform: rotate(180deg); /* Rotates the arrow up when open */
  }
  .hidden-faqs {
  display: none;
}

#load-more {
  background: #008001; /* Solid background color */
  margin: 20px auto 30px auto; /* Centers button */
  color: #fff;
  font-family: 'Quicksand-SemiBold', sans-serif;
  font-size: 22px;
  padding: 15px 25px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: block; /* Ensures it takes full width for centering */
  text-align: center; /* Centers the text inside */
  width: fit-content; /* Makes the button only as wide as needed */
  transition: background-color 0.5s ease, opacity 0.5s ease;
}

#load-more:hover {
  background: #F8DE7F; /* Solid background color on hover */
  color: black;
}



  /* jump to picker  */
.center-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.my-button {
  background: #008001; /* Solid background color */
  margin: 0 0 30px 0;
  color: #fff;
  font-family: 'Quicksand-SemiBold', sans-serif;
  font-size: 22px;
  padding: 15px 25px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
transition: background-color 0.5s ease, opacity 0.5s ease;
}
.my-button:hover {
  background: #F8DE7F; /* Solid background color on hover */
  color: black;
}
.clear {
    clear: both;
}
img.nomob {
    width: 100%;
    height: auto;
}


.img {
    margin: -5px 15px 15px 15px;
  padding: 5px 5px 5px 5px;
}
.share {
    text-align: center;
}
.share img {
          border: none;
}
.share a {
  text-decoration: none; /* Remove underline */
}


@media (max-width: 1240px) {
.section-left {
    padding: 40px;
}
.section-right {
    padding: 40px;
}
}

@media (max-width: 1150px) {
.section-left,
.section-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}
.section-left .content,
.section-right .content {
    order: 1;
    max-width: 100%; /* Set a specific max-width value */
}
.section-left .image,
.section-right .image {
    order: 2;
}
.simplist {
  text-align: left; /* Reset the text alignment to left */
}
 .footer-inner {
    flex-direction: column-reverse; /* Reverse the order for mobile devices */
    align-items: center;
    padding: 40px;
  }
.footer-inner .image {
    max-width: 80%; /* Set the max-width for the "image" in tablets */
}
.footer-inner .content {
    max-width: 100%; /* Set the max-width for the "content" in tablets */
}
img { /*ovo je resilo presiroke slike*/
  width: auto ;
  max-width: 100% ;
  height: auto ;
}
}
/* For tablets */
@media (max-width: 1024px) {
html, body {
overflow-x:hidden;
}
body {
  font-size: 20px;
  color: #4C4B4B;
  text-align: justify;
  text-justify: inter-word;
}
.section-right {
    order: 1;
    max-width: 100%;
}
}




@media only screen and (max-width: 768px) {
    .slider {
        width: 100%; /* Ensure the slider takes full width */
    }

    .slider img {
        margin: 10px; /* Keep margin for mobile */
        width: calc(100% - 20px); /* Full width for one image minus margin */
        flex-shrink: 0; /* Prevent shrinking */
        max-width: calc(100% - 20px); /* Ensure it doesn't overflow */
    }
}



/*razlika izmedju mob i desktop*/
@media only screen and (max-width: 601px) {
body {
  font-size: 18px;
  color: #4C4B4B;
  text-align: justify;
  text-justify: inter-word;
}
.section-left,
.section-right {
    padding: 20px;
}  
.logo {
    padding-left: 10px;
    padding-right: 10px; 
}
.menu {
    display: none;
}
.menu a {
     font-size: 20px;
}
.menu li {
    margin-right: 18px; /* Add spacing between menu items */
}
.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: block; /* Make the button initially visible */
}
.nomob {
    display: none;
}
.mobile {
    display: block;
        width: 100%;
    height: auto;
}

.simplist  li {
    margin-left: 30px;
}
}    


@media only screen and (max-width: 510px) {
.menu li {
    margin-right: 12px; /* Add spacing between menu items */
}
.header1 {
    font-size:18px
}
.logo {
    margin-left: 1px;
}
}    
@media only screen and (max-width: 440px) {

.footer-inner .image {
    max-width: 100%; /* Set the max-width for the "image" in tablets */
}
.my-button {
    font-size: 18px;
}
.menu li {
    margin-right: 8px; /* Add spacing between menu items */
}
}
/* my iPhone and samsung edge use */
@media only screen and (max-width: 415px) {
.menu a {
     font-size: 16px;
}
}
@media only screen and (max-width: 360px) {
.my-button {
    font-size: 16px;
}
.menu a {
     font-size: 14px;
}
}

