@charset "utf-8";
/* CSS Document */

/* Global Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #1c1c1c; /* Black background */
  color: white;
  margin: 0;
  padding: 0;
}

.hero img {
  width: 100%;
  height: auto;
}

/* ------------------------------- Navbar -------------------------------- */
.navbar {
    display: flex;
    justify-content: flex-start;
    background-color: #333;
    padding: 8px 0; /* Reduce top and bottom padding */
    height: auto; /* Let it size naturally */
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    line-height: 1.2; /* Reduce spacing inside links */	
    font-size: 18px;
}

.navbar a:hover {
    background-color: #555;
    border-radius: 5px;
}

.color-bar {
  height: 10px;
}

.purple-bar {
  background-color: #800080;
}

.gold-bar {
  background-color: #f1c40f;
}


/* -------------------- 🚀 About & Contact Side-by-Side Layout 🚀 -------------------- */
.about-contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1100px;
    margin: 60px auto;
}

/* About Section (Left Side) */
.about-container {
    flex: 1;
    background-color: rgba(50, 50, 50, 0.9);
    border: 5px solid #f1c40f;
    padding: 20px;
    border-radius: 10px;
}

/* Contact Section (Right Side) */
.contact-container {
    flex: 1;
    background-color: rgba(50, 50, 50, 0.9);
    border: 5px solid #f1c40f;
    padding: 20px;
    border-radius: 10px;
}

/* Headings */
.about-container h2, .contact-container h2 {
    font-size: 32px;
    color: #f1c40f;
    text-align: center;
}

/* Text Styling */
.about-container p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 auto 20px;
    text-align: justify;
}

/* Contact Form */
.contact-form label {
    display: block;
    margin-top: 10px;
    color: white;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #800080;
    border-radius: 5px;
    background-color: #1c1c1c;
    color: white;
}

/* Submit Button */
.contact-form input[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #f1c40f;
    border: none;
    border-radius: 5px;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

.contact-form input[type="submit"]:hover {
    background-color: #800080;
    color: white;
}

/* Additional Contact Section */
.social-links {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(80, 80, 80, 0.8);
    border-radius: 8px;
    text-align: left;
}

/* Social Links Image Styling */
.social-links img {
    display: block;
    max-width: 220px; /* Adjust as needed */
    height: auto;
    margin: 0 auto 15px; /* Centers image & adds bottom spacing */
    border-radius: 10px; /* Optional: Adds rounded corners */
    border: 3px solid #f1c40f; /* Gold border to match theme */
}

/* reCAPTCHA Box Styling */
.g-recaptcha {
  margin: 15px 0; /* Adds spacing above and below reCAPTCHA */
  transform: scale(0.9); /* Slightly reduce the size of the reCAPTCHA */
  transform-origin: 0 0; /* Align scaling to the top-left */
}

/* -------------------- 🎯 Responsive Design 🎯 -------------------- */
@media (max-width: 768px) {
    .about-contact-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .about-container,
    .contact-container {
        width: 100%;
    }
}

/* ------------------------ STARBURST ----------------------------------*/
#starburst {
  position: fixed; /* Keep it in place */
  top: 55px; /* Adjust this to align inside the banner */
  right: 15px; /* Adjust horizontal placement if needed */
  width: 80px; /* Keep consistent size */
  height: auto;
  z-index: 9999 !important; /* Ensure it's always on top */  
  transition: transform 0.1s linear; /* Smooth rotation */
  animation: glowPulse 1.5s infinite alternate; /* Add pulse effect */
}

@keyframes rotateStar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0px 0px 8px gold); }
  50% { filter: drop-shadow(0px 0px 14px gold); } 
}

/* Shrink the starburst on smaller screens */
@media (max-width: 768px) {  
  #starburst {
    width: 65px;
    height: auto;
    will-change: transform; /* Optimize for smoother performance */
    z-index: 9999 !important; /* Ensure it stays on top even on mobile */	
  }

  #starburst-container {
    top: 165px; /* Adjust position slightly if needed */
    right: 15px;
  }  
}