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

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Header - Updated with summer ocean colors */
.header {
  background: linear-gradient(135deg, #0c4a6e, #0ea5e9, #06b6d4);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(6, 182, 212, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-menu a:hover {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
}

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

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section - Ocean vibes with warm accents */
.hero {
  background: linear-gradient(
      135deg,
      rgba(12, 74, 110, 0.8),
      rgba(14, 165, 233, 0.6)
    ),
    url("public/images/background.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(251, 191, 36, 0.1),
    rgba(6, 182, 212, 0.1)
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

.hero-content {
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1.2s ease-out;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 2.5rem;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::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;
}

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

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

/* Features Section - Ocean depths with warm highlights */
.features {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0c4a6e, #0e7490);
  color: white;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f97316);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.feature-card:hover::before {
  transform: translateX(0);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  margin-bottom: 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fbbf24;
  font-weight: 600;
}

.feature-card p {
  opacity: 0.9;
  line-height: 1.7;
}

/* Tours Section - Light summer vibes */
.tours {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.tours .section-title {
  color: #0c4a6e;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.tour-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.15);
}

.tour-image {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.8),
    rgba(6, 182, 212, 0.6)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover .tour-overlay {
  opacity: 1;
}

.tour-badge {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: 50px;
  color: #0ea5e9;
  font-weight: 600;
  font-size: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tour-badge:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

.tour-content {
  padding: 2.5rem;
}

.tour-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #0c4a6e;
  font-weight: 700;
}

.tour-description {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.tour-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 1.5rem;
}

/* Testimonials - Deeper ocean with golden accents */
.testimonials {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0e7490, #0891b2);
  color: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 6rem;
  color: #fbbf24;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  font-weight: 600;
  color: #fbbf24;
  font-size: 1.1rem;
}

/* Contact Section - Deep ocean vibes */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0c4a6e, #0e7490);
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-info:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.contact-info h3 {
  color: #fbbf24;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.contact-info p {
  margin-bottom: 1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.facebook-btn {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-btn:hover {
  background: linear-gradient(135deg, #166fe5, #1565c0);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-icon {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .social-buttons {
    gap: 0.8rem;
  }

  .social-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Footer - Deep ocean with golden text */
.footer {
  background: #164e63;
  color: white;
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.footer p {
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

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

  .hero {
    background-attachment: scroll;
  }

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

  .hero p {
    font-size: 1.1rem;
  }

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

  .features-grid,
  .tours-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .tour-card,
  .testimonial-card,
  .contact-info {
    margin: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Loading Animation - Ocean theme */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0c4a6e, #0e7490);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Scroll Progress Bar - Golden summer colors */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Custom Scrollbar - Ocean theme */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0e7490;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

/* Floating elements for hero */
.hero::after {
  content: "";
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 60px;
  height: 60px;
  background: rgba(251, 191, 36, 0.3);
  border-radius: 50%;
  animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Itinerary section */
.itinerary-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.itinerary-content {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.itinerary-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
}

.itinerary-tab {
  padding: 0.8rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #64748b;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.itinerary-tab.active {
  color: #0ea5e9;
  border-bottom-color: #0ea5e9;
}

.itinerary-section {
  display: none;
}

.itinerary-section.active {
  display: block;
}

.itinerary-section h4 {
  color: #0c4a6e;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.itinerary-section ul {
  list-style: none;
  padding: 0;
}

.itinerary-section li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}

.itinerary-section li:before {
  content: "✓ ";
  color: #22c55e;
  font-weight: bold;
  margin-right: 0.5rem;
}

.exclusions li:before {
  content: "✗ ";
  color: #ef4444;
}

.close-itinerary {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #64748b;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
}

.itinerary-container {
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.itinerary-section {
  display: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.itinerary-section.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Come Meet Us Section */
.meet-us {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.meet-us .section-title {
  color: #0c4a6e;
  margin-bottom: 1rem;
}

.meet-us-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
  font-weight: 500;
}

.map-container {
  margin: 3rem 0;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.meet-us-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.meet-us-info {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.meet-us-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15);
}

.meet-us-info h3 {
  color: #0c4a6e;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.meet-us-info p {
  color: #64748b;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }

  .meet-us-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* Logo Cursor Rider */
.cursor-rider {
  position: fixed;
  width: 30px;
  height: 30px;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.cursor-rider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.4));
  transition: all 0.3s ease;
}

/* Floating animation */
@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-8px) rotate(5deg);
  }
}

/* Excited state when hovering clickables */
.cursor-rider.rider-excited {
  animation: bounce 0.6s ease-in-out infinite;
}

.cursor-rider.rider-excited img {
  filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.8));
  transform: scale(1.2);
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-12px) rotate(-10deg);
  }
}

/* Click animation */
.cursor-rider.rider-click {
  animation: spin 0.3s ease-out;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.5);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(1);
  }
}

/* Hide on mobile */
@media (max-width: 768px) {
  .tour-overlay {
    opacity: 1; /* Always visible on mobile */
    background: rgba(14, 165, 233, 0.3); /* Lighter overlay */
  }

  .tour-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }
}

/* Intro Logo Section - Bigger and with background */
.intro-section {
  height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(12, 74, 110, 0.7),
      rgba(14, 165, 233, 0.5)
    ),
    url("public/images/background2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(251, 191, 36, 0.1),
    rgba(6, 182, 212, 0.1)
  );
  animation: shimmer 3s ease-in-out infinite;
}

.intro-content {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInScale 2s ease-out;
  position: relative;
  z-index: 2;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.logo-circle-container {
  position: relative;
  width: 80vmin; /* 80% of the smaller viewport dimension */
  height: 80vmin;
  max-width: 600px;
  max-height: 600px;
  min-width: 300px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: red;
}

.intro-logo {
  width: 35vmin; /* 35% of the smaller viewport dimension */
  height: 35vmin;
  max-width: 600px;
  max-height: 600px;
  min-width: 120px;
  min-height: 120px;
  border-radius: 50%;
  object-fit: contain;
  z-index: 2;
  position: relative;
  animation: logoFloat 3s ease-in-out infinite;
  box-shadow: 0 0 50px rgba(251, 191, 36, 0.6);
  border: 4px solid rgba(255, 255, 255, 0.3);
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.6);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 0 80px rgba(251, 191, 36, 0.8);
  }
}

.circular-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotate 25s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.circular-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.circular-text-element {
  font-size: clamp(12px, 2.5vmin, 13px);
  font-weight: 700;
  fill: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  text-align: center;
  color: white;
  animation: bounce 2s infinite;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-indicator span {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.arrow-down {
  font-size: 2rem;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(15px);
    opacity: 0.7;
  }
}

/* Animation when scrolling */
.intro-section.scrolled .logo-circle-container {
  animation: moveToNav 1s ease-out forwards;
}

@keyframes moveToNav {
  to {
    transform: scale(0.15) translateX(-300vw) translateY(-45vh);
    opacity: 0;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .intro-section {
    background-attachment: scroll;
  }

  .logo-circle-container {
    width: 85vmin;
    height: 85vmin;
  }

  .intro-logo {
    width: 40vmin;
    height: 40vmin;
  }

  .circular-text-element {
    font-size: clamp(14px, 2vmin, 18px);
    letter-spacing: 2px;
  }

  .scroll-indicator {
    bottom: 2rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .circular-text-element {
    font-size: clamp(12px, 1.8vmin, 16px);
    letter-spacing: 1px;
  }
}
