body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f4f6f8;
  color: #111;
}

/* NAV LINKS (ADDED SAFELY) */
.nav-links a {
  text-decoration: none;
  color: #07222E;
  font-weight: 400;
  transition: all 0.2s ease;
}

.nav-links a.active-link {
  font-weight: 700;
  color: #0A3A5F;
  cursor: default;
}

.nav-links a:not(.active-link):hover {
  color: #0A3A5F;
}

/* HERO */
.hero {
  height: 50vh;
  background: url('../img/perfect_swirl_gelato_ice_cream.webp') center/cover no-repeat;
  position: relative;
}

.hero-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* LOGO */
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: clamp(240px, 20vw, 360px);
  height: auto;
  z-index: 10;
}

/* FORM */
.hero-form {
  background: rgba(255,255,255,0.95);
  padding: 30px;
  border-radius: 12px;
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-heading {
  color: #07222E;
  margin-bottom: 5px;
}

.form-note {
  font-size: 12px;
  font-style: italic;
  text-align: right;
  color: #555;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

.row {
  display: flex;
  gap: 10px;
}

.row select {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}

.checkbox {
  font-size: 12px;
}

/* BUTTON */
.hero-form button {
  padding: 12px;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  transition: all 0.25s ease;
  font-family: 'Montserrat', sans-serif;
}

.hero-form button:disabled {
  background-color: #999;
  cursor: not-allowed;
  box-shadow: none;
}

.hero-form button:not(:disabled) {
  background: linear-gradient(135deg, #ff0000, #8b0000);
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.8);
  cursor: pointer;
}

.hero-form button:not(:disabled):hover {
  box-shadow: 0 0 22px rgba(255, 0, 0, 1);
  transform: scale(1.03);
}

/* CONTENT */
.content {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.section {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.section .text {
  flex: 1;
}

.section .image {
  flex: 1;
}

.section img {
  width: 100%;
  border-radius: 10px;
}

.full-text {
  margin-bottom: 60px;
}

.full-text p {
  margin-bottom: 15px;
}

/* HEADLINE */
.headline {
  font-size: 34px;
  color: #07222E;
  margin-bottom: 20px;
}

/* CTA */
.cta {
  text-align: center;
  margin: 60px 0;
}

.cta-button {
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  background: linear-gradient(135deg, #ff0000, #8b0000);
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.8);
  animation: pulse 1.5s infinite;
  display: inline-block;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.6); }
  50% { box-shadow: 0 0 22px rgba(255, 0, 0, 1); }
  100% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.6); }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 40px 0;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    position: static;
    margin-bottom: 20px;
    width: clamp(220px, 55vw, 320px);
  }

  .section {
    flex-direction: column;
  }

  .row {
    flex-direction: column;
  }
}

.footer-nap {
  width: 100%;
  background: #07222E;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  text-align: center;
  padding: 10px 15px;
  margin-top: 40px;
}

.footer-nap a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

/* Responsive navigation */
.nav-inner {
  position: relative;
}

.desktop-nav {
  display: flex;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: #07222E;
  font-size: 30px;
  line-height: 1;
  padding: 6px 8px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 20px;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  z-index: 1001;
  overflow: hidden;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a,
.mobile-menu span {
  display: block;
  padding: 14px 18px;
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  color: #07222E;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a:last-child,
.mobile-menu span:last-child {
  border-bottom: none;
}

.mobile-menu .active-link {
  font-weight: 700;
  color: #0A3A5F;
  cursor: default;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none !important;
  }

  .hamburger {
    display: block;
  }
}
/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 15px 20px;
  z-index: 9999;
  box-sizing: border-box;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  color: #07222E;
  flex: 1;
}

.cookie-btn {
  background: #ffffff;
  color: #0A3A5F;
  border: 2px solid #0A3A5F;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: cookiePulse 2s infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.cookie-btn:hover {
  background: #0A3A5F;
  color: #ffffff;
}

@keyframes cookiePulse {
  0% { box-shadow: 0 0 0 rgba(10,58,95,0.0); }
  50% { box-shadow: 0 0 10px rgba(10,58,95,0.4); }
  100% { box-shadow: 0 0 0 rgba(10,58,95,0.0); }
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 12px 16px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-content p {
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

html, body {
  overflow-x: hidden;
}

body {
  padding-bottom: 120px;
}

.cookie-banner {
  max-height: 40vh;
  overflow-y: auto;
}