
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background: #000;
    color: #fff;
  }
  
  /* NAVBAR */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 3, 12, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .nav-container {
    position: relative;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
  }
  
  .nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .nav-menu ul {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s ease;
  }
  
  .nav-menu ul li a:hover {
    color: #b03a87;
  }
  
  .nav-right {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .apply-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 34px 0 26px;
    min-width: 180px;
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    background: linear-gradient(90deg, #8e2a6b 0%, #77235c 40%, #341526 72%, #08080c 100%);
    clip-path: polygon(0 0, 84% 0, 100% 50%, 84% 100%, 0 100%);
    transition: 0.3s ease;
  }
  
  .apply-btn:hover {
    transform: scale(1.03);
  }
  
  /* hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 15px;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
  }
  
  /* MOBILE */
  @media (max-width: 900px) {
    .hamburger {
      display: flex;
    }
  
    .nav-menu {
      position: absolute;
      top: 85px;
      left: 0;
      transform: none;
      width: 100%;
    }
  
    .nav-menu ul {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 22px;
      width: 100%;
      background: linear-gradient(135deg, #2d0b3f, #0b1448);
      padding: 25px 0;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    }
  
    .nav-menu ul.active {
      display: flex;
    }
  
    .apply-btn {
      padding: 11px 22px;
      font-size: 0.95rem;
      min-width: auto;
      height: 48px;
    }
  
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
  
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }
  }

/* ===== DROPDOWN INFORMACIJE ===== */
/* ===== DROPDOWN INFORMACIJE ===== */

#navLinks .dropdown {
    position: relative;
  }
  
  #navLinks .dropdown > a {
    cursor: pointer;
  }
  
  #navLinks .dropdown .submenu {
    display: none;
    position: absolute;
    top: 115%;
    left: 50%;
    transform: translateX(-50%);
  
    min-width: 150px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
  
    background: linear-gradient(180deg, #2a0d2e 0%, #4b1d52 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    z-index: 9999;
  }
  
  #navLinks .dropdown.active .submenu {
    display: block;
  }
  
  #navLinks .dropdown .submenu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  #navLinks .dropdown .submenu li a {
    display: block;
    width: 100%;
    padding: 10px 14px;
    box-sizing: border-box;
  
    text-decoration: none;
    color: #f3d4f0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
  
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease;
  }
  
  #navLinks .dropdown .submenu li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ff8de1;
  }
  
  /* mali razmak između opcija bez ružnog velikog praznog prostora */
  #navLinks .dropdown .submenu li + li a {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  /* mobilni */
  @media (max-width: 768px) {
    #navLinks .dropdown .submenu {
      position: static;
      transform: none;
      min-width: 100%;
      margin-top: 8px;
      border-radius: 10px;
    }
  
    #navLinks .dropdown .submenu li a {
      padding: 10px 12px;
      font-size: 14px;
    }
  }
/*logo*/
.nav-logo {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-logo a {
    display: inline-block;
  }
  
  
  .nav-logo img {
    height: 100px;
    width: auto;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .nav-logo img:hover {
    transform: scale(1.08);
    opacity: 0.9;
  }
  

  .smjestaj-hero {
    position: relative;
    height: 90vh;
    background: url("hotel.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  /* TAMNI LJUBIČASTI OVERLAY */
  .smjestaj-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(20, 0, 30, 0.8),
      rgba(90, 15, 61, 0.85)
    );
    top: 0;
    left: 0;
  }
  
  /* SADRŽAJ */
  .smjestaj-content {
    position: relative;
    color: white;
    max-width: 700px;
    padding: 20px;
  }
  
  .smjestaj-content h2 {
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  
  /* LINIJA ISPOD NASLOVA */
  .line {
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ff4da6, #a64dff);
    margin: 0 auto 20px;
  }
  
 
  
  




  .smjestaj-obroci {
    background: linear-gradient(180deg, #14061f 0%, #2a1038 45%, #1b0826 100%);
    padding: 100px 20px;
    color: #fff;
  }
  
  .smjestaj-obroci .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-heading,
  .rooms-text,
  .gallery-section {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .mini-title {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d36cff;
    margin-bottom: 12px;
    font-weight: 700;
  }
  
  .section-heading h2,
  .rooms-text h2,
  .gallery-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .section-heading p,
  .rooms-text p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #eadcf3;
  }
  
  .heading-line {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff4fd8, #a64dff);
    margin: 18px auto 28px;
    border-radius: 10px;
  }
  
  .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 90px;
  }
  
  .info-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(214, 108, 255, 0.2);
    border-radius: 22px;
    padding: 30px 25px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 108, 255, 0.45);
  }
  
  .info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #eadcf3;
  }
  
  .rooms-section {
    margin-bottom: 90px;
  }
  
  .room-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
  }
  
  .room-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(214, 108, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
  }
  
  .room-card:hover {
    transform: translateY(-6px);
  }
  
  .room-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
  }
  
  .room-card-content {
    padding: 24px;
  }
  
  .room-card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
  }
  
  .room-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #eadcf3;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 35px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(214, 108, 255, 0.25);
    transition: 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }
  
  .gallery-grid img:hover {
    transform: scale(1.03);
  }
  
  /* RESPONSIVE */
  @media (max-width: 992px) {
    .info-grid,
    .room-cards {
      grid-template-columns: 1fr;
    }
  
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .section-heading h2,
    .rooms-text h2,
    .gallery-section h2 {
      font-size: 32px;
    }
  }
  
  @media (max-width: 576px) {
    .smjestaj-obroci {
      padding: 70px 15px;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .section-heading h2,
    .rooms-text h2,
    .gallery-section h2 {
      font-size: 28px;
    }
  
    .section-heading p,
    .rooms-text p,
    .info-card p,
    .room-card-content p {
      font-size: 15px;
    }
  }
  .smjestaj-obroci {
    background: linear-gradient(180deg, #14061f 0%, #2a1038 45%, #1b0826 100%);
    padding: 100px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .smjestaj-obroci::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(214, 108, 255, 0.18) 0%, rgba(214, 108, 255, 0) 70%);
    top: -120px;
    left: -120px;
    pointer-events: none;
  }
  
  .smjestaj-obroci::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 79, 216, 0.14) 0%, rgba(255, 79, 216, 0) 70%);
    bottom: -180px;
    right: -150px;
    pointer-events: none;
  }
  
  .smjestaj-obroci .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .section-heading,
  .rooms-text,
  .gallery-section {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .mini-title {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d36cff;
    margin-bottom: 12px;
    font-weight: 700;
  }
  
  .section-heading h2,
  .rooms-text h2,
  .gallery-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .section-heading p,
  .rooms-text p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #eadcf3;
  }
  
  .heading-line {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff4fd8, #a64dff);
    margin: 18px auto 28px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }
  
  .heading-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,0.45);
    filter: blur(3px);
    animation: shine 3s infinite linear;
  }
  
  @keyframes shine {
    0% { left: -40%; }
    100% { left: 120%; }
  }
  
  .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 90px;
  }
  
  .info-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(214, 108, 255, 0.2);
    border-radius: 22px;
    padding: 30px 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
  }
  
  .info-card::before,
  .room-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }
  
  .info-card:hover,
  .room-card:hover {
    transform: translateY(-10px);
    border-color: rgba(214, 108, 255, 0.55);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  }
  
  .info-card:hover::before,
  .room-card:hover::before {
    opacity: 1;
  }
  
  .info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #eadcf3;
  }
  
  .rooms-section {
    margin-bottom: 90px;
  }
  
  .room-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
  }
  
  .room-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(214, 108, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
  }
  
  .room-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .room-card:hover img {
    transform: scale(1.08);
  }
  
  .room-card-content {
    padding: 24px;
  }
  
  .room-card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
  }
  
  .room-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #eadcf3;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 35px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(214, 108, 255, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }
  
  .gallery-grid img:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
    filter: brightness(1.08);
  }
  
  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .delay-1 {
    transition-delay: 0.12s;
  }
  
  .delay-2 {
    transition-delay: 0.24s;
  }
  
  .delay-3 {
    transition-delay: 0.36s;
  }
  
  /* RESPONSIVE */
  @media (max-width: 992px) {
    .info-grid,
    .room-cards {
      grid-template-columns: 1fr;
    }
  
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .section-heading h2,
    .rooms-text h2,
    .gallery-section h2 {
      font-size: 32px;
    }
  }
  
  @media (max-width: 576px) {
    .smjestaj-obroci {
      padding: 70px 15px;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .section-heading h2,
    .rooms-text h2,
    .gallery-section h2 {
      font-size: 28px;
    }
  
    .section-heading p,
    .rooms-text p,
    .info-card p,
    .room-card-content p {
      font-size: 15px;
    }
  }

  .gallery-section {
    padding: 90px 20px;
    text-align: center;
  }
  
  .gallery-section .mini-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d98ac7;
    margin-bottom: 12px;
  }
  
  .gallery-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 35px;
  }
  
  .hotel-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }
  
  .carousel-track-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.45s ease;
  }
  
  .carousel-slide {
    min-width: 100%;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
  }
  
  .carousel-slide img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
  }
  
  .carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(18, 2, 30, 0.35),
      rgba(18, 2, 30, 0.05)
    );
  }
  
  .carousel-btn {
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(135deg, #d94f97, #8b2e83);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, opacity 0.25s ease;
    flex-shrink: 0;
  }
  
  .carousel-btn:hover {
    transform: scale(1.08);
  }
  
  .carousel-thumbs {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .carousel-thumbs .thumb {
    width: 110px;
    height: 78px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    opacity: 0.55;
    border: 2px solid transparent;
    transition: all 0.25s ease;
  }
  
  .carousel-thumbs .thumb:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }
  
  .carousel-thumbs .thumb.active {
    opacity: 1;
    border-color: #d96ac0;
    box-shadow: 0 8px 18px rgba(217, 106, 192, 0.25);
  }
  
  /* tablet */
  @media (max-width: 992px) {
    .gallery-section h2 {
      font-size: 34px;
    }
  
    .carousel-slide img {
      height: 480px;
    }
  
    .carousel-btn {
      width: 48px;
      height: 48px;
      font-size: 22px;
    }
  }
  
  /* mobile */
  @media (max-width: 768px) {
    .gallery-section {
      padding: 65px 16px;
    }
  
    .gallery-section h2 {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 24px;
    }
  
    .hotel-carousel {
      gap: 10px;
    }
  
    .carousel-slide img {
      height: 300px;
      border-radius: 20px;
    }
  
    .carousel-track-wrapper,
    .carousel-slide {
      border-radius: 20px;
    }
  
    .carousel-btn {
      width: 42px;
      height: 42px;
      font-size: 18px;
    }
  
    .carousel-thumbs {
      gap: 10px;
    }
  
    .carousel-thumbs .thumb {
      width: 72px;
      height: 56px;
      border-radius: 10px;
    }
  }




footer {
    background: #0f0f0f;
    color: #fff;
    padding: 30px 40px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: auto;
    align-items: flex-end;
  }
  .footer-left,
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 220px;
  }
  
  .footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-center img {
    max-height: 100px;
  }
  
  .footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
  }
  
  .footer-item i {
    font-size: 25px;
    color: #590762;
    transition: 0.3s;
  }
  
  .footer-item:hover {
    color: white;
    transform: translateX(5px);
  }
  
  .footer-item:hover i {
    color: #ffffff;
  }
  
@media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-right {
      margin-left: 0 !important;
      align-items: center !important;
      text-align: center !important;
      width: 100%;
    }
  
    .footer-item {
      justify-content: center !important;
    }
  
    .footer-left,
    .footer-right {
      align-items: center;
      text-align: center; 
    }
    
    .footer-item:hover {
      transform: none;
    }
  }