html::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

html {
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

@font-face {
  font-family: "Sen";
  src: url("../fonts/sen.regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Sen";
  src: url("../fonts/sen.bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "Sen", sans-serif;
  background-color: #fefefd;
  color: #262626;
  line-height: 1.6;
  overflow-y: scroll;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

.navbar {
  background: #fefefd;
  padding: 12px 0;
  position: fixed;
  width: 100%;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  width: 150px;
  object-fit: cover;
}

nav a {
  margin-left: 25px;
  font-size: 16px;
  font-weight: 500;
  color: #424242;
}

nav a:hover {
  color: rgb(22, 112, 139);
}

.hero-banner {
  background-color: #e3e4e6;
  padding: 50px 0;
  margin-bottom: 20px;
}

.banner-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.banner-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-text h2 {
  width: 100%;
  float: left;
  font-size: 35px;
  color: #202020;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.banner-text h2 .highlight {
  color: #0f6c89;
}

.banner-text p {
  font-size: 18px;
  color: #424242;
  text-align: center;
  margin-bottom: 30px;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.btn {
  font-size: 16px;
  color: #fefefd;
  background-color: #0f6c89;
  text-align: center;
  padding: 10px 25px;
  width: auto;
}

.btn-blue {
  background-color: #0f6c89;
}

.btn-yellow {
  background-color: #c07a00;
  color: #ffffff;
}

.btn-blue:hover {
  background-color: #10607a;
}

.btn-yellow:hover {
  background-color: rgb(167, 121, 34);
}

.banner-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: -50px;
}

.section {
  text-align: center;
  padding: 50px 0px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.section-title {
  width: 100%;
  font-size: 40px;
  color: #202020;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 0;
}

.services-wrapper {
  width: 100%;
  padding: 0px;
  background-color: #0f6c89;
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-height: 500px;
  overflow: hidden;
}

.services-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.services-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  align-items: stretch;
}

.services-side {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: 500px;
  align-items: center;
}

.services-txt-wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 19px;
  justify-content: center;
  height: 100%;
  max-width: 600px;
}

.services-title {
  font-size: 30px;
  font-weight: bold;
  color: #fefefd;
  margin: 0;
}

.services-txt {
  font-size: 14px;
  color: #fefefd;
  margin-top: 20px;
  margin-bottom: 40px;
}

.services-btn {
  background: #e3e4e6;
  color: rgb(58, 58, 58);
  padding: 10px 20px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
}

.services-icon {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.services-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.services-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

footer {
  background-color: #252525;
  color: #fefefd;
  padding-top: 40px;
  margin-top: auto;
}

.footer-contant {
  padding-bottom: 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
}

.footer-about p,
.footer-contact a {
  color: #fefefd;
  text-align: center;
}

.footer-about,
.footer-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-contact a:hover {
  color: #0d5368;
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
  color: #fefefd;
}

.footer-bottom p {
  margin-bottom: 0;
  background: white;
  color: black;
  font-size: 12px;
  font-style: italic;
  padding: 15px 0;
}

.footer-icon {
  width: 20px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.contact-section {
  width: 100%;
  margin-bottom: 60px;
}

.contact_main {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.form-group {
  margin-bottom: 30px;
  padding: 0 10px;
}

.contact-input {
  color: #969695;
  width: 100%;
  height: 55px;
  font-size: 18px;
  padding: 20px 0px 0px 0px;
  background-color: transparent !important;
  border-bottom: 1px solid #838383 !important;
  border: 0px;
}

input.contact-input::placeholder {
  color: #969695;
}

.contact-textarea {
  color: #969695;
  width: 100%;
  height: 85px;
  font-size: 18px;
  padding: 20px 0px 0px 0px;
  background-color: transparent !important;
  border-bottom: 1px solid #838383 !important;
  border: 0px;
}

.contact-textarea::placeholder {
  color: #969695;
}

.contact-btn__wrapper {
  padding-top: 30px;
}

.contact-btn__wrapper .btn {
  font-size: 16px;
  padding: 15px 40px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.favors-details__wrapper {
  margin-bottom: 100px;
  padding-top: 120px;
}

.contact-section__details {
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.price-section__details {
  padding-top: 120px;
  display: flex;
  align-items: center;
  flex: 1;
}

.price-section {
  width: 100%;
  margin-bottom: 60px;
}

.price_main {
  margin: 0;
}

.work-section__details {
  padding-top: 120px;
  display: flex;
  align-items: center;
  flex: 1;
}

.work-section {
  width: 100%;
  margin-bottom: 60px;
}

.work_main {
  margin: 0;
}

.portfolio-section__details {
  padding-top: 120px;
  display: flex;
  align-items: center;
  flex: 1;
}

.portfolio-section {
  width: 100%;
}

.portfolio_main {
  margin: 0;
}

.image_1 {
  width: 90px;
}

.favors-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
}

.favors-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.favors-desc {
  max-width: 500px;
  font-size: 15px;
  line-height: 28px;
  color: rgb(75, 75, 75);
  margin-top: 10px;
  margin-bottom: 5px;
}

.favors-title {
  font-size: 23px;
}

.favors-btn {
  background: #0f6c89;
  color: white;
  padding: 10px 20px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  margin-top: 20px;
}

.favors-icon {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.price-intro {
  max-width: 750px;
  margin: 50px auto 20px;
  font-size: 16px;
  color: #555;
  text-align: center;
}

.price-list {
  max-width: 800px;
  margin: 0 auto 40px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5px;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

.price-name {
  font-weight: bold;
  color: #222;
  text-align: left;
}

.price-title {
  font-weight: bold;
  color: #222;
  text-align: left;
  font-size: 20px;
}

.price-price {
  font-weight: bold;
  color: #0f6c89;
  text-align: right;
  min-width: 100px;
}

.price-note {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  color: #666;
  text-align: center;
}

.price-sub-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.price-sub {
  display: flex;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.portfolio-intro {
  margin: 20px auto 30px;
  text-align: center;
  font-size: 16px;
  color: #555;
}

.portfolio-price-highlight {
  margin: 0 auto 40px;
  padding: 20px;
  background: #f5f7f8;
  border-radius: 8px;
  text-align: center;
  font-size: 17px;
}

.portfolio-price-small {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-gallery a {
  display: block;
  width: 100%;
  height: 350px; 
  overflow: hidden;
  border-radius: 8px;
}

.portfolio-gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-text {
  margin: 40px auto 40px;
  text-align: center;
  font-size: 16px;
  color: #555;
}

.portfolio-contact {
  text-align: center;
}

.portfolio-contact ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.portfolio-contact li {
  margin: 8px 0;
  font-size: 16px;
}

.portfolio-contact-note {
  margin-top: 20px;
  font-size: 15px;
  color: #666;
}


/* Osnovni stil za navbar */
.navbar {
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-menu a {
  margin-left: 24px;
  text-decoration: none;
  color: #333;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000 !important;
}

.hamburger-line {
  height: 2px;
  background: #333;
  border-radius: 2px;
}

/* Aktivni hamburger */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-46deg);
}

.disabled-btn {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}