@font-face {
  font-family: "Alegreya";
  src: url('/assets/fonts/Comfortaa-VariableFont_wght.ttf')
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #FF6B35;
  --secondary-color: #FF8C42;
  --accent-color: #FFB366;
  --dark-bg: #1A1A1A;
  --light-bg: #FFF8F3;
  --text-dark: #2D1B1B;
  --text-gray: #5A4A42;
  --text-light: #8B7355;
  --yellow-bg: #FFF2E6;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  --gradient-secondary: linear-gradient(135deg, #FFB366 0%, #FF8C42 100%);
  --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #FFB366 50%, #FF8C42 100%);
  --gradient-dark: linear-gradient(135deg, #2D1B1B 0%, #1A1A1A 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

body {
  font-family: 'Alegreya';
  line-height: 1.6;
  color: var(--text-dark);
  background: linear-gradient(135deg, #FFF8F3 0%, #FFF2E6 100%);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2D2D2D 100%);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner p {
  color: var(--white);
  margin: 0;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cookie-banner button:first-child {
  background-color: #555;
  color: white;
}

.cookie-banner button:last-child {
  background-color: var(--primary-color);
  color: white;
}

.cookie-banner button:hover {
  transform: scale(1.05);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
  border-bottom: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.25);
  transform: translateY(-1px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
}

.logo {
  font-size: 2rem;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-cta {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

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

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu li {
  overflow: hidden;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
}


.nav-menu a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);

}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/img/1.webp');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {

  0%,
  100% {
    background-position: center center;
  }

  50% {
    background-position: center 20%;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
  position: relative;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 107, 53, 0.3);
  }

  100% {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 50px rgba(255, 107, 53, 0.6);
  }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 18px 36px;
  border: none;
  border-radius: var(--border-radius-lg);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-warm);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
  color: var(--white);
}

.btn-primary:active {
  transform: translateY(-2px) scale(1.02);
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--light-bg) 0%, #FFF2E6 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,107,53,0.1)"/></svg>') repeat;
  animation: float 30s linear infinite;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0,212,170,0.1)"/></svg>') repeat;
  opacity: 0.5;
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transition: height 0.3s ease;
}

.stat-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.stat-item:hover::before {
  height: 6px;
}

.stat-item:hover::after {
  opacity: 1;
}

.stat-item h2 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1;
}

.stat-item p {
  font-size: 1.1rem;
  color: var(--text-gray);
  font-weight: 500;
  margin: 0;
}

/* About Section */
.about {
  padding: 120px 0;
  background: linear-gradient(rgba(248, 245, 237, 0.9), rgba(248, 245, 237, 0.9)), url('/img/3.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hexagons" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,5 50,20 50,40 30,55 10,40 10,20" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23hexagons)"/></svg>');
  opacity: 0.3;
}

.about-card {
  background: var(--white);
  padding: 60px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 107, 53, 0.25);
  border-color: var(--primary-color);
}

.about-card:hover::before {
  opacity: 0.05;
}

.about-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  margin-top: 2rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.about-card p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  line-height: 1.7;
  font-weight: 400;
}

/* Features Section */
.features {
  background: var(--gradient-warm);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hexagons" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,5 50,20 50,40 30,55 10,40 10,20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23hexagons)"/></svg>');
  opacity: 0.3;
  animation: float 25s linear infinite;
}

.features::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-warm);
  transition: left 0.4s ease;
  z-index: -1;
  opacity: 0.1;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.feature-card:hover::before {
  left: 0;
}

.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: var(--text-dark);
  line-height: 1.6;
}

/* Video Section */
.video-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/img/2.webp');
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
  border: 3px solid var(--primary-color);
}

.video-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.play-button {
  font-size: 4rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--primary-color);
  text-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.play-button:hover {
  transform: scale(1.2) rotate(5deg);
  color: var(--white);
  text-shadow: 0 6px 20px rgba(255, 107, 53, 0.8);
}

.video-placeholder p {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Image Gallery Section */
.image-gallery {
  padding: 60px 0;
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.gallery-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-image:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.gallery-image:hover::before {
  opacity: 0.3;
}

/* Photo backgrounds */
.photo5 {
  background-image: url('/img/5.webp');
}

.photo6 {
  background-image: url('/img/6.webp');
}

.photo7 {
  background-image: url('/img/7.webp');
}

.photo8 {
  background-image: url('/img/8.webp');
}

.photo9 {
  background-image: url('/img/9.webp');
}

.photo10 {
  background-image: url('/img/10.webp');
}

.photo11 {
  background-image: url('/img/11.webp');
}

.photo12 {
  background-image: url('/img/12.webp');
}

.photo13 {
  background-image: url('/img/13.webp');
}

.photo14 {
  background-image: url('/img/14.webp');
}

.photo15 {
  background-image: url('/img/15.webp');
}

.photo16 {
  background-image: url('/img/16.webp');
}

.photo17 {
  background-image: url('/img/17.webp');
}

.photo18 {
  background-image: url('/img/18.webp');
}

.photo19 {
  background-image: url('/img/19.webp');
}

.photo20 {
  background-image: url('/img/20.webp');
}

.photo22 {
  background-image: url('/img/22.webp');
}

.photo23 {
  background-image: url('/img/23.webp');
}

.photo24 {
  background-image: url('/img/24.webp');
}

.photo25 {
  background-image: url('/img/25.webp');
}

.photo26 {
  background-image: url('/img/26.webp');
}

.photo27 {
  background-image: url('/img/27.webp');
}

/* Registration Section */
.registration {
  background: var(--gradient-primary);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}


@keyframes float {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-100px);
  }
}

.registration h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.registration-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.registration-form input {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.registration-form input:focus {
  outline: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.registration-form input::placeholder {
  color: var(--text-gray);
}

/* Newsletter Section */
.newsletter {
  background-color: #FFD54F;
  padding: 60px 0;
  text-align: center;
}

.newsletter h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  background-color: var(--white);
}

.newsletter-form input::placeholder {
  color: var(--text-gray);
}

.form-message {
  margin-top: 1rem;
  font-weight: bold;
  padding: 15px 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.success {
  color: var(--white);
  background: linear-gradient(135deg, #4caf50, #45a049);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.form-message.error {
  color: var(--white);
  background: linear-gradient(135deg, #f44336, #d32f2f);
  box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

/* News Section */
.news {
  padding: 80px 0;
  background-color: var(--white);
}

.news h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  margin-top: 2rem;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.news-card {
  background: var(--white);
  padding: 0;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
  overflow: hidden;
  border: 2px solid transparent;
  position: relative;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.news-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.news-card:hover::before {
  opacity: 0.1;
}

.news-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 15px 15px 0 0;
}

.rooster-news-image {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.fish-news-image {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
}

.chickens-news-image {
  background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
}

.dali-news-image {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.news-card h3 {
  color: var(--text-dark);
  margin: 20px 20px 10px 20px;
  margin-top: 2rem;
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.news-date {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin: 0 20px 10px 20px;
}

.news-card p {
  color: var(--text-dark);
  margin: 0 20px 20px 20px;
  line-height: 1.6;
}

.news-link {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  background: var(--gradient-primary);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  margin: 0 20px 20px 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.news-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-warm);
  transition: left 0.3s ease;
  z-index: -1;
}

.news-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.news-link:hover::before {
  left: 0;
}

/* Adventures Section */
.adventures {
  background-color: var(--white);
  padding: 60px 0;
}

.adventure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.adventure-card {
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.adventure-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-warm);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.adventure-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.adventure-card:hover::before {
  opacity: 0.05;
}

.adventure-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.outback-icon {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.kangaroo-icon {
  background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
}

.dingo-icon {
  background: linear-gradient(135deg, #CD853F 0%, #D2691E 100%);
}

.koala-icon {
  background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
}

.reef-icon {
  background: linear-gradient(135deg, #FF0000 0%, #FF4500 100%);
}

.sydney-icon {
  background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
}

.adventure-content {
  flex: 1;
}

.adventure-content h3 {
  color: var(--text-dark);
  margin-bottom: 8px;
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.adventure-content p {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--yellow-bg);
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  margin-top: 2rem;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: var(--white);
  color: var(--text-dark);
  border: none;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}



.faq-question:hover {
  background: var(--light-bg);
  color: var(--primary-color);
  transform: translateX(5px);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 20px 0;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Testimonial Section */
.testimonial {
  background-color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.testimonial blockquote {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-dark);
  position: relative;
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
  border-left: 5px solid var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial blockquote:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  border: 3px solid var(--white);
}

.testimonial-author:hover .author-avatar {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.testimonial cite {
  font-size: 1.2rem;
  font-style: normal;
  color: var(--text-dark);
  font-weight: bold;
}

/* Team Section */
.team {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.team h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  margin-top: 2rem;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.team-member {
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid transparent;
}

.team-member:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
  background: var(--white);
}

.team-photo {
  width: 200px;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.team-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.team-member:hover .team-photo {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.team-member:hover .team-photo::before {
  opacity: 0.2;
}

.liam-photo {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.olivia-photo {
  background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
}

.noah-photo {
  background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
}

.ava-photo {
  background: linear-gradient(135deg, #F0E68C 0%, #F5DEB3 100%);
}

.team-member h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.team-member p {
  color: var(--text-dark);
  font-size: 1rem;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--gradient-warm);
  position: relative;
  overflow: hidden;
}


.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.contact-details h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-main {
  background-color: var(--dark-bg);
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  color: var(--white);
  margin: 0;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-legal {
  background: var(--light-bg);
  padding: 20px 0;
  text-align: center;
  border-top: 2px solid var(--primary-color);
}

.legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.legal-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.legal-links a:hover {
  text-decoration: underline;
}

.separator {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Privacy Policy Page */
.privacy-policy {
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #F1F5F9 100%);
  min-height: 100vh;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.last-updated {
  text-align: center;
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.privacy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.privacy-section p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy-section li {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.privacy-section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.privacy-section a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.privacy-section strong {
  color: var(--text-dark);
  font-weight: 600;
}

.privacy-section address {
  font-style: normal;
  background: var(--light-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 1rem;
  border-left: 4px solid var(--primary-color);
}

.footer-legal a {
  color: var(--text-gray);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* Responsive Design */
/* Mobile Responsive Design */
@media (max-width: 768px) {

  /* Navigation */
  .navbar {
    padding: 15px 0;
  }

  .nav-brand {
    font-size: 1.2rem;
  }

  .logo img {
    height: 30px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--light-bg);
    flex-direction: column;
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu li {
    padding: 10px 20px;
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-menu a {
    padding: 10px 0;
    font-size: 1.1rem;
  }

  .nav-cta {
    display: none;
  }

  /* Hero Section */
  .hero {
    min-height: 80vh;
    padding: 60px 20px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.3rem);
    line-height: 1.4;
    margin-bottom: 2rem;
  }

  .btn-primary {
    padding: 12px 24px;
    font-size: 1rem;
  }

  /* Stats Section */
  .stats .container {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }

  .stat-item h2 {
    font-size: 2.5rem;
  }

  /* Video Section */
  .video-section {
    padding: 40px 20px;
  }

  .video-container {
    max-width: 100%;
  }

  /* About Section */
  .about {
    padding: 60px 20px;
  }

  .about-card {
    padding: 30px 20px;
  }

  .about-card h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .about-card h2 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  /* Features Section */
  .features {
    padding: 60px 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 20px;
  }

  /* Gallery Section */
  .image-gallery {
    padding: 40px 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Registration Section */
  .registration {
    padding: 60px 20px;
  }

  .registration h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 1.5rem;
  }

  .registration-form {
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
  }

  .registration-form input {
    width: 100%;
    padding: 12px 16px;
  }

  /* News Section */
  .news {
    padding: 60px 20px;
  }

  .news h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 2rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-card {
    padding: 20px;
  }

  .news-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  /* Adventures Section */
  .adventures {
    padding: 60px 20px;
  }

  .adventure-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .adventure-card {
    flex-direction: column;
  }

  .adventure-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 15px 15px 0 0;
  }

  /* FAQ Section */
  .faq {
    padding: 60px 20px;
  }

  .faq h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 15px;
    font-size: 1rem;
  }

  /* Testimonial Section */
  .testimonial {
    padding: 60px 20px;
    text-align: center;
  }

  .testimonial-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
  }

  .testimonial blockquote {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  /* Team Section */
  .team {
    padding: 60px 20px;
  }

  .team h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 2rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-photo {
    width: 120px;
    height: 120px;
  }

  /* Contact Section */
  .contact {
    padding: 60px 20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-details h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 16px;
    font-size: 1rem;
  }

  /* Footer */
  .footer-main {
    padding: 40px 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-legal {
    padding: 20px;
  }

  .legal-links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Cookie Banner */
  .cookie-banner {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
  }

  .cookie-buttons button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .adventure-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* General heading styles for proper spacing and z-index */
h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  z-index: 2;
}

/* Ensure all section headings have proper spacing */
section h2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

section h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Fix for cards with hover effects */
.feature-card,
.news-card,
.adventure-card,
.team-member,
.faq-item {
  position: relative;
}

.feature-card h3,
.news-card h3,
.adventure-content h3,
.team-member h3 {
  position: relative;
  z-index: 3;
}