/* General Styles */
body {
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #7d4d99, #cba9f5);
  color: #e0e0e0;
  position: relative;
}

html,
body {
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
}

.container {
  background: rgba(0, 0, 0, 0.8);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 2rem auto;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center content horizontally */
}

/* Header Styles */
header {
  text-align: center;
  /* Center header text */
  margin-bottom: 2rem;
}

header h1 {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #b0b0b0;
  margin: 0.5rem 0;
}

#location-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.location-icon {
  width: 20px;
  /* Adjust the width as needed */
  height: 20px;
  /* Adjust the height as needed */
  margin-right: 10px;
  /* Space between the icon and text */
}

#location {
  font-size: 1.2rem;
  color: #b0b0b0;
  text-align: center;
  /* Center location text */
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.button {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #5d39b2;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #2b2b8a;
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
  /* Center list items */
}

nav ul li {
  display: inline-block;
  /* Change to inline-block for centering */
  margin: 0 10px;
}

nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Profile Image Styles */
.profile-image {
  display: block;
  margin: 0 auto 1rem;
  /* Center profile image */
  border-radius: 50%;
  width: 150px;
  /* Adjust the width as needed */
  height: 150px;
  /* Adjust the height as needed */
  object-fit: cover;
  background: transparent;
  /* Make background transparent */
}

/* Section Styles */
section {
  margin-bottom: 2rem;
  width: 100%;
  /* Ensure sections take full width */
}

section h2 {
  font-family: 'Montserrat', sans-serif;
  margin-top: 0;
  text-align: left;
  /* Align h2 elements to the left */
  padding-left: 20px;
  /* Add padding to align with other content */
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 1rem 0;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.footer-icon {
  width: 30px;
  height: 30px;
}

/* Footer Styles */
tag {
  text-align: center;
  padding: 1rem 0;
}

.tag-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.tag-icon {
  width: 20px;
  height: 20px;
}

/* Pulsing Circle Background */
.pulsing-circle {
  position: fixed;
  /* Use fixed positioning to keep it centered on the screen */
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulse 2s infinite;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.pulsing-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 4s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes ripple {
  0% {
    width: 300px;
    height: 300px;
    opacity: 0.4;
  }

  100% {
    width: 2000px;
    height: 2000px;
    opacity: 0;
  }
}

/* Additional Styles for New Elements */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.intro {
  text-align: center;
  /* Center intro text */
}

.moveUpAni {
  animation: moveUp 1s ease-in-out;
}

@keyframes moveUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-5xl {
  font-size: 3rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-gray-400 {
  color: #b0b0b0;
}

.rounded {
  border-radius: 0.375rem;
}

.w-full {
  width: 100%;
}

.w-40 {
  width: 10rem;
}

.pt-4 {
  padding-top: 1rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.h-7 {
  height: 1.75rem;
}

.w-7 {
  width: 1.75rem;
}

.h-6 {
  height: 1.5rem;
}

.w-6 {
  width: 1.5rem;
}

.border {
  border-width: 1px;
}

.bg-transparent {
  background-color: transparent;
}

.text-fafafa {
  color: #fafafa;
}

.rounded-7px {
  border-radius: 7px;
}

.hover-border-fafafa:hover {
  border-color: #fafafa;
}

.pt-2 {
  padding-top: 0.5rem;
}

.cursor-pointer {
  cursor: pointer;
}

.mt-10 {
  margin-top: 2.5rem;
}

.relative {
  position: relative;
}

.inline-flex {
  display: inline-flex;
}

.h-10 {
  height: 2.5rem;
}

.min-w-36 {
  min-width: 9rem;
}

.overflow-hidden {
  overflow: hidden;
}

.padding-1px {
  padding: 1px;
}

.ml-neg-1px {
  margin-left: -1px;
}

.focus\:outline-none:focus {
  outline: none;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}

.focus\:ring-slate-400:focus {
  box-shadow: 0 0 0 2px #94a3b8;
}

.focus\:ring-offset-2:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5), 0 0 0 2px #94a3b8;
}

.focus\:ring-offset-slate-50:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5), 0 0 0 2px #f8fafc;
}

.animate-\[spin_2s_linear_infinite\] {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.bg-slate-950 {
  background-color: #0f172a;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.text-sm {
  font-size: 0.875rem;
}

.font-medium {
  font-weight: 500;
}

.text-white {
  color: #ffffff;
}

.backdrop-blur-3xl {
  backdrop-filter: blur(64px);
}

/* Fade effect */
.fade {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade.show {
  opacity: 1;
}

/* Aligning the profile image to the left */
.profile-image {
  display: block;
  flex-shrink: 0;
  margin: 0 auto 1rem;
  height: calc(150px + 6vw);
  width: calc(150px + 6vw);
  border: calc(8px + 0.2vw) solid transparent;
  background-origin: border-box;
  background-clip: content-box, border-box;
  background-size: cover;
  box-sizing: border-box;
  box-shadow: 0 0 5px 5px rgba(82, 117, 214, 0.5);
  border-radius: 50%;
  background-image: var(--img-url), linear-gradient(to bottom right, #ff3cac, #7d4d99, #2b86c5);
}

.brothers-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.resized-composite {
  width: 85%;
  height: auto;
  max-width: 85%;
}

.navbar {
  display: flex;
  justify-content: center;
  background-color: #5d39b2;
  /* Primary color */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  border-radius: 10px;
  /* Rounded corners for the navbar */
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav-item {
  position: relative;
  margin: 0 15px;
}

.nav-link {
  display: block;
  padding: 14px 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-radius: 5px;
  /* Rounded corners for the nav links */
}

.nav-link:hover {
  background-color: #472b88;
  /* Darker shade of primary color */
}

.dropdown {
  display: none;
  position: absolute;
  background-color: #5d39b2;
  /* Primary color */
  min-width: 160px;
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  /* Rounded corners for the dropdown */
  overflow: hidden;
}

.dropdown a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown a:hover {
  background-color: #472b88;
  /* Darker shade of primary color */
}

.nav-item:hover .dropdown {
  display: block;
}

.event-image {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.event-image.enlarged {
  transform: scale(2);
  z-index: 1000;
  position: relative;
}

.event-image.enlarged {
  transform: scale(2);
  z-index: 1000;
  position: relative;
}

.brother-container {
  position: relative;
  display: inline-block;
}

.brother-image {
  width: 100%;
  height: auto;
}

.relative-container {
  position: relative;
}

.clickable-box {
  position: absolute;
  width: 57px;
  height: 75px;
  background-color: transparent;
  /* Make the background transparent */
  border: none;
  /* Remove the border */
  cursor: pointer;
  z-index: 2;
  /* Ensure the boxes are above the image */
}

.bio {
  display: none;
  position: absolute;
  top: -100px;
  /* Adjust as needed to position above the image */
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 3;
  /* Ensure the bio pop-up is above the boxes */
}

/* Email JS */
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

#contact-form label {
  font-weight: bold;
}

#contact-form input,
#contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

#contact-form button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007BFF;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

#contact-form button:hover {
  background-color: #0056b3;
}

.carousel {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}