
/* styles.css */

/* Global Reset */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background-color: whitesmoke;
  background-size: cover;
   
 /* background-image: url('Background.jpg');*/
  
}

/* Background for the particles */
#tsparticles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* above container background but below content */
  pointer-events: none; /* so particles don’t block clicks */
}

/* Container for content */
.container {
  position: relative; /* so children absolute position relative to it */
  padding: 50px;
  background-image: url('Background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0; /* lower than particles */
  overflow: hidden; /* prevent particles from overflowing */
}

.container > .content {
  position: relative;
  z-index: 10; /* above particles */
  text-align: center;
  
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 10px 30px;
  position: relative;
  height: 80px;
  z-index: 30;
  
}

.logo {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.nav-spacer {
  width: 100px; /* Match approx logo width */
}

nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: black;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #00d1ff;
}

.welcome {
  padding-top: 2%;
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bio {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon{
  padding-top: 5px;
  font-size: 100px;
  color: red;
  border-color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  
}


/*footer*/

.site-footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 40; 
}

.footer-container {
  padding-top: 500px;
  max-width: 1200px;
  margin: auto;
  padding: 20px 20px;
}

.site-footer p {
  margin: 10px 0;
  font-size: 16px;
}

.social-links {
  margin: 15px 0;
  z-index: 500;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
}

.social-links img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* Makes icons white */
  transition: transform 0.2s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}

.contact-info {
  font-size: 14px;
  opacity: 0.8;
}


@media (max-width: 500px) {
  .logo {
    display: none;
  }
}

/*
Contact Page 
*/

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
}

.contact-form,
.map-section {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form .contact-heading {
  margin-bottom: 5px;
color: black;
font-size: 40px;

}
.contact-form p {
  color: black;
  font-size: small;
  justify-content: left;
  margin-bottom: 25px;
}

.contact-form input, .contact-form textarea, .contact-form button {
  padding: 10px;
  font-size: 1rem;
  border-radius: 10px;
}

.output {
  margin-top: 20px;
  padding: 10px;
  background: #f0f0f0;
  border-radius: 5px;
}

.info-box {
  display: flex;
  align-items: center;
}
.info-box .icon {
  font-size: 20px;
  margin-right: 10px;
}
.map-section iframe {
  width: 100%;
  height: 400px;
  min-height: 400px;
  border: none;
}

/*Reomve background image for contact page*/

/* Background for pages that are NOT the contact page */
body:not(.contact-page) {
  
  background-size: cover;      /* Ensures it always fills screen */
  background-position: center; /* Centers image */
  background-repeat: no-repeat;/* Prevents tiling */
  background-attachment: fixed;/* Makes it stay in place when scrolling (optional) */
         /* Ensures it fills full viewport height */
}

@media (max-width: 500px) {
  body:not(.contact-page) {
    background-attachment: scroll;
  }
}