/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --background: #ffffff;
  --foreground: #1a1a1a;
  --primary: #22c55e;
  --secondary: #3b82f6;
  --muted: #f8f9fa;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --card: #ffffff;
  --card-foreground: #1a1a1a;

  /* Fonts */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --container-padding: 1rem;
  --section-padding: 4rem 0;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Buttons */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0.375rem;
}

.btn-outline:hover {
  background: currentColor;
  color: var(--background);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.logo-container {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.nav-link:hover {
  color: white;
}

.cta-desktop {
  display: none;
}

.cta-desktop .btn-outline {
  color: white;
  border-color: white;
  font-size: 0.75rem;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.hamburger {
  width: 1.25rem;
  height: 2px;
  background: white;
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  transition: var(--transition);
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  bottom: -6px;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-btn.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

.mobile-menu {
  display: none;
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: white;
}

.mobile-cta {
  color: white;
  border-color: white;
  font-size: 0.75rem;
  width: fit-content;
}

/* Side Navigation */
.side-navigation {
  position: fixed;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

.side-nav-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.side-nav-circle {
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.side-nav-line {
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin-left: 1rem;
  transition: var(--transition);
}

.side-nav-item.active .side-nav-circle {
  border-color: var(--primary);
  background: var(--primary);
  color: black;
}

.side-nav-item.active .side-nav-line {
  width: 3rem;
  background: var(--primary);
}

.side-nav-item:hover .side-nav-circle {
  border-color: rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
}

.side-nav-item:hover .side-nav-line {
  width: 2rem;
  background: rgba(255, 255, 255, 0.4);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/609dfefd-1ff4-415e-a3e6-ded4a5f9a314.jpeg-5Kfw24cCdOZl2SGx9jfJ6FHohlcb4I.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-geometric {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.geometric-main {
  position: relative;
}

.geometric-square {
  border: 2px solid var(--primary);
  transform: rotate(45deg);
  position: absolute;
}

.geometric-square.main {
  width: 3rem;
  height: 3rem;
  background: rgba(34, 197, 94, 0.2);
  position: relative;
}

.geometric-square.medium {
  width: 2rem;
  height: 2rem;
  background: rgba(34, 197, 94, 0.1);
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.geometric-square.small {
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(34, 197, 94, 0.05);
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.geometric-lines {
  display: flex;
  gap: 0.25rem;
  margin-top: 2rem;
}

.line {
  width: 2px;
  background: var(--primary);
}

.line.tall {
  height: 5rem;
}

.line.medium {
  height: 3rem;
  opacity: 0.8;
}

.line.tallest {
  height: 6rem;
}

.line.short {
  height: 2rem;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

.hero-subtitle {
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.hero-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.2s forwards;
}

.hero-divider {
  width: 3rem;
  height: 1px;
  background: white;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.4s forwards;
}

.hero-btn {
  color: white;
  border-color: white;
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.6s forwards;
}

.hero-btn:hover {
  background: white;
  color: black;
  transform: translateY(-2px) scale(1.05);
}

.hero-footer {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  text-align: center;
}

.hero-footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 64rem;
  margin: 0 auto;
  line-height: 1.5;
}

.hidden-mobile {
  display: none;
}

.hidden-tablet {
  display: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
  width: 1px;
  height: 4rem;
  background: rgba(255, 255, 255, 0.4);
}

.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: rotate(90deg);
  transform-origin: left;
}

/* About Section */
.about-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: black;
  color: white;
}

.about-background {
  position: absolute;
  inset: 0;
}

.about-image {
  position: absolute;
  inset: 0;
  background-image: url("country-sport-sunset.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.about-geometric {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 96rem;
  margin: 0 auto;
}

.section-subtitle {
  color: var(--primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.section-divider {
  width: 6rem;
  height: 1px;
  background: white;
  margin: 0 auto 2rem;
}

.section-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 64rem;
  margin: 0 auto;
  line-height: 1.6;
}

.about-footer {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  right: 1.5rem;
  text-align: center;
}

.about-footer-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Landscape Slider */
.landscape-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  background: black;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.slide-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

.slide-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.slide-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 3rem;
  height: 3rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.slider-btn.prev {
  left: 1rem;
}

.slider-btn.next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: white;
  transform: scale(1.25);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slider-geometric {
  position: absolute;
  top: 4rem;
  right: 4rem;
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.slider-geometric .geometric-square.large {
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
}

.slider-geometric .geometric-square.medium {
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
}

/* Sports Section */
.sports-section {
  padding: 8rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header .section-subtitle {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.section-header .section-title {
  color: black;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.section-header .section-divider {
  background: black;
}

.sports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.sport-card {
  cursor: pointer;
  transition: var(--transition-slow);
  opacity: 0;
  transform: translateY(2rem);
}

.sport-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.sport-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #f3f4f6;
  border-radius: 0.5rem;
}

.sport-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.sport-card:hover .sport-image img {
  transform: scale(1.05);
}

.sport-content {
  padding: 0 0.5rem;
}

.sport-subtitle {
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.sport-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: black;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.sport-card:hover .sport-title {
  color: var(--primary);
}

.sport-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.sport-line {
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

.sport-card:hover .sport-line {
  width: 3rem;
}

.sports-quote {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.quote-text {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--muted-foreground);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
}

.quote-divider {
  width: 4rem;
  height: 1px;
  background: var(--primary);
  margin: 0 auto;
}

/* Gallery Section */
.gallery-section {
  position: relative;
  min-height: 100vh;
  background: black;
  color: white;
  overflow: hidden;
}

.gallery-background {
  position: absolute;
  inset: 0;
}

.gallery-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.gallery-bg-image.active {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.gallery-geometric {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.gallery-geometric .geometric-square.large {
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
}

.gallery-geometric .geometric-square.medium {
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
}

.gallery-geometric .geometric-square.small {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.gallery-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 0;
}

.gallery-header {
  margin-bottom: 2rem;
}

.gallery-header .section-subtitle {
  color: var(--primary);
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}

.gallery-header .section-title {
  font-size: 1.5rem;
  line-height: 1.2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.7;
  border-radius: 0.375rem;
}

.gallery-thumb.active {
  opacity: 1;
  transform: scale(1.05);
  border: 2px solid var(--primary);
}

.gallery-thumb:hover {
  transform: scale(1.05);
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.gallery-thumb:hover .thumb-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: var(--transition);
}

.gallery-thumb.active .play-icon {
  opacity: 1;
}

.gallery-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gallery-text h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.gallery-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.gallery-info .btn-outline {
  color: white;
  border-color: white;
  width: fit-content;
  font-size: 0.75rem;
}

.gallery-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

/* Location Section */
.location-section {
  position: relative;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  overflow: hidden;
}

.location-background {
  position: absolute;
  inset: 0;
}

.location-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
}

.location-geometric {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.location-geometric .geometric-square.large {
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(34, 197, 94, 0.3);
  transform: rotate(45deg);
}

.location-geometric .geometric-square.medium {
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(34, 197, 94, 0.2);
  transform: rotate(45deg);
}

.location-geometric .geometric-square.small {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid rgba(34, 197, 94, 0.1);
  transform: rotate(45deg);
}

.location-section .container {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1rem;
}

.location-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.location-section .section-subtitle {
  color: var(--primary);
}

.location-section .section-title {
  color: var(--foreground);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.location-section .section-divider {
  background: var(--foreground);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 112rem;
  margin: 0 auto;
}

.location-info {
  order: 2;
}

.location-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--card);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-item svg {
  color: var(--primary);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 0.875rem;
}

.attractions-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.attractions-grid {
  display: grid;
  gap: 1rem;
}

.attraction-card {
  padding: 1.5rem;
  background: var(--card);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.attraction-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.attraction-title {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.attraction-description {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.contact-form-container {
  order: 1;
}

.contact-form-card {
  position: sticky;
  top: 2rem;
  background: var(--card);
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-header {
  text-align: center;
  padding: 1.5rem 1.5rem 0;
}

.form-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.contact-form {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-textarea {
  min-height: 5rem;
  resize: vertical;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 2px solid var(--foreground);
  color: var(--foreground);
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0.375rem;
}

.form-submit:hover {
  background: var(--foreground);
  color: var(--background);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  line-height: 1.5;
}

/* Footer */
.footer {
  background: var(--foreground);
  color: var(--background);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-brand {
  text-align: center;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 28rem;
  line-height: 1.6;
  font-size: 0.875rem;
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--background);
  transition: var(--transition);
  border-radius: 0.375rem;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-links {
  text-align: center;
}

.footer-links-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: white;
}

.footer-newsletter {
  text-align: center;
}

.footer-newsletter-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-newsletter-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.75rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-input {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: var(--secondary);
  border: none;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0.375rem;
  align-self: center;
}

.newsletter-btn:hover {
  background: #2563eb;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal-link:hover {
  color: white;
}

.footer-developer {
  color: rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

/* Responsive Design */
@media (min-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-footer-text .hidden-mobile {
    display: inline;
  }

  .hero-geometric {
    display: flex;
    right: 2rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-input {
    flex: 1;
  }

  .newsletter-btn {
    align-self: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .nav-desktop {
    display: flex;
  }

  .cta-desktop {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

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

  .section-title {
    font-size: 3rem;
  }

  .slide-title {
    font-size: 3rem;
  }

  .slider-btn {
    width: 4rem;
    height: 4rem;
  }

  .slider-btn.prev {
    left: 2rem;
  }

  .slider-btn.next {
    right: 2rem;
  }

  .about-geometric {
    display: flex;
  }

  .slider-geometric {
    display: flex;
  }

  .gallery-geometric {
    display: flex;
  }

  .location-geometric {
    display: flex;
  }

  .gallery-info {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-links {
    text-align: left;
  }

  .footer-newsletter {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-legal {
    flex-direction: row;
    gap: 1.5rem;
  }

  .location-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .location-info {
    order: 1;
  }

  .contact-form-container {
    order: 2;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-footer-text .hidden-tablet {
    display: inline;
  }

  .scroll-indicator {
    display: flex;
  }

  .side-navigation {
    display: flex;
  }

  .section-title {
    font-size: 4rem;
  }

  .slide-title {
    font-size: 4rem;
  }

  .landscape-slider {
    height: 90vh;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .sports-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .logo-container {
    width: 6rem;
    height: 6rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 5rem;
  }

  .slide-title {
    font-size: 5rem;
  }

  .logo-container {
    width: 8rem;
    height: 8rem;
  }
}

@media (min-width: 1536px) {
  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 6rem;
  }

  .slide-title {
    font-size: 6rem;
  }
}
