html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  color: #f5f5f5;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  /* Hide scroll bar for all browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.navbar {
  width: 100%;
  background: rgba(10, 10, 10, 0.98);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.5);
  animation: fadeInDown 1.2s;
  box-sizing: border-box;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5f5f5;
  letter-spacing: 2px;
  transition: color 0.3s;
  font-family: 'Courier New', Courier, monospace;
  text-shadow: 0 2px 8px #000a;
}
.navbar .logo:hover {
  color: #bdbdbd;
}
.hero {
  position: relative; /* Enables positioning of subtitle */
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 40px;
  background: linear-gradient(120deg, #111 60%, #222 100%);
  animation: fadeIn 1.5s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-title {
  font-size: 5rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1.2s 0.2s forwards;
  font-family: 'Special Elite', cursive;
  text-shadow: 0 2px 8px #000a;
}

.hero-subtitle {  
  position: absolute;
  top: 72%; /* Adjust vertically as needed */
  right: 150px;
  color: #15a4e1;
  font-size: 2rem;
  font-family: 'Bradley Hand ITC', cursive;
  animation: fadeInUp 1.2s 0.4s forwards;
  white-space: nowrap;
}


@media (max-width: 600px) {
  .navbar,
  .hero,
  .contact-section,
  .footer {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 6px;
  }
  .navbar .logo {
    font-size: 1rem;
    margin-bottom: 8px;
    margin-left: 0;
    text-align: left;
    width: 100%;
  }
  .hero-title {
    font-size: 1.1rem;
    letter-spacing: 0.01px;
    white-space: nowrap;
    text-align: right;
    padding-right: 20px;
    width: 100%;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    right: 10px;
    top: 75%;
    white-space: nowrap;
    position: absolute;
    top: 60%;
  }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.contact-section {
  max-width: 900px;
  margin: 0 auto 60px auto;
  padding: 40px 30px;
  background: rgba(30, 30, 30, 0.95);
  border-radius: 20px;
  box-shadow: 0 2px 8px #0003;
  text-align: center;
  color: #e0e0e0;
  font-size: 1.8rem;
  animation: fadeIn 2s 1.2s backwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.contact-section strong {
  color: #bdbdbd;
}
.contact-section a {
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-section a:hover {
  color: #f5f5f5;
  text-decoration: underline;
}
.footer {
  width: 100%;
  background: #181818;
  color: #888;
  font-size: 1rem;
  letter-spacing: 1px;
  text-align: center;
  padding: 30px 10px 18px 10px;
  opacity: 0.8;
  border-top: 1px solid #222;
  position: relative;
  bottom: 0;
  left: 0;
  animation: fadeIn 2s 1.5s backwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.social-icon {
  color: #888;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.social-icon:hover {
  color: #15a4e1;
  transform: translateY(-3px);
}
.nurturing-text {
  font-family: 'Bradley Hand ITC', cursive;
  font-size: 1.2em;
  color: #008393;
  font-weight: bold;
}
/* Responsive styles for used classes */
@media (max-width: 900px) {
  .navbar {
    padding: 14px 16px;
  }
  .navbar .logo {
    font-size: 1.1rem;
  }
  .hero-subtitle {
    text-align: center;
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .navbar img {
    height: 48px !important;
    margin-right: 0 !important;
    margin-bottom: 4px;
    display: block;
  }
  .navbar .logo {
    font-size: 1.1rem;
    margin-bottom: 8px;
    margin-left: 0;
    text-align: left;
    width: 100%;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    margin-left: 0;
    text-align: center;
    font-size: 1.1rem;
  }
  .contact-section {
    padding: 16px 2px;
    font-size: 1rem;
  }
  .footer {
    font-size: 0.9rem;
    padding: 18px 2px 10px 2px;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.hero-img {
  max-width: 95vw;
  width: 2000px;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-top: 90px;
  border-radius: 20px;
  box-shadow: 0 2px 8px #0003;
  border: 1px solid #0003;
  padding: 10px;
  background-color: #0003;
  opacity: 0.8; 
  transition: all 0.3s ease;
}
.hero-img:hover {
  box-shadow: 0 4px 16px #0005;
  opacity: 1;
  border: 1px solid #0005;
  padding: 10px;
  background-color: #0003;
}

.contact-img {
  max-width: 90%;
  height: auto;
  transition: all 0.3s ease;
}


.contact-content {
  width: 100%;
}
