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

:root {
  --primary-gold: #d4af37;
  --dark-gold: #b8941f;
  --light-gold: #f4e4a6;
  --black: #000000;
  --dark-gray: #1a1a1a;
  --medium-gray: #333333;
  --light-gray: #666666;
  --white: #ffffff;
  --off-white: #f8f8f8;
}

body {
  font-family: "Work Sans", sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* Nav */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--medium-gray);
  z-index: 1000;
  transition: background 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-container {
  position: relative;
}
.pulse {
  animation: pulseEffect 1s ease-in-out infinite;
}

@keyframes pulseEffect {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}


.logo-svg {
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
  transition: filter 0.3s ease;
}

.logo-svg:hover {
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.6));
}


.logo-text {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-gold);
  text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--black);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  
}

/* Slika loga */
.logo-img {
  height: 60px;              /* stane u navbar */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
  filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.4));

}

/* Hover animacija */
.logo-img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.6));
}

/* Pulse efekt */
.pulse {
  animation: pulseEffect 1.5s ease-in-out infinite;
}

@keyframes pulseEffect {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}


/* Hero sekcija */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url("slika1.jpg") no-repeat center center / cover;
}





/* Overlay efekt za dodatni kontrast */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* tamni sloj za čitljivost teksta */
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.gold-text {
  color: var(--primary-gold);
  display: inline-block;
  animation: goldGlow 2s ease-in-out infinite alternate;
}

@keyframes goldGlow {
  from {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  }
  to {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.4);
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--off-white);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-button {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--black);
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.secondary-button {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.secondary-button::after{
  position: absolute;
  top: -10px;
  left: 3%;
  width: 95%;
  height: 40%;
  background-color: #000000;
  transition: 0.5s;
  transform-origin: center;
}

.secondary-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gold);
  transition: left 0.3s ease;
  z-index: -1;
}

.secondary-button:hover {
  color: var(--black);
  transform: translateY(-3px);
}

.secondary-button:hover::before {
  left: 0;
}


/* Rezervacije sekcija */
.rezervacije {
  padding: 100px 0;
  position: relative;
  background: url("slika4.jpg") no-repeat center center / cover;
  
}


.iframe-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  border: 1px solid var(--medium-gray);
}

.iframe-container iframe {
  width: 100%;
  height: 750px;
  border: none;
  display: block;
}


/* Services sekcija */
.services {
  padding: 60px 0;
  background: url("slika5.jpg") no-repeat center center / cover;
  position: relative;
}


/* Overlay za kontrast */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6); /* tamni sloj da kartice budu čitljive */
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1; /* podiže sadržaj iznad overlaya */
}


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

.section-header h2 {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--light-gold);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--primary-gold);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  background: rgba(255,255,255,0.08);
  border-color: var(--light-gold);
}



.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.service-card h3 {
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.service-description {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.service-price {
  color: var(--primary-gold);
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem 0;
  
}



.service-button {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
}

.service-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
  text-decoration: none;
  color: #000;
}


/* Gallery sekcija */
.gallery {
  padding: 100px 0;
  background: url("slika8.jpg") no-repeat center center / cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 300px;
  background: var(--medium-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--medium-gray);
}

.gallery-item:hover {
  transform: scale(1.05);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cropa sliku */
  object-position: center; /* centrira crop */
}



.gallery-item:hover img {
  transform: none;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.gallery-btn {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--black);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gallery-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Image Upload sekcija */
.image-upload-section {
  padding: 100px 0;
  background: var(--black);
}

.upload-container {
  max-width: 800px;
  margin: 0 auto;
}

.upload-area {
  border: 2px dashed var(--primary-gold);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  background: var(--dark-gray);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.upload-area:hover,
.upload-area.dragover {
  border-color: var(--light-gold);
  background: var(--medium-gray);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.upload-icon {
  font-size: 4rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.upload-area h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.upload-area p {
  color: var(--light-gray);
  margin-bottom: 24px;
}

#imageInput {
  display: none;
}

.upload-button {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--black);
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.upload-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.uploaded-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.uploaded-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--medium-gray);
  border: 1px solid var(--medium-gray);
  transition: all 0.3s ease;
}

.uploaded-image:hover {
  border-color: var(--primary-gold);
  transform: scale(1.05);
}

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

.remove-image {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--primary-gold);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.remove-image:hover {
  background: var(--primary-gold);
  color: var(--black);
  transform: scale(1.1);
}

.reviews-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(20,20,20,0.9) 100%), url("slika6.jpg") center center / cover no-repeat;
  text-align: center;
  position: relative;
  background-image: url("slika6.jpg"); ;
}

.reviews-section .section-title {
  margin-bottom: 60px;
  font-size: 2.5rem;
}

.reviews-wrapper {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
  cursor: grab;
  user-select: none;
}

.reviews-wrapper.grabbing {
  cursor: grabbing;
}

.reviews-wrapper::-webkit-scrollbar {
  height: 8px;
}

.reviews-wrapper::-webkit-scrollbar-track {
  background: rgba(212, 175, 55, 0.1);
  border-radius: 4px;
}

.reviews-wrapper::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 4px;
}

.reviews-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.6);
}

.reviews-track {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 0 20px;
  cursor: inherit;
}

.review-card {
  flex: 0 0 340px;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 48px rgba(212, 175, 55, 0.25);
}

.review-card:hover::before {
  opacity: 1;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
}

.review-card:hover::before {
  opacity: 1;
}

.review-stars {
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 3px;
  order: -1;
}

.review-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 400;
  min-height: 80px;
  flex-grow: 1;
}

.review-text::before {
  content: '"';
  color: var(--primary-gold);
  font-size: 1.8rem;
  display: block;
  line-height: 0.5;
  margin-bottom: 10px;
}

.review-author {
  font-weight: 700;
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(212, 175, 55, 0.9);
  margin-top: 8px;
}

.review-verified::before {
  content: '✓';
  font-weight: 700;
  font-size: 0.9rem;
}

/* Contact sekcija */
.contact {
    width: 100%;
    min-height: 100vh;
    background: url("BRIJACNICA-LOGO.jpg") no-repeat center center / cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: auto;
    display: flex;
    align-items: center;
    padding: 60px 0;
}


.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--primary-gold);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--black);
  border-radius: 8px;
  border: 1px solid var(--medium-gray);
  transition: all 0.3s ease;
}

.info-item:hover {
  border-color: var(--primary-gold);
  transform: translateX(5px);
}

.info-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-link:hover {
  text-decoration: none;
}

.info-link span {
  color: inherit;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--primary-gold);
  min-width: 24px;
}

.working-hours p {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.working-hours strong {
  color: var(--primary-gold);
}

.contact-form-container {
  background: var(--black);
  border: 1px solid var(--medium-gray);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
}

.contact-form-container h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--primary-gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.input-group {
  position: relative;
}

.input-container {
  position: relative;
  width: 100%;
}

.border-effect {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  opacity: 0;
  z-index: 1;
  background: linear-gradient(270deg, var(--primary-gold), var(--dark-gold), var(--light-gold));
  background-size: 600% 600%;
  border-radius: 10px;
  animation: gradientShift 5s ease infinite;
  animation-play-state: paused;
}

.input-container:focus-within .border-effect {
  opacity: 1;
  animation-play-state: running;
}

/* animacija svakih 5-6 sekundi */
.border-effect {
  animation: gradientShift 5s ease infinite, periodicGlow 6s ease infinite;
}

@keyframes periodicGlow {
  0%,
  90% {
    opacity: 0;
  }
  95%,
  100% {
    opacity: 1;
  }
}

.form-input {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  background: var(--dark-gray);
  color: var(--white);
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: transparent;
  background: var(--black);
}

.form-input::placeholder {
  color: var(--light-gray);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--black);
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Footer */
.footer {
  background: var(--black);
  border-top: 1px solid var(--medium-gray);
  padding: 10px 0;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-logo span {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-link {
  display: inline-block;
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 50%;
  background: var(--dark-gray);
  border: 1px solid var(--medium-gray);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-3px);
}

.footer-content p {
  color: var(--light-gray);
  margin-bottom: 8px;
}

.copyright {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-top: 20px;
}

/* Animacije */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Section animacije */
section {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
}

section:nth-child(1) {
  animation-delay: 0.2s;
}
section:nth-child(2) {
  animation-delay: 0.4s;
}
section:nth-child(3) {
  animation-delay: 0.6s;
}
section:nth-child(4) {
  animation-delay: 0.8s;
}
section:nth-child(5) {
  animation-delay: 1.0s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    margin-bottom: 24px;
  }

  .hero-buttons {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .primary-button,
  .secondary-button {
    padding: 14px 24px;
    font-size: 16px;
    min-height: 44px;
    width: 100%;
  }

  .contact {
    min-height: auto;
    height: auto;
    padding: 60px 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info h3,
  .contact-form-container h3 {
    font-size: 1.5rem;
  }

  .contact-info {
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
  }

  .contact-form-container {
    padding: 24px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service-card {
    padding: 20px 14px;
    min-height: 280px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .upload-area {
    padding: 40px 20px;
  }

  .uploaded-images {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .iframe-container iframe {
    height: 600px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 15px;
  }

  .nav-content {
    height: 56px;
    padding: 0 10px;
  }

  .logo-img {
    height: 45px;
  }

  .cta-button {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 16px;
  }

  .primary-button,
  .secondary-button {
    padding: 12px 20px;
    font-size: 14px;
    min-height: 44px;
    width: 100%;
  }

  .contact {
    min-height: auto;
    height: auto;
    padding: 40px 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info {
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
  }

  .contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .info-item {
    padding: 10px;
    margin-bottom: 12px;
  }

  .info-icon {
    font-size: 1.2rem;
  }

  .contact-form-container {
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
  }

  .contact-form-container h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .form-input {
    padding: 12px;
    font-size: 16px;
    min-height: 44px;
  }

  .form-textarea {
    min-height: 90px;
  }

  .form-submit-btn {
    padding: 12px;
    font-size: 0.95rem;
    min-height: 44px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service-card {
    padding: 20px 14px;
    min-height: 280px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item {
    aspect-ratio: 1;
    max-height: 180px;
  }

  .upload-area {
    padding: 30px 15px;
  }

  .uploaded-images {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .iframe-container iframe {
    height: 450px;
  }

  /* vidljivi footer */
  footer {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 20px 10px !important;
    background-color: #1a1a1a !important;
  }
}

/* Loading animacija */
.loading {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.loaded {
  opacity: 1;
}

  /* smooth scrolling  */
  html {
    scroll-behavior: smooth;
  }

  /* Custom animacije */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes goldShimmer {
    0% {
      background-position: -200% center;
    }
    100% {
      background-position: 200% center;
    }
  }

  @keyframes parallaxFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
  }

  .animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
  }

  .animate-slide-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
  }

  .animate-slide-right {
    animation: slideInFromRight 0.8s ease-out forwards;
  }

  .animate-parallax-float {
    animation: parallaxFloat 3s ease-in-out infinite;
  }

  .gold-shimmer {
    background: linear-gradient(90deg, transparent, oklch(0.7 0.15 85), transparent);
    background-size: 200% 100%;
    animation: goldShimmer 2s infinite;
  }

  /* hover efekti */
  .apple-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .apple-hover:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  }

  /* Smooth navbar tranzicija */
  .navbar-blur {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Parallax efekt za pozadinsku sliku */
  .parallax-bg {
    transform: translateZ(0);
    will-change: transform;
  }