:root {
  --bg: #070809;
  --bg-soft: #101216;
  --accent: #c9a46a;
  --accent-soft: rgba(201, 164, 106, 0.18);
  --text-main: #f7f3ec;
  --text-muted: #a6a6aa;

  --radius-lg: 999px;
  --radius-md: 18px;

  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAVBAR */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(7, 8, 9, 0.9), rgba(7, 8, 9, 0.2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  gap: 1.5rem;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.nav-link {
  position: relative;
  border: none;
  background: none;
  padding: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* LOGO */
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1.25rem;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-main);
  text-decoration: none;
}
.logo img{
    width: 40px;
}
/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-icon {
  font-size: 0.6rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 0;
  min-width: 220px;
  padding: 0.75rem;
  border-radius: 14px;
  background: rgba(12, 13, 17, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
  display: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.55rem 0.6rem;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--text-muted);
  border-radius: 10px;
  transition: background 0.18s ease, color 0.18s ease;
}

.dropdown-menu a:hover {
  background: rgba(201, 164, 106, 0.1);
  color: var(--text-main);
}

.dropdown.open .dropdown-menu {
  display: block;
}

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 22px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-main);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span + span {
  margin-top: 6px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 72px;
  background: url("img/bg2.webp") center/cover no-repeat fixed;
  display: flex;
  align-items: stretch;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(201, 164, 106, 0.16), transparent 60%),
    linear-gradient(to bottom, rgba(7, 8, 9, 0.9), rgba(7, 8, 9, 0.3), rgba(7, 8, 9, 0.95));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}

.hero-text {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 460px;
}

/* BUTTONS */
.hero-cta {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  cursor: pointer;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), #f3d7a2);
  color: #181410;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.primary-btn:hover {
  filter: brightness(1.04);
}

.ghost-btn {
  background: rgba(10, 11, 14, 0.7);
  border-color: var(--accent-soft);
  color: var(--text-main);
}

.ghost-btn:hover {
  background: rgba(16, 18, 22, 0.95);
  border-color: rgba(201, 164, 106, 0.6);
}

/* TAG */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(9, 10, 13, 0.86);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  align-self: flex-end;
}

.dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 999px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .nav-link{
        margin-bottom: 15px;
  }
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: rgba(7, 8, 9, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    padding: 1rem 1.5rem 2rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }
    .btn{
        padding: 0.3rem 1rem;
    font-size: 0.8rem;
    }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-container{
       background: rgba(7, 8, 9, 0.98);
  }
  .nav-group {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    order: -1;
    display: none;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: none;
    border: none;
    padding: 0.3rem 0 0;
  }
.gallery-grid{
  gap: 20px !important;
}
  .hero-tag {
    align-self: flex-start;
  }

  .hero {
    background-attachment: scroll;
  }
}
.about {
  padding: 4.5rem 0;
  background: #050608;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1 1 50%;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.75rem 0;
}

.about-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 1.75rem 0;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Desna polovina – slika */

.about-media {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
}

.about-image-frame {
 
  width: 100%;
}

.about-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive */

@media (max-width: 900px) {
    .hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
    }
  .about-inner {
    flex-direction: column;
  }

  .about-media {
    justify-content: flex-start;
  }

  .about {
    padding: 3.5rem 0;
  }
}
.row {
  display: grid;
}
/* Desktop podrazumevano: 12 kolona */
.row {
  grid-template-columns: repeat(12, 1fr);
}

/* Kolone kao u Bootstrapu */
.col-1  { grid-column: span 1; }
.col-2  { grid-column: span 2; }
.col-3  { grid-column: span 3; }
.col-4  { grid-column: span 4; }
.col-5  { grid-column: span 5; }
.col-6  { grid-column: span 6; }
.col-7  { grid-column: span 7; }
.col-8  { grid-column: span 8; }
.col-9  { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }
.row-span-1 { grid-row: span 1; }
.row-span-2 { grid-row: span 2; }
.row-span-3 { grid-row: span 3; }
/* Tablet */
@media (max-width: 992px) {
  .col-md-12 { grid-column: span 12 !important; }
  .col-md-6  { grid-column: span 6 !important; }
  .col-md-4  { grid-column: span 4 !important; }
}

/* Mobile */
@media (max-width: 768px) {
  .col-sm-12 { grid-column: span 12 !important; }
  .col-sm-6  { grid-column: span 6 !important; }
  .col-sm-4  { grid-column: span 4 !important; }
}

.service-gallery {
  width: 100%;
  margin: 0;
}

/* Kartice + stil iz prethodne verzije ostaje */
.service-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}
.service-card:hover h3 {
  color: var(--accent);
}

.service-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.75)
  );
}

.service-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin: 0;
  transition: color .25s ease-out;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow: 0 4px 10px rgba(0,0,0,0.45);
}
.service-btn {
  align-self: flex-start;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.service-grid{
  gap: 0.4rem;
    background: var(--accent);
    border-top: 0.4rem solid var(--accent);
    border-bottom: 0.4rem solid var(--accent);
}

.service-btn:hover {
  background: #ffffff;
  color: #000;
  border-color: #fff;
}

/* LAYOUT LOGIKA */

/* Desktop: visina ~800px, grid popunjava celu visinu */
@media (min-width: 992px) {
  .service-gallery {
    height: 800px;          /* ili 75vh ako više voliš relativno */
  }

  .service-gallery .row {
    height: 100%;
    grid-auto-rows: 1fr;    /* 2 jednaka reda, row-span-2 pravi visok blok */
  }
}

/* Tablet & dole: stacked layout, sekcija raste po sadržaju */
@media (max-width: 991.98px) {
  .service-gallery {
    height: auto;           /* nema fiksne visine na malim ekranima */
    padding-block: 2.5rem;
  }

  .service-gallery .row {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  /* po želji možeš da ignorišeš row-span na small device */
  .service-gallery .row .row-span-2 {
    grid-row: auto;
  }
}

.why-us {
  padding: 4.5rem 0 4.5rem;
  background: radial-gradient(circle at top, rgba(201, 164, 106, 0.08), transparent 55%),
              #050608;
background-image: url("img/bg2.webp");
background-attachment: fixed;
background-size: cover;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Header */

.why-header {
  max-width: 620px;
  margin-bottom: 3rem;
}

.why-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}

.why-header p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Grid */

.why-grid {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Kartice */

.why-card {
  position: relative;
  padding: 1.6rem 1.7rem 1.7rem;
  border-radius: 22px;
  background: radial-gradient(circle at top left, rgba(201, 164, 106, 0.18), transparent 55%),
              #050608;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

/* Suptilni “highlight” efekat */

.why-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(201, 164, 106, 0.35), transparent 55%);
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: -1;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
  border-color: rgba(201, 164, 106, 0.6);
}

.why-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* Label iznad naslova */

.why-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 11, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.why-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* Naslov i tekst */

.why-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.8rem 0;
}

.why-card p {
  margin: 0 0 0.9rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Lista – kratke benefite */

.why-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-card li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.why-card li + li {
  margin-top: 0.3rem;
}

.why-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* Responsivnost */

@media (max-width: 899px) {
  .why-us {
    padding: 3.5rem 0 3.5rem;
  }

  .why-card {
    padding: 1.4rem 1.5rem 1.5rem;
  }
}

/* CONTACT SECTION */

.contact {
  padding: 4.5rem 0 0;
  background-color: #050608;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-header {
  max-width: 600px;
  margin-bottom: 2.8rem;
}

.contact-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}

.contact-header p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    align-items: flex-start;
  }
}

/* Karta */

.contact-map-card,
.contact-form-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #06070a;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
  padding: 1.6rem 1.7rem;
}

.contact-map-card h3,
.contact-form-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.8rem 0;
}

.contact-address {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin: 0 0 1.2rem 0;
}

.contact-address span {
  color: var(--text-main);
  font-weight: 500;
}

.map-frame {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: none;
}

/* Forma */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  background-color: #050608;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(166, 166, 170, 0.7);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(201, 164, 106, 0.65);
  background-color: #050608;
}

.contact-submit {
  align-self: flex-start;
  margin-top: 0.4rem;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), #f3d7a2);
  color: #181410;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.75);
}

.contact-submit:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95);
}

.contact-note {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Kontakt info bar */

.contact-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.8rem 0 3.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
}

.contact-info-block h4,
.contact-socials h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 0.6rem 0;
  color: var(--text-main);
}

.contact-info-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info-block li + li {
  margin-top: 0.25rem;
}

.contact-info-block a {
  color: var(--accent);
  text-decoration: none;
}

.contact-info-block a:hover {
  text-decoration: underline;
}

/* Socials */

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: #050608;
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--text-main);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
}

.social-label {
  font-weight: 400;
}

.social-tag {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.social-pill:hover {
  border-color: var(--accent);
  background-color: #090b10;
  transform: translateY(-1px);
}

/* Footer */

.site-footer {
  background-color: #040506;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.8rem 0 2.2rem;
}

.footer-inner {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 164, 106, 0.5);
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.3rem;
  font-size: 0.85rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-right: 2rem;
}

.footer-nav a:hover {
  color: var(--text-main);
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-end;
}
#message{
    resize: none;
}
@media (max-width: 899px) {
  .contact {
    padding-top: 3.5rem;
  }

  .contact-map-card,
  .contact-form-card {
    padding: 1.4rem 1.5rem;
  }

  .map-frame iframe {
    height: 220px;
  }

  .contact-info-bar {
    padding: 2.2rem 0 2.6rem;
  }

  .site-footer {
    padding-top: 1.6rem;
  }
  .footer-nav{
    justify-content: flex-start;
  }
  .footer-meta{
    align-items: flex-start;
  }
}
/* PAGE: USLUGE */

.page-services {
  background-color: #050608;
  color: var(--text-main);
  min-height: 100vh;
  padding-top: 72px; /* visina headera */
}

/* Hero */

.services-hero {
  padding: 10rem 0 4rem;
  background-image: url("img/bg2.webp");
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-hero-inner {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  align-items: flex-end;
}

.services-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.services-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 0.9rem 0;
}

.services-subtitle {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0;
}

.services-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.services-highlight span {
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Glavna sekcija usluga */

.services-section {
  padding: 3.2rem 0 3.5rem;
}

.services-section-header {
  max-width: 620px;
  margin-bottom: 2.4rem;
}

.services-section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.8rem 0;
}

.services-section-header p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Lista usluga */

.service-list {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 960px) {
  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-item {
  position: relative;
  padding: 1.6rem 1.7rem 1.8rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #06070a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

/* diskretni “corner” detalj */

.service-item::before {
  content: "";
  position: absolute;
  right: 1.6rem;
  top: 1.6rem;
  width: 40px;
  height: 18px;
  border-top: 1px solid rgba(201, 164, 106, 0.7);
  border-right: 1px solid rgba(201, 164, 106, 0.7);
  opacity: 0.8;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.95);
  border-color: rgba(201, 164, 106, 0.7);
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(201, 164, 106, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-meta h3 {
  font-size: 1.05rem;
  margin: 0;
}

.service-item p {
  margin: 0 0 0.8rem 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.service-item li + li {
  margin-top: 0.25rem;
}

.service-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--accent);
}

/* CTA sekcija */

.services-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0;
  background-image: url("img/bg2.webp");
  background-color: #040506;
}

.services-cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  align-items: center;
  justify-content: space-between;
}

.services-cta-inner h2 {
  margin: 0 0 0.7rem 0;
  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
}

.services-cta-inner p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.btn-contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 164, 106, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--text-main);
  background-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-contact-cta:hover {
  background: linear-gradient(135deg, var(--accent), #f3d7a2);
  color: #181410;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
}
/* Fade-in on scroll */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Blagi vremenski pomak */

.reveal.delay-1 {
  transition-delay: 0.3s;
}

.reveal.delay-2 {
  transition-delay: 0.6s;
}

.reveal.delay-3 {
  transition-delay: 0.9s;
}

.reveal.delay-4 {
  transition-delay: 1.2s;
}

/* Responsivnost */

@media (max-width: 899px) {
  .services-hero {
    padding-top: 3rem;
  }

  .services-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-highlight {
    align-items: flex-start;
  }
}

/* ================================
   PAGE: USLUGE – MOBILE & TABLET
   ================================ */

@media (max-width: 768px) {

  /* HERO */
  .services-hero {
    padding: 6rem 0 3rem;
    background-position: center top;
  }

  .services-title {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .services-subtitle {
    font-size: 0.92rem;
  }

  .services-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  /* LISTA USLUGA */
  .service-item {
    padding: 1.4rem 1.4rem 1.5rem;
  }

  .service-item p {
    font-size: 0.9rem;
  }

  .service-item li {
    font-size: 0.88rem;
  }

  /* CTA */
  .services-cta {
    padding: 3rem 0;
  }

  .services-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
  }

  .btn-contact-cta {
    align-self: flex-start;
  }
}
/* =====================
   PAGE: GALLERY
   ===================== */

.page-gallery {
  background-color: #050608;
  padding-top: 72px;
}

/* HERO */

.gallery-hero {
  padding: 4.5rem 0 2.5rem;
  background-image: url("img/bg2.webp");
}

.gallery-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.gallery-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-top: 0.6rem;
}

/* FILTER MENU */

.gallery-menu {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gallery-tabs {
  display: flex;
  gap: 1.4rem;
  padding: 1.1rem 0;
  overflow-x: auto;
}

.gallery-tab {
  background: none;
  border: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.gallery-tab.active,
.gallery-tab:hover {
  color: var(--text-main);
  border-color: var(--accent);
}

/* GRID */

.gallery-grid-section {
  padding: 2.5rem 0 4rem;
}

.gallery-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ITEM */

/* GALLERY ITEM – FIXED ASPECT RATIO */

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #000;
}

/* SLIKA SE UVEK SEČE LEPO */

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}


.gallery-item:hover img {
  transform: scale(1.04);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 999;
}

.lightbox img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-item {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.6s ease, transform 0.35s ease;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item.is-visible {
  opacity: 0;
  transform: scale(0.97);
}

.gallery-item.is-visible.show {
  opacity: 1;
  transform: scale(1);
}
/* ================================
   HOME SERVICE GRID – RESPONSIVE
   ================================ */

@media (max-width: 991.98px) {

  .service-gallery {
    height: auto;
    padding: 2rem 0;
  }

  .service-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 1rem;
    background: none;
    border: none;
  }

  .service-card {
    height: 260px;
  }

  .service-card img {
    height: 100%;
  }

  /* poništavamo custom spanove */
  .service-grid .col-4,
  .service-grid .col-8,
  .service-grid .row-span-2 {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .service-info h3 {
    font-size: 1.6rem;
  }
}

/* Extra small (telefoni) */
@media (max-width: 480px) {

  .service-card {
    height: 220px;
  }

  .service-info {
    padding: 1rem;
  }

  .service-info h3 {
    font-size: 1.4rem;
  }
}

/* GALLERY PLACEHOLDER */

.gallery-placeholder {
  max-width: 720px;
  margin: 4rem auto;
  padding: 3rem 2.2rem;
  text-align: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(201, 164, 106, 0.18), transparent 55%),
    #050608;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.placeholder-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.placeholder-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin: 0 0 1.2rem 0;
}

.placeholder-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 0.9rem 0;
}

.placeholder-text.muted {
  font-size: 0.9rem;
  opacity: 0.9;
}

.placeholder-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 600px) {
  .gallery-placeholder {
    padding: 2.2rem 1.6rem;
    margin: 3rem auto;
  }

  .placeholder-title {
    font-size: 1.4rem;
  }
}
