@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
.copyright {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  color: #888;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}
body,
html {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #faf3e0; /* Soft warm background */
  color: #222;
  overflow-x: hidden; /* Stops unwanted scrolling */
  width: 100%;
  font-family: "Pacifico", cursive;
  font-weight: 200;
  font-style: normal;
}
h1,
h2 {
  font-weight: 400; /* Less intense boldness */
}
h1,
h2 {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
#Radi {
  font-weight: 400;
}
.description {
  font-family: "Poppins", sans-serif; /* Adds a sleek contrast */
}
button {
  background: rgba(0, 0, 0, 0.8); /* Slight transparency */
  color: white;
}
.image-gallery img {
  filter: brightness(90%) contrast(95%);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: white;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}

.auth {
  display: flex;
  align-items: center;
  gap: 15px;

  a {
    text-decoration: none;
    color: black;
  }
}

.register-btn {
  background-color: black;
  color: white;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: white;
}

.sub-heading {
  font-size: 14px;
  color: gray;
  width: 300px;
  height: 40px;
  gap: 10px;
  border: 1px solid gray;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto; /* Centers the box horizontally */
}

#pic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  object-fit: cover;
}
h1 {
  font-size: 36px;
  font-weight: bold;
  margin: 10px 0;
}

.description {
  font-size: 16px;
  color: #333;
}

.cta-btn {
  background: linear-gradient(to right, black, rgba(143, 141, 141, 0.642));
  color: white;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  border-radius: 20px;
}

.note {
  font-size: 12px;
  color: orange;
  margin-top: 10px;
}

.partners {
  width: 600px; /* Set small box width */
  height: 50px; /* Adjust height as needed */
  overflow: hidden; /* Hide overflow */
  background: white;
  padding: 10px 0;
  display: flex;
  align-items: center;
  position: relative;
  left: 30%;
}

.partners .scrolling-content {
  opacity: 0.6;
}
.scrolling-content {
  display: flex;
  gap: 30px;
  min-width: 100%;
  white-space: nowrap; /* Keep text in one line */
}

.image-gallery {
  /* display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: white;
  overflow: hidden; */
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  margin: auto;
  background: white;
  /* overflow: hidden; Ensures no extra scrolling */
  width: 100vw; /* Prevents exceeding viewport width */
}

.image-gallery img {
  width: 35%;
  height: auto;
  border-radius: 10px;
}
.image-gallery img:nth-child(1),
.image-gallery img:nth-child(3),
.image-gallery img:nth-child(6) {
  width: 400px !important;
  height: 200px;
}
.image-gallery img:nth-child(2),
.image-gallery img:nth-child(4),
.image-gallery img:nth-child(5) {
  max-width: 200px !important;
  height: auto;
}
main {
  background-color: white;
}

/* Section Wrapper */
.summer-section {
  padding: 50px;
  text-align: center;
}

/* Text Container */
.text-container h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.text-container p {
  font-size: 1.2rem;
  color: #666;
}

.text-container .highlight {
  font-weight: bold;
  color: #333;
  text-decoration: underline;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}
.content-wrapper img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Left Content */
.left-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Cards */
.card {
  width: 250px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 15px;
  text-align: left;
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Move down slightly */
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.card p {
  font-size: 0.9rem;
  color: #666;
}

.avatars {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  position: relative;
  bottom: 20px;
  left: 20px;
}

.avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  /* Optional: Add border for visibility */
  margin-left: -15px; /* Creates overlap effect */
}

/* Remove hover zoom for all images */
.avatars img:hover {
  transform: none;
}

/* Only zoom the second image on hover (change nth-child for a different image) */

.avatars img:nth-child(3):hover {
  transform: scale(1.1);
  z-index: 2;
}

/* View All Button */
.view-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.7s ease-in-out;
}

.circle:hover {
  transform: rotate(45deg);
}

.view-all p {
  margin-top: 5px;
  font-size: 1rem;
  color: #333;
}

/* Right Content */
.right-content {
  position: relative;
}

.right-content img {
  width: 450px;
  height: 400px;
  border-radius: 12px;
  object-fit: cover;
}

.virtual-tour {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.3s ease-in-out;
}

.virtual-tour:hover {
  background: #444;
}
.highlight {
  opacity: 0.5;
  text-decoration: none;
}

/* Testimonial Section */
.testimonial-section {
  padding: 40px;
  max-width: 600px;
  margin: auto;
  text-align: center;
  font-size: 1.1rem;
  img {
    object-fit: cover;
  }
}

.faded-text {
  color: gray;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.author-info h4 {
  margin: 0;
  font-size: 1rem;
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: gray;
}

.dots-indicator {
  margin-top: 10px;
  color: gray;
  opacity: 0.8;
  span {
    opacity: 1;
    color: black;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 60px 20px;
}

.hero-title {
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  left: 10%;
}

/* Floating Images */
.floating-images {
  position: relative;
  display: flex;
  justify-content: center;
}

.floating-img {
  position: absolute;
  width: 180px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.img-left {
  top: -30px;
  left: 15%;
  transform: rotate(-5deg);
  z-index: 1;
}

.img-right {
  top: -350px;
  right: 10%;
  transform: rotate(-30deg);
  z-index: 1;
}

/* Footer Section */
.footer-section {
  padding: 40px;
  background: #f9f9f9;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.footer-description {
  max-width: 500px;
  margin: auto;
  font-size: 0.9rem;
  color: gray;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 1.5rem;
  margin-top: 15px;
}

.coffee-support {
  margin-top: 15px;
  margin-left: 80%;
  font-weight: bold;
  cursor: pointer;
}
/* Main Container */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
}

/* Left Text Section */
.text-section {
  width: 40%;
}

.text-section h2 {
  font-size: 2rem;
  color: black;
}

.highlight {
  color: #a0a0a0;
}

.description {
  font-size: 1rem;
  color: #666;
}

.cta-button {
  background: black;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

.cta-button:hover {
  background: #333;
}

.arrow {
  font-size: 1.2rem;
}

/* Right Section */
.image-galleryy {
  width: 55%;
}

/* Black Background Box */
.black-box {
  background: black;
  padding: 20px;
  border-radius: 20px;
  position: relative;
}

/* Progress Bar */
.progress-bar {
  display: flex;
  align-items: center;
  gap: 5px;
}

.progress-dot {
  width: 8px;
  height: 8px;
  background: green;
  border-radius: 50%;
}

.progress-line {
  width: 50px;
  height: 2px;
  background: green;
}

/* Event Info */
.event-info {
  margin-top: 10px;
}

.avatars {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}

.avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.event-date {
  font-size: 0.8rem;
  color: gray;
}

.event-title {
  font-size: 1.2rem;
  color: black;
}

/* Image Slides */
.image-slides {
  display: flex;
  gap: 10px;
  margin-top: 80px;
  padding: 10px;
  position: relative;
  overflow: visible; /* Ensure content outside is visible */
}

.image-slides img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  /* margin-left: 30%; */
  transition: transform 0.3s ease-in-out;
}

/* Event Count */
.event-count {
  color: white;
  margin-top: 10px;
  text-align: center;
  font-size: 0.9rem;
}
/* Default Styles */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.social-icons {
  span {
    font-size: 1rem;
  }
}
/* 📱 Smartphones: Single Column Layout */
@media (max-width: 767px) {
  .container {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .text-section,
  .image-galleryy {
    width: 100%;
  }

  .cta-button {
    justify-content: center;
    width: 100%;
  }

  .image-slides {
    flex-direction: column;
    align-items: center;
  }

  .image-gallery {
    flex-direction: column;
    align-items: center;
  }

  .floating-images {
    flex-direction: column;
    align-items: center;
  }

  .img-left,
  .img-right {
    position: static;
    transform: none;
    width: 80%;
  }

  .partners {
    width: 100%;
    left: 0;
    text-align: center;
    overflow-x: auto;
  }
  .hero-title {
    position: relative;
    left: 25px;
    font-size: 3rem;
  }
  .cta-button {
    position: relative;
    top: -10px;
    width: 50%;
    margin: auto;
  }
  .left-content {
    flex-direction: column;
  }
  .card {
    width: 300px;
    object-fit: cover;
  }
  .right-content img {
    margin-left: -30px;
    width: 400px;
    position: relative;
    top: 20px;
  }
  .image-gallery img:nth-child(1),
  .image-gallery img:nth-child(3),
  .image-gallery img:nth-child(5) {
    width: 90%;
    object-fit: cover;
    height: 200px;
    margin-left: -40px;
  }
  .image-gallery img:nth-child(2),
  .image-gallery img:nth-child(4),
  .image-gallery img:nth-child(6) {
    width: 90%;
    object-fit: cover;
    height: 300px;
    margin-left: -40px;
  }
  .coffee-support {
    margin-left: -40px;
  }
  .hamburger {
    display: block; /* Ensure it's visible */
  }

  nav {
    display: none; /* Hide the menu by default */
  }

  .nav-menu {
    display: block;
    flex-direction: column;
    position: absolute;
    top: 60px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    background: white;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.show {
    display: flex; /* Show menu when toggled */
  }
  .avatars {
    position: relative;
    bottom: 30px;
    left: 20px;
  }
}

/* 📲 Tablets: Adjust to Column Layout */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .text-section,
  .image-galleryy {
    width: 90%;
  }

  .image-gallery {
    flex-direction: row;
    align-items: center;
  }

  .floating-images {
    flex-direction: column;
    align-items: center;
  }

  .img-left,
  .img-right {
    position: static;
    transform: none;
    width: 60%;
  }

  .partners {
    width: 80%;
    left: 10%;
    text-align: center;
  }
  .right-content img {
    width: 450px;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
    position: relative;
    left: 20%;
  }
  .cta-button {
    position: relative;
    top: -10px;
  }
}
