body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: white;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
}

header {
  color: rgba(25, 25, 25, 0.85);
  padding: 5px 0;
  text-align: center;
  background: rgba(170, 137, 128, 0.67);

  /* Amplified fade effect */
  box-shadow:
    0 0 30px rgba(0, 0, 0, 0.25),
    0 0 60px rgba(0, 0, 0, 0.15),
    0 0 100px rgba(0, 0, 0, 0.1);
}

nav {
  margin-top: 1px;
}

nav a {
  color: #f3c537;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: white;
}

section {
  padding: 20px 20px;
  max-width: 900px;
  margin: 10px auto;
  background: rgba(170, 137, 128, 0.67);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

h2 {
  color: #f3c537;
  margin-top: 2px;
  margin-bottom: 2px;
}

h3 {
  color: #4d4f66;
  margin-top: 2px;
  margin-bottom: 2px;  
}

ul {
  list-style-type: disc;
  margin-left: 20px;
}

footer {
  text-align: center;
  padding: 20px;
  background: rgba(170, 137, 128, 0.67);
  color: #f3c537;
  font-size: 0.8em; /* or try 14px or 0.85em */
}

/* Profile image in About section */
.profile-image {
  float: right;
  margin-left: 20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.header-title {
  flex: 1;
}

.header-title h1 {
  margin: 0;
  line-height: 1.2;
  color: #f3c537;
  text-align: right;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
}

.header-logo {
  position: relative;
  width: 125px;
  height: 125px;
  margin-top: 10px;
  margin-bottom: 10px;  
}

.header-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #f3c537;
  object-fit: cover;
  display: block;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Curved rotating shadow overlay */
.header-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;

  background: radial-gradient(
    circle at 100% 50%,               /* Even closer to the right edge */
    rgba(0, 0, 0, 0.18) 50%,
    rgba(0, 0, 0, 0.0) 51%
  );

  mix-blend-mode: multiply;
  animation: rotateCrescent 30s linear infinite;
  pointer-events: none;
}

/* Slow full rotation of crescent */
@keyframes rotateCrescent {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.subtitle {
  display: block;
  font-style: italic;
  font-size: 0.8em; /* smaller than 0.7em */
  text-align: right;
  margin-top: 4px;
  margin-bottom: 4px;
  color: white;
}

.dropdown {
  position: relative; /* container for absolute positioning */
  display: inline-block; /* keeps it snug around the button */
}

/* Burger button */
.menu-toggle {
  background-color: rgba(170, 137, 128, 0.5);
  color: rgba(243, 197, 55, 0.8);
  border: none;
  padding: 6px 14px;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
}

/* Dropdown menu */
.menu-items {
  position: absolute;
  top: 100%; /* directly below the button */
  left: 0;   /* align to the left of the button */
  display: none;
  flex-direction: column;
  background-color: rgba(170, 137, 128, 0.67);
  border-radius: 6px;
  padding: 6px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000; /* ensure it's above other content */
  width: max-content;
  font-size: 1.2em;
}

/* Menu links */
.menu-items a {
  color: rgba(243, 197, 55, 0.8);
  text-decoration: none;
  margin: 4px 0;
  font-size: 0.5em;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hover state */
.menu-items a:hover {
  color: #f0e6e0;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  opacity: 0;
  transform: translateX(100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.slider-tracker {
  text-align: center;
  margin-top: 10px;
  font-size: 26px;           /* Increased size */
  font-weight: bold;         /* Make it bolder */
  letter-spacing: 12px;      /* Slightly wider spacing */  
  user-select: none;
}

.slider-tracker span {
  color: #ccc;
  transition: color 0.3s ease;
}

.slider-tracker span.active {
  color: #f3c537; /* your highlight color */
}

/* Optional: remove grayscale on hover */
.slide-image:hover {
  filter: grayscale(0%);
}

/* Make text and image side-by-side */
.slide-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

/* Text column */
.slide-text {
  flex: 1 1 60%;
}

/* Image column */
.slide-image {
  flex: 1 1 40%;
}

.slide-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.column {
  box-sizing: border-box;
}

/* Style for images inside .slide sections */
.slide-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 16px;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6); /* Dark halo */
}

.contact-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;         /* optional: limit total width */
  margin: 0 auto;           /* center it horizontally */
  gap: 40px;
}

.contact-left {
  flex: 1 1 60%;
  max-width: 520px;         /* adjust this if still too wide */
}

.contact-right {
  flex: 1 1 35%;
  max-width: 280px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contact-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-left, 
  .contact-right {
    flex: 1 1 100%;
    max-width: none;
  }

  .contact-right,
  .whatsapp-line {
    text-align: center;
    align-items: center;
  }
}

.qr-code {
  width: 75px;
  height: 75px;
  margin-top: 0px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

#slider-tracker span {
  cursor: pointer;
}

#slider-tracker span:hover {
  color: #5b7a9a;
  text-decoration: underline;
}
