@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css');

:root {
  --font-family: 'Poppins', sans-serif;
  --font-family-serif: 'Libre Baskerville', serif;
  --primary-color: #ffffff;
  --secondary-color: #c48f56;
  --background-color: #2c342b;
  --body-bg-color: #f5f5f5;
  --text-color: #2b2c2e;
  --link-hover-color: #c48f56;
  --border-radius: 20px;
  --defayult-font-size: 15px;
  --container-width: 1440px;
  --default-line-height: 1.6;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family);
  background-color: var(--body-bg-color);
  color: var(--text-color);
  font-size: var(--defayult-font-size);
  line-height: var(--default-line-height);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-serif);
  font-weight: 400 !important;
  line-height: 1.2;
  margin: 0;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
h1 {
  font-size: 48px;
  color: var(--primary-color);
}
h2 {
  font-size: 36px;
}
.container {
  width: 100%;
  padding: 0 15px;
}
header {
  background-color: var(--background-color);
  position: relative;
}
.home-header {
 height: 100vh;
   min-height 100vh;
	background:transparent;
	
}
.header {
  height: 422px;
}
header .container {
  position: relative;
  height: 100%;
}
header .top
 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
}
header .logo img {
  width: 156px;
}
header .top .social {
  display: flex;
}
header .top .social a,
header .top .social button {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
header .top .social button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
header .hero {
  position: absolute;
  top: 50%;
  left: 15px;
}
.home-header .hero {
  left: 15px;
  transform: translateY(-50%);
}
.header .hero {
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.header .hero h1 {
  margin: 0;
}
.show-more a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-header .hero .show-more a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.header p {
  font-size: 16px;
  color: var(--primary-color);
}

.show-more a img {
  transition: all 0.3s ease;
}
.show-more a:hover img {
  transform: translateX(5px);
}
header nav {
  position: fixed;
  top: 0;
  background-color: var(--primary-color);
  right: -514px;
  width: 100%;
  height: 100vh;
  font-family: var(--font-family-serif);
  padding: 60px 40px;
  display: flex;
  transition: right 0.3s ease;
}
header nav.active {
  right: 0;
  z-index:100;
}
header nav .close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
header nav > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
header nav > ul > li > a,
header nav > ul .dropdown {
  color: var(--text-color);
  font-size: 20px;
  transition: color 0.3s ease;
}
header nav > ul .dropdown span {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
header nav ul li a:hover,
header nav > ul .dropdown span:hover,
header nav ul li a.active,
header nav ul li.active,
header nav > ul .dropdown li a.active {
  color: var(--link-hover-color);
}
header nav > ul .dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
header nav > ul .dropdown span img {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
header nav > ul .dropdown span img.active {
  transform: rotate(0deg);
}
header nav > ul .dropdown-menu li a {
  color: var(--text-color);
  font-size: 16px;
  transition: color 0.3s ease;
}
header nav > ul .dropdown-menu li a:hover {
  color: var(--link-hover-color);
}
header nav > ul .dropdown-menu.active {
  height: 286px;
  padding: 16px;
}
header .scroll-down {
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .scroll-down a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
header .scroll-down img {
  animation: oscilate 1s linear infinite;
}
footer {
  background-color: var(--background-color);
  padding: 40px 0 20px;
  color: var(--primary-color);
}
footer .footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer h2,
footer p {
  color: var(--primary-color);
}
footer h2 {
  margin-bottom: 20px;
}
footer .scroll-up {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .scroll-up a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

footer .scroll-up img {
  animation: oscilate-up 1s linear infinite;
}
footer .top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .top .footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .top .footer-contact ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}
footer .top .contact ul li a:hover {
  color: var(--link-hover-color);
}
footer .top .who-we-are {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  width: 100%;
  max-width: 511px;
}
footer .top .who-we-are p {
  text-align: justify;
}
footer .bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .bottom .social ul {
  display: flex;
  gap: 20px;
}
footer .bottom .social ul li a {
  display: flex;
  flex-direction: column;
  transition: color 0.3s ease;
  color: var(--primary-color);
}
footer .bottom .social ul li a:hover {
  color: var(--secondary-color);
}
@keyframes oscilate {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes oscilate-up {
  0% {
    transform: rotate(180deg) translateY(0);
  }
  25% {
    transform: rotate(180deg) translateY(-5px);
  }
  50% {
    transform: rotate(180deg) translateY(0);
  }
  75% {
    transform: rotate(180deg) translateY(5px);
  }
  100% {
    transform: rotate(180deg) translateY(0);
  }
}
.home-header .scroll-down {
  left: 0;
}
.header .scroll-down {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-down a {
  display: flex;
}
.portfolio {
  padding: 40px 0 60px;
}
.portfolio .portfolio-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.portfolio .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.portfolio .heading .show-more a {
  font-size: 16px;
  color: var(--text-color);
}
.show-more a:hover {
  color: var(--link-hover-color) !important;
}
.portfolio .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.portfolio .content .portfolio-item {
  flex: 1 1 100%;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.portfolio .content .portfolio-item:hover {
  transform: translateY(-5px);
}
.portfolio .content .portfolio-item a {
  color: var(--text-color);
}
.portfolio .content .portfolio-item a p {
  margin: 0;
}
.photos .photos-container {
  display: flex;
  flex-direction: column;
}
.photos .image {
  width: 100%;
  line-height: 0;
}
.photos .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color);
  flex: 1;
  color: var(--primary-color);
  text-align: center;
  padding: 0 20px;
}
.outline-btn {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  width: 155px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  cursor: pointer;
}
.outline-btn:hover,
.contact-form .outline-btn:hover {
  border-color: var(--link-hover-color);
  color: var(--link-hover-color);
}
.instagram-feed {
  margin: 40px 0 60px;
}
.instagram-feed img {
  width: 100%;
}
.the-best-work {
  padding: 40px 0 60px;
}
.the-best-work .the-best-work-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.the-best-work .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testemonials {
  padding: 40px 0 60px;
}
.testemonials .testemonials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.testemonials .contact {
  position: relative;
}
.testemonials .contact .contact-item {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 20%);
  bottom: 0;
  background: var(--background-color);
  padding: 20px;
  color: var(--primary-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.testemonials .testemonials-slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 755px;
}
.testemonials .testemonials-slider p {
  margin: 0;
}
/* Kontakt */
.contact {
  padding: 40px 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .contact-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 980px;
  width: 100%;
  justify-content: center;
}
.contact .contact-container a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.contact .contact-container a:hover {
  color: var(--link-hover-color);
}
.contact-section {
  padding: 60px 20px;
}

.contact-section .contact-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  flex-wrap: wrap;
}

.contact-section .contact-text {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.contact-section .contact-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-section .contact-text .lead {
  font-size: 1.1rem;
  margin: 20px 0;
  font-weight: 500;
}

.contact-section .contact-form {
  flex: 1;
  min-width: 280px;
}
.contact-section .contact-form .outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

.contact-section .form-row {
  display: flex !important;
  gap: 20px;
}

.contact-section .form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 20px;
}

.contact-section .form-group label {
  font-style: italic;
  margin-bottom: 5px;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
  padding: 10px;
  border: none;
  border-bottom: 1px solid var(--text-color);
  font-size: 1rem;
  background: transparent;
  outline: none;
  width:100%;
}
form p {
	padding: 0;
	margin: 0;
}
textarea.wpcf7-form-control.wpcf7-textarea.message {
	max-height: 150px;
}
.map {
  width: 100%;
  height: 400px;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/* O Nama */
.about-section {
  padding: 40px 0 60px;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

.profile-image {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
}

.text-container {
  max-width: 600px;
}

.text-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.text-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--link-hover-color);
}

.social-section {
  margin-top: 3rem;
  text-align: center;
}

.follow-us {
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.social-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.social-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-button {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--text-color);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-button:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

/* Novogodisnje Fotografisanje */

.holiday-section {
  padding: 40px 0 60px;
  margin: 0 auto;
}

.holiday-section .holiday-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.holiday-section .header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  height: auto;
}
.holiday-section .header .title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 40%;
}
.holiday-section .contact-label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-color);
}

.holiday-section .main-title {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.holiday-section .location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.holiday-section .location img {
  width: 89px;
  height: auto;
}

.holiday-section .content {
  font-size: 15px;
  line-height: 1.6;
  flex: 1 1 40%;
}
.holiday-section .content p {
  color: var(--text-color);
}
.holiday-section .content a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 700;
}

.holiday-section .content a:hover {
  text-decoration: underline;
}

.holiday-section .scenes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.holiday-section .scene {
  width: 100%;
}

.holiday-section .scene img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.holiday-section .scene p {
  margin-top: 8px;
  font-size: 14px;
}

.paketi {
  padding: 40px 0 60px;
  margin: auto;
}

.paketi .paketi-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* Grid layout */
.paketi .paketi-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Kartica paketa */
.paketi .paket {
  border: 1px solid var(--secondary-color);
  padding: 20px 40px;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  max-width: 100%;
}

.paketi .paket:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.paketi .paket h3 {
  font-size: 1.2rem;
  padding-bottom: 40px;
  position: relative;
}
.paketi .paket h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--text-color);
}

.paketi .price {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin: 10px 0 20px;
}

/* Lista */
.paketi .paket ul {
  list-style: disc;
  padding: 0;
  text-align: left;
}

.paketi .paket ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.booking-section {
  padding: 40px 0 60px;
  width: 100%;
  color: var(--primary-color);
}

.booking-section .booking-header {
  text-align: center;
  padding: 40px 20px;
  background: var(--background-color);
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.booking-section .booking-header .subtitle {
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
}

.booking-section .booking-header h2 {
  font-size: 26px;
  margin: 10px 0;
}

.booking-section .booking-header .description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--primary-color);
  max-width: 900px;
}

.booking-section .booking-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: var(--text-color);
  padding: 30px 20px;
  border-radius: 8px;
}

/*.booking-section .booking-calendar {
  width: 100%;
}

.booking-section .booking-calendar h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.booking-section .calendar {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
}

.booking-section .calendar-header {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.booking-section .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 12px;
}

.booking-section .calendar-grid div {
  text-align: center;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
}

.booking-section .calendar-grid .disabled {
  color: #aaa;
  pointer-events: none;
}

.booking-section .calendar-grid .selected {
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
}*/

/* Forma */
/*
.booking-section .booking-form {
  width: 100%;
}

.booking-section .booking-form h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.booking-section .booking-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-section .form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-section .form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.booking-section .form-group label {
  font-size: 14px;
  margin-bottom: 4px;
}

.booking-section .form-group input,
.booking-section .form-group textarea,
.booking-section .form-group select {
  padding: 8px;
  border: none;
  border-bottom: 1px solid var(--text-color);
  background: transparent;
  font-size: 14px;
}
.booking-section .form-group select {
  border: 1px solid var(--text-color);
}*/

.booking-section .form-group input:focus,
.booking-section .form-group select:focus,
.booking-section .form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

/*.booking-section .note {
  font-size: 12px;
  color: #555;
  margin-top: -10px;
}

.booking-section button[type='submit'] {
  padding: 10px 24px;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: 20px;
  background-color: transparent;
  font-size: 14px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
}
*/
.booking-section button[type='submit']:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}
.sekcija-04 {
  padding: 40px 0 60px;
}

/* Grid Top Section */
.sekcija-04 .grid-top {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.sekcija-04 .grid-item:first-child {
  grid-column: 1 / span 10;
  grid-row: 1 / span 4;
}

.sekcija-04 .grid-item img {
  width: 100%;
  height: auto;
  display: block;
}

.sekcija-04 .center-text {
  text-align: center;
  background-color: var(--body-bg-color);

  padding: 40px 0;
}

.sekcija-04 .center-text h2 {
  font-size: 1.5rem;
  line-height: 1.3;
}

/* Usluge Section */
.sekcija-04 .usluge {
  margin-top: 2rem;
  text-align: center;
}

.sekcija-04 .usluge h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.sekcija-04 .usluge h4 {
  font-size: 1rem;
  margin-top: 1.5rem;
  font-weight: bold;
}

.sekcija-04 .usluge ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.sekcija-04 .usluge li {
  font-size: 0.9rem;
  margin: 0.25rem 0;
}

/* **Media Queries** */
@media (min-width: 768px) {
  .contact-section .form-row {
  display: flex !important;
  gap: 20px;
  flex-wrap: wrap;
}
  header nav {
    width: 514px;
  }
  footer .top {
    flex-direction: row;
    justify-content: space-between;
  }
  footer .bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .portfolio .content .portfolio-item {
    flex: 1 1 calc(50% - 20px);
  }
  .photos .photos-container {
    flex-direction: row;
  }
  .photos .image {
    width: 60%;
  }
  .the-best-work .content {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    grid-template-rows: repeat(5, 260px);
    grid-auto-flow: dense;
    gap: 20px;
  }
  .the-best-work .content .photo-item {
    overflow: hidden;
  }
  .the-best-work .content .photo-item:first-child,
  .the-best-work .content .photo-item:nth-child(3),
  .the-best-work .content .photo-item:nth-child(6) {
    grid-row: span 2;
  }
  .contact .contact-container {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    padding: 0 15px;
  }
  .contact-section .contact-text h2 {
    font-size: 2.8rem;
  }
  .about-container {
    flex-direction: row;
  }
  .text-container h2 {
    font-size: 2.2rem;
  }
  .holiday-section .main-title {
    font-size: 48px;
  }
  .holiday-section .scene {
    width: calc(50% - 10px);
  }
  .paketi .paketi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 20px;
  }
  .paketi .paketi-title {
    font-size: 48px;
  }
 /* .booking-section .booking-header h2 {
    font-size: 30px;
  }
  .booking-section .booking-content {
    padding: 40px 30px;
  }
  .booking-section .form-row {
    flex-direction: row;
  }*/
  .sekcija-04 .grid-top {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(4, auto);
  }
  .sekcija-04 .grid-item:first-child {
    grid-column: 1 / span 10;
    grid-row: 1 / span 4;
  }

  .sekcija-04 .grid-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  .sekcija-04 .center-text {
    grid-column: 4 / span 4;
    grid-row: 2 / 4;
    z-index: 5;
    padding: 40px 0;
  }
  .sekcija-04 .center-text h2 {
    font-size: 2rem;
  }
  .sekcija-04 .usluge h3 {
    font-size: 2rem;
  }
}

@media (min-width: 1470px) {
  .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
  }
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 48px;
  }
  header .hero {
    left: 0;
  }
  .portfolio .content .portfolio-item {
    flex: 1 1 calc(33.333% - 20px);
  }
  .the-best-work .content {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    grid-template-rows: repeat(4, 328px);
    grid-auto-flow: dense;
    gap: 20px;
  }
  .the-best-work .content .photo-item {
    overflow: hidden;
  }
  .the-best-work .content .photo-item:first-child,
  .the-best-work .content .photo-item:nth-child(3),
  .the-best-work .content .photo-item:nth-child(6) {
    grid-row: span 2;
  }
  .testemonials .contact .contact-item {
    left: 15%;
    transform: translate(0, 20%);
  }
  .contact .contact-container {
    padding: 0;
  }
  .contact-section .contact-container {
    flex-direction: row;
  }
  .holiday-section .header {
    flex-direction: row;
    margin-bottom: 0;
  }
  .holiday-section .scene {
    width: calc(33.33% - 20px);
  }
  /* .booking-section .booking-content {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

 
  .booking-section .booking-form {
    max-width: 450px;
  }

  .booking-section .booking-section .booking-header h2 {
    font-size: 32px;
  }*/
  .sekcija-04 .usluge li {
    font-size: 1rem;
  }
}
