/* General Styles */

body {
  background-color: #16051f;
  margin: 0;
  padding: 0; /* Ensure no default padding */
  min-height: 100vh; /* Ensure body fills the viewport height */
}

/* Center Column Container */

.container {
   background: #360050; /* Fallback color */
  background: -webkit-linear-gradient(bottom, #16051f 0%, #360050 50%);
  background: -o-linear-gradient(bottom, #16051f 0%, #360050 50%);
  background: -moz-linear-gradient(bottom, #16051f 0%, #360050 50%);
  background: linear-gradient(to top, #16051f 0%, #360050 50%);
  /* Other existing styles */
  max-width: 100%;
  margin: 0 auto;
  padding-top: 71px;
  min-height: calc(100vh - 71px);
  display: flex;
  flex-direction: column;
  font-family: anisette-petite, sans-serif;
}

@font-face {
  font-family: 'Roselia';
  src: url('../fonts/Roselia-Regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/Roselia-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/Roselia-Regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/Roselia-Regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/Roselia-Regular.ttf') format('truetype'); /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal;
}


/* Language Toggle Button */
.language-toggle {
  position: fixed;
  top: 7px; /* Adjust to align with your layout */
  right: 20px; /* Keep it in the top-right corner */
  z-index: 1000; /* Ensure it appears above other elements */
}

.language-toggle img {
  width: 250px; /* Default size for larger screens */
  height: auto; /* Maintain aspect ratio */
  cursor: pointer; /* Indicate interactivity */
  opacity: 1; /* Lower opacity by default */
  filter: saturate(1); /* Reduce saturation by default */
  transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth hover effects */
}

.language-toggle img:hover {
  transform: scale(1.1); /* Slight enlargement on hover */
  opacity: 0.8; /* Slight transparency on hover */
}

/*End Language Toggle Button*/

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .language-toggle img {
    width: 200px; /* Smaller size for tablets and small screens */
  }
    .language-toggle {
    top: 13px; /* Adjust position to align better on small devices */
    right: 0px; /* Slightly closer to the right edge */
  }
}

@media (max-width: 480px) {
  .language-toggle img {
    width: 200px; /* Even smaller size for very small screens like iPhone SE */
  }
  .language-toggle {
    top: 13px; /* Adjust position to align better on small devices */
    right: 0px; /* Slightly closer to the right edge */
  }
}

/* Language Toggle Button */


/* Hero Section Styles */

.hero {
  flex: 1; /* Allows the hero section to grow and fill available space */
  text-align: left;
  padding: 20px;
}

.hero img {
  width: 100%;
  height: auto;
}

.hero h1 {
  color: #ffffff;
  font-size: 36px;
  margin-top: 20px;
}

.hero p {
  color: #dddddd;
  font-size: 18px;
  margin: 10px 0 20px;
}

a {
  color: #dddddd;
}

a:hover {
  color: #ff3fda; /* Hover effect */
  text-decoration: underline; /* Add underline on hover */
}

.cta-button {
  display: inline-block;
  background-color: #ff6f61;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #e65c50;
}

/* Navigation Bar Styles */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #100018;
  position: fixed;
  top: 0;
  width: 100%;
  height: 71px; /* Set a fixed height for consistency */
  padding: 10px 15px;
  box-sizing: border-box;
  z-index: 1000;
}

.left-section {
  display: flex;
  align-items: center;
}

.menu {
  cursor: pointer;
  padding: 5px;
  margin-right: 10px;
}

.bar1, .bar2, .bar3 { 
  width: 30px;
  height: 5px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}

.title {
  font-family: 'Roselia', sans-serif;
  font-weight: 400;
  font-size: 50px;
  color: white;
  margin: 0;
  padding-top: 4px;
}

.pageNumber {
  font-family: mr-eaves-xl-modern, sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: white;
}

/* End Navigation Bar Styles */


/* Menu Animation */

.change .bar1 {
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: rotate(45deg) translate(-8px, -8px);
}

/* End menu Animation */

/* Menu Dropdown */

.pageNumberText {
  position: relative;
}

.dropdown-content {
  display: none;
  position: fixed;
  top: 71px; /* Adjusted to match navbar height */
  left: 0;
  background-color: #100018;
  min-width: 160px;
  overflow: auto;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.dropdown-content.show {
  display: block;
  opacity: 1;
}

.dropdown-content a {
  color: white;
  text-decoration: none;
}

.menuText {
  padding: 12px 16px;
  font-family: mr-eaves-xl-modern, sans-serif;
  font-weight: 400;
  font-size: 23px;
}

.pageNumberText a:hover {
  background-color: #272727;
}


/* End menu Dropdown */


/* Additional Responsive Adjustments */

@media (min-width: 768px) {
  .container {
    max-width: 700px; /* Adjust this width as needed */
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 20px;
  }

  .cta-button {
    font-size: 20px;
  }
}

/* End additional Responsive Adjustments */


/* Social Media Icons */
.social-icons {
  position: fixed;
  top: 20px; /* Adjust to align with your layout */
  right: 20px; /* Keep them on the top-right corner */
  display: flex;
  gap: 20px; /* Add spacing between the icons */
  z-index: 1000; /* Keep icons above other elements */
}

.social-icons img {
  width: 24px; /* Icon size */
  height: 24px; /* Maintain aspect ratio */
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth hover effects */
}

.social-icons img:hover {
  transform: scale(1.2); /* Slight enlargement on hover */
  opacity: 0.8; /* Slight transparency on hover */
}

/* Adjust icon size for larger screens */
@media (min-width: 768px) {
  .social-icons img {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 1024px) {
  .social-icons img {
    width: 32px;
    height: 32px;
  }
}


/* Footer Styles */

.footer {
  position: fixed;
  bottom: 10px;
  right: 15px;
  font-family: anisette-petite, sans-serif; /* Match the font */
  font-size: 14px;
  color: #ffffff;
  opacity: 0.7;
  z-index: 1000; /* Ensure it appears above other elements */
}

@media (max-width: 600px) {
  .footer {
    font-size: 12px;
    right: 10px;
    bottom: 5px;
  }
}