/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Special+Gothic+Expanded+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle, rgba(10,10,10,1) 40%, rgba(5,5,5,1) 100%);
}

/* Navbar */
nav {
  background-color: #000;
}

.navbar {
  width: 100%;
  max-width: 1110px;
  height: 90px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* Logo Section */
.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
  margin-right: 10px;
}

/* Default: Show Full Name */
.large-screen-text {
  display: block;
  font-size: 2.6 vh;
  color: #fff;
  font-weight: 700; /* Semi-bold */
  font-family: 'Montserrat', sans-serif;
}

.small-screen-text {
  display: none;
  font-size: 3vh;
  color: #fff;
  font-weight: bolder;
}

/* Navigation Links */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

nav ul li {
  position: relative;
}

/* Default Nav Link */
.pagename_nav {
  text-decoration: none;
  color: #d6d5d5;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding: 2px;
}

/* Hover Effect */
.pagename_nav:hover {
  color: #fff;
}

/* Underline Effect (used for both hover and active) */
.pagename_nav::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Hover underline */
.pagename_nav:hover::after {
  width: 100%;
}

/* Active Page Styling */
.pagename_nav.active {
  color: #fff;
  font-weight: 300;
}

/* Keep underline always visible for active link */
.pagename_nav.active::after {
  width: 100%;
}



/* Dropdown Icon */
.dropdown-icon {
  font-size: 9px;
  color: #fff;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s ease, color 0.3s ease;
}

nav ul li:hover .dropdown-icon {
  color: #e8aa56;
  transform: rotate(180deg);
}

.pagename_nav:hover .dropdown-icon {
  color: #e8aa56;
}

/* Dropdown Menu */
.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  z-index: 10;
  padding: 10px 0;
  border-radius: 10px;
  min-width: 160px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

nav ul li:hover .dropdown {
  display: block;
}

/* Dropdown Links */
.dropdown a {
  display: block;
  padding: 5px 20px;
  color: #d6d5d5;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown a:hover {
  color: #fff;
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 25px;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

/* Transform to X when active */
.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Sidebar Mobile Menu */
.menubar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: left 0.3s ease;
}

/* Active State */
.menubar.active {
  left: 0;
}

/* Menu List */
.menubar ul {
  list-style: none;
  padding: 0;
}

/* Menu Items */
.menubar ul li {
  margin-bottom: 20px;
}

.menubar ul li a {
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover Effect */
.menubar ul li a:hover {
  color: #fff;
}


/* Default: Hide Hamburger */
.hamburger {
  display: none;
}

/* Show Hamburger Only on Small Screens */
@media screen and (max-width: 1024px) {
  .hamburger {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
  }
}

/* Responsive: Show Short Name on Smaller Screens */
@media screen and (max-width: 768px) {
  .large-screen-text {
    display: none;
  }

  .small-screen-text {
    display: block;
  }

  .logo img {
    height: 80px;
  }
}

/* Responsive Design for Tablets & Small Screens */
@media screen and (max-width: 1024px) {
  .navbar {
    width: 80%;
    max-width: 1100px;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 12px;
  }

  nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: auto;
    max-height: 80px;
    min-height: 55px;
  }

  .logo .logoh1 {
    font-size: clamp(2vh, 3.5vw, 3vh);
  }
}

/* Extra Small Screens (Phones) */
@media screen and (max-width: 480px) {
  .navbar {
    width: 83%;
    padding: 0 8px;
  }

  .logo img {
    max-height: 65px;
    min-height: 50px;
  }

  .small-screen-text {
    font-size: 5vh;
  }
}

/* Mobile Sidebar Menu */
.menubar {
  position: fixed;
  top: 0;
  left: -100vw;
  width: 80vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
}

/* Active Sidebar */
.menubar.active {
  left: 0;
}

/* Sidebar Links */
.menubar ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

.menubar ul li {
  width: 100%;
  padding: 10px 0;
}

.menubar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  display: block;
  width: 100%;
  text-align: center;
  transition: color 0.3s ease;
}

.menubar ul li a:hover {
  color: #fff;
  background: rgba(255, 180, 0, 0.2);
}
/* Footer Container Styling */
.footer-container {
  background-color: #000;
  color: #d1d1d1;
  padding: 40px 20px;
  margin-top: 2rem;
  font-family: 'Orbitron', sans-serif;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  padding: 0 30px;
}

.footer-left, .footer-center, .footer-right {
  flex: 1 1 300px;
  margin: 20px;
}

.logofooter {
  height: 80px;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b0b0;
}

.footer-center h4, .footer-right h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.quick-links {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin: 8px 0;
}

.quick-links a {
  color: #d1d1d1;
  text-decoration: none;
  font-weight: bold;
}

.quick-links a:hover {
  color: #f0f0f0;
}

.footer-right p, .footer-right a {
  font-size: 0.9rem;
  color: #b0b0b0;
  text-decoration: none;
}

.footer-right a:hover {
  color: #fff;
}

.social-media {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-media img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-media img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: #999;
}

.footer-bottom .highlight {
  color: #e8aa56;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left, .footer-center, .footer-right {
    margin: 10px 0;
  }

  .social-media {
    justify-content: center;
  }
}

.title-container {
  margin: 0 auto;
  max-width: 1100px;
  margin-top: 1vh;
  margin-bottom: 1vh;
  text-align: center;
}

.titlecenter {
  font-size: 2.8rem; /* Base font size for large screens */
  color: #ffffff;
  margin: 0 auto;
  max-width: 80%;
}

.titledes {
  font-size: 13px; /* Base font size for large screens */
  color: #fff;
  width: 80%; /* Set width to 80% */
  margin: 0 auto; /* Center the description */
  margin-bottom: 10px;
}



/* Responsive design adjustments */

/* For tablets and medium screens (768px to 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .titlecenter {
    margin: 0 auto;
    font-size: 2.4rem; /* Decrease font size for tablets */
    max-width: 80%;
  }
  .titledes {
    margin: 0 auto;
    font-size: 12px; /* Slightly smaller description text for tablets */
  }
}

/* For mobile devices (480px to 767px) */
@media (max-width: 767px) and (min-width: 480px) {
  .titlecenter {
    margin: 0 auto;
    max-width: 80%;
    font-size: 3rem; /* Adjust font size for small screens */
  }
  .titledes {
    margin: 0 auto;
    font-size: 14 px; /* Smaller description text for small screens */
  }
}

/* For extra small screens (below 480px) */
@media (max-width: 479px) {
  .titlecenter {
    max-width: 80%;
    margin: 0 auto;
    font-size: 1.5rem; /* Smaller font size for very small devices */
  }
  .titledes {
    font-size: 10px; /* Further reduction for description text */
  }

  .title-container {
    margin-top: 3vh; /* Less vertical space on smaller devices */
  }
}

/* Coming Soon Section */
.coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh; /* Centering vertically */
  text-align: center;
  background-color: #1a1a1a; /* Dark background */
  color: #fff; /* White text */
}

.coming-soon-container {
  padding: 20px;
}

.coming-soon h1 {
  font-size: 4rem; /* Large heading */
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.coming-soon p {
  font-size: 1.8rem; /* Slightly larger text */
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .coming-soon h1 {
    font-size: 3rem;
  }

  .coming-soon p {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .coming-soon h1 {
    font-size: 2.5rem;
  }

  .coming-soon p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .coming-soon {
    height: 60vh; /* Reduce height for small screens */
  }

  .coming-soon h1 {
    font-size: 2rem;
  }

  .coming-soon p {
    font-size: 1rem;
  }
}
