/* ============================
   GLOBAL RESET
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #e7ebef;
  color: #1a1f24;
  overflow-x: hidden;
}

/* Wrapper */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   HEADER / NAV
============================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(246, 249, 253, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.09);
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 60px;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #1a1f24;
}

/* Desktop Nav */
nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
}

nav ul li a {
  text-decoration: none;
  font-weight: 500;
  color: #1a1f24;
  padding-bottom: 3px;
  position: relative;
}

nav ul li a.active,
nav ul li a:hover {
  color: #007bff;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg,#00c0ff,#2f80ff);
  transition: 0.2s;
  border-radius: 99px;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #1a1f24;
  border-radius: 99px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #f5f7fa;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 10px 0;
  font-size: 16px;
  color: #1a1f24;
  text-decoration: none;
}

.mobile-nav a.active {
  color: #007bff;
  font-weight: 600;
}

/* ============================
   HERO
============================ */
.hero {
  margin-top: 82px;
  height: 70vh;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.35), rgba(0,0,0,0.35)),
    url("img/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: 40px;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 0 22px rgba(0,0,0,0.8);
}

/* ============================
   SECTION BASE
============================ */
section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 18px;
}

.section-text {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: #30363d;
}

/* ============================
   CARD (Light Version)
============================ */
.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid #d4d9de;
  box-shadow: 0 4px 22px rgba(0,0,0,0.08);
  color: #1e242a;
}

.card h3,
.card h4 {
  color: #1a1f24;
  margin-bottom: 10px;
}

.card p {
  color: #30363d;
}

/* Neon Light Card (Location) */
.card-neon {
  border: 1px solid #00c0ff;
  box-shadow: 0 0 18px rgba(0,192,255,0.45);
}

/* BUTTON */
.btn {
  display: inline-flex;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg,#00c0ff,#007bff);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 12px rgba(0,192,255,0.65);
  transition: 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

/* ============================
   LOCATION BLOCK
============================ */
.location-card {
  max-width: 780px;
  margin: 0 auto;
}

.location-header {
  display: flex;
  gap: 16px;
  align-items: center;
}

.location-header-title {
  font-size: 22px;
  color: #1a1f24;
}

.location-header-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg,#00c0ff,#007bff);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 12px rgba(0,192,255,0.6);
}

.location-address {
  color: #2d333a;
  margin-top: 10px;
}

.location-open-map {
  margin-top: 20px;
}

/* ============================
   FOOTER
============================ */

footer {
  background: #11171c;
  color: #e5eef7;
  padding: 40px 24px 28px;
  margin-top: 40px;
  text-align: center;
}

.footer-divider {
  width: 150px;
  height: 2px;
  margin: 20px auto;
  background: linear-gradient(90deg,#00c0ff,#2f80ff);
  box-shadow: 0 0 10px rgba(0,192,255,0.8);
  border-radius: 999px;
}

.footer-credit {
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
}

.mpws-icon {
  width:22px;
  filter: drop-shadow(0 0 6px #00c0ff);
}

.mpws-link {
  color:#43afff;
  text-decoration:none;
  font-weight:500;
}
.mpws-link:hover {
  text-shadow:0 0 8px #2fa0ff;
}

/* ============================
   INLINE DARK FIX (OBAVEZNO!)
============================ */
div[style*="#0d131a"],
div[style*="#0D131A"] {
  background: #ffffff !important;
  color: #1a1f24 !important;
  border: 1px solid #d4d9de !important;
  box-shadow: 0 4px 22px rgba(0,0,0,0.08) !important;
}

div[style*="#0d131a"] * {
  color: #1a1f24 !important;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 900px) {
  nav ul { display:none; }
  .hamburger { display:flex; }

  .hero-title { font-size: 28px; }
  .hero { height: 60vh; }
}
