body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Animated background dots */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s ease-in-out infinite;
  z-index: -1;
}

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

.container {
  text-align: center;
}

.logo {
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.logo-image {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
  transition: all 0.3s ease;
}

.logo-image:hover {
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.5));
  transform: scale(1.05);
}

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

.button-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.contact-button {
  display: inline-block;
  background: #FFD700;
  color: #000;
  padding: 16px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #FFD700;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.3s both;
  min-width: 120px;
  text-align: center;
}

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

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

.contact-button:hover {
  background: #000;
  color: #FFD700;
  border-color: #FFD700;
  transform: translateY(-2px);
}

.social-links {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.social-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px) scale(1.1);
}

.social-link:hover::after {
  border-color: #FFD700;
  transform: scale(1.3);
  opacity: 0;
}

.social-icon {
  width: 24px;
  height: 24px;
}

/* Hide SEO elements from visual display but keep them for search engines */
.hero-refreshments,
.hero-description,
.hero-subtitle,
.services-section,
.sr-only,
h1 {
  display: none;
}

/* Hide footer address for cleaner look */
footer p:last-child {
  display: none;
}

/* Ensure main content stays centered */
main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Keep header and footer minimal */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1rem;
  z-index: 10;
}