/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* Global Body Styles */
body {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}

/* Light Mode Body */
body.light-mode {
  background-color: #f4f4f4;
  color: #000;
}

/* Fixed Header */
.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.3s ease;
}

.header-container .logo-and-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin-bottom: 10px;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo Animation */
.animated-logo {
  width: 100%;
  max-width: 250px;
  height: auto;
  transition: transform 0.3s ease;
}

.animated-logo:hover {
  transform: scale(1.05);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.social-icon img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
  transition: all 0.3s ease;
}

.social-icon img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  animation: none;
}

/* Scroll Snap Container (Mobile Only) */
@media (max-width: 600px) {
  .scroll-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
    scroll-behavior: smooth;
    margin-top: 140px;
    margin-bottom: 60px;
    box-sizing: border-box;
  }

  .snap-section {
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    gap: 10px;
  }

  .main-content {
    margin-top: 0;
  }

  .contact-footer {
    justify-content: flex-start;
  }
}

/* Centered Image */
.centered-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-top: 0;
  overflow: visible;
}

.centered-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  animation: floatRotate 6s ease-in-out infinite;
}

/* Floating & Rotating Animation */
@keyframes floatRotate {
  0% {
    transform: translateY(0px) rotate(0deg);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
    filter: brightness(1.1);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
    filter: brightness(1);
  }
}

.centered-image img:hover {
  transform: scale(1.05) translateY(-10px) rotate(1deg);
}

/* Music Button */
.music-link {
  text-align: center;
  margin-top: 10px;
}

.music-button {
  font-weight: bold;
  color: #000;
  background-color: #333300;
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  animation: blink-button 1s infinite;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
}

@keyframes blink-button {
  0% {
    opacity: 1;
    box-shadow: 0 0 10px #333300;
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 5px #333300;
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 10px #333300;
  }
}

/* Scroll Indicator Arrow */
.scroll-indicator {
  margin-top: 20px;
  text-align: center;
  animation: pulse 2s infinite;
}

/* Down Arrow */
.arrow-down {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-right: 3px solid #ffcc00;
  border-bottom: 3px solid #ffcc00;
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

/* Make Arrow Clickable */
.arrow-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.arrow-link:hover .arrow-down {
  border-color: #ffdd33;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: rotate(45deg) translateY(0px);
  }
  50% {
    transform: rotate(45deg) translateY(8px);
  }
}

/* Pulse Glow */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Contact Section */
.contact {
  max-width: 600px;
  margin: 0 auto 30px;
  text-align: center;
  padding: 0 20px;
}

.contact h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact p {
  color: #aaa;
  margin-bottom: 20px;
}

.contact-button {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(to right, #ffcc00, #ff3366);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.contact-button:hover {
  background: linear-gradient(to right, #ffdd33, #ff6699);
  transform: scale(1.05);
}

.contact-button:active {
  transform: scale(0.98);
}

/* Add scroll margin to prevent contact section from being hidden under the header */
#contact-section {
  scroll-margin-top: 140px; /* Adjust based on header height */
}

/* Footer Contact Info (Phone Boxes) */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.footer-contact-info .phone-box,
.footer-contact-info .email-box {
  display: inline-block;
  padding: 8px 12px;
  margin: 8px 0;
  border: 1px solid #aaa;
  border-radius: 4px;
  background-color: #111;
  transition: background-color 0.3s ease;
}

.footer-contact-info .phone-box:hover,
.footer-contact-info .email-box:hover {
  background-color: #333;
}

.footer-contact-info a {
  color: #fff;
  text-decoration: none;
}

/* Shaking Phone Animation */
.shaking-phone {
  animation: shake 2s infinite;
  display: inline-block;
}

@keyframes shake {
  0% { transform: translateX(0px) rotate(0deg); }
  20% { transform: translateX(2px) rotate(2deg); }
  40% { transform: translateX(-2px) rotate(-2deg); }
  60% { transform: translateX(2px) rotate(2deg); }
  80% { transform: translateX(-2px) rotate(-2deg); }
  100% { transform: translateX(0px) rotate(0deg); }
}

/* Fixed Copyright at Bottom */
.fixed-copyright {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #222;
  z-index: 1000;
  font-size: 12px;
}

body.light-mode .fixed-copyright {
  background: #f4f4f4;
  color: #333;
  border-color: #ccc;
}
/* Fullscreen Background Video */
.background-video {
  position: fixed; /* Fixed position to cover the entire viewport */
  top: 50%; /* Center the video vertically */
  left: 50%; /* Center the video horizontally */
  min-width: 100%; /* Ensure it covers the width */
  min-height: 100%; /* Ensure it covers the height */
  width: auto; /* Maintain aspect ratio */
  height: auto; /* Maintain aspect ratio */
  z-index: -1; /* Place it behind other content */
  transform: translate(-50%, -50%); /* Center the video */
  opacity: 0.4; /* Optional: Adjust opacity for less prominence */
}

