html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to bottom, #0a0a0f, #1c1c2b);
  color: #fff;
  text-align: center;
}

/* Main Content Container */
.main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  padding: 20px;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Hamburger (mobile toggle) */
.hamburger {
  font-size: 30px;
  background: none;
  border: none;
  color: #d70040;
  cursor: pointer;
  display: none;
  margin-left: 20px;
}

/* Navigation container */
.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

/* Centered nav links */
.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}

/* Responsive dropdown toggle */
.nav-menu.active {
  display: block;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
}

/* Navigation links */
.nav-primary,
.dropbtn {
  color: #ffe4b5;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-primary:hover,
.dropbtn:hover {
  color: #d70040;
  transform: scale(1.05);
  text-decoration: underline;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropbtn {
  background-color: transparent;
  color: #ffe4b5;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 20px;
  transition: color 0.3s ease;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  z-index: 10;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.dropdown-content a {
  color: #ffe4b5;
  padding: 12px 16px;
  text-decoration: solid;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #d70040;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.6s ease-out;
}

/* Hero Logo */
.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto 5px;
}

.hero-logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease 0.2s;
}

.hero-logo img:hover {
  transform: scale(1.10);
}

/* Headings & Sections */
h1 {
  font-size: 48px;
  margin: 20px 0 5px;
  font-weight: bold;
}

section {
  padding: 20px 10px;
}

h2 {
  font-size: 32px;
  margin-bottom: 5px;
}

p {
  font-size: 22px;
  max-width: 600px;
  margin: 0 auto 10px;
}

/* CTA Button */
.cta-button {
  background-color: #d70040;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
  vertical-align: middle;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background-color: #b00030;
  transform: scale(1.05);
}

/* SVG Logo Container */
.logo-container {
  width: 150px;
  margin: 1em auto;
  display: block;
}

.logo-container svg {
  width: 100%;
  height: auto;
  fill: gold;
  transition: transform 0.4s ease, filter 0.2s ease;
}

.logo-container svg:hover {
  transform: scale(1.10) rotate(-1deg);
  filter: drop-shadow(0 0 10px gold);
}

/* Flipped Emoji */
.flipped-emoji {
  display: inline-block;
  transform: scaleX(-1);
}

/* Prevent scrollbar jump between pages */
html {
  overflow-y: scroll;
}

/* Footer Styling */
footer {
  background-color: #000000;
  color: #ccc;
  padding: 10px;
  text-align: center;
  font-size: 18px;
}

footer a {
  color: #d70040;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffe4b5;
  text-decoration: underline;
}

footer .footer-divider {
  color: #888;
  margin: 0 8px;
  font-weight: bold;
  font-size: 16px;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #111;
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  font-size: 16px;

  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease-out 0.2s,
              opacity 0.4s ease-out 0.2s,
              visibility 0s linear 0.4s;
}

#cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

#cookie-banner a {
  color: #d70040;
  text-decoration: underline;
}

#cookie-banner button {
  margin-left: 10px;
  padding: 6px 14px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#cookie-banner .cookie-accept {
  background-color: #d70040;
  color: #fff;
}

#cookie-banner .cookie-accept:hover {
  background-color: #e62e5c;
}

#cookie-banner .cookie-reject {
  background-color: #555;
  color: #fff;
}

#cookie-banner .cookie-reject:hover {
  background-color: #333;
}
