/* Reset basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Playfair Display', serif;
  background-color: #fff;
  color: #000;
  text-align: center;
  margin: 0;
}


/* Navigation Bar */
.nav {
  position: fixed;  /* Fixed position to make it stay at the top */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 15px 30px;
  font-size: 0.9rem;
  background-color: transparent;  /* Transparent background */
  z-index: 10;  /* Ensure it stays on top */
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2vw; /* Space between navigation items */
}

.nav a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #ff6600;
}
.nav a.active {
  color: orange;
  font-weight: bold;
}
/* Hide scrollbar but still allow scrolling */
body {
  overflow: scroll; /* Ensures scrolling is still possible */
}

/* For Webkit-based browsers (Chrome, Safari, Edge) */
body::-webkit-scrollbar {
  display: none; /* Hides the scrollbar */
}


/* Header Title: GUILD OF MULTIMEDIA ARTS */
header h1 {
  margin-top: 10vh; /* Using viewport height for spacing */
  font-size: 3vh; /* Responsive font size */
  letter-spacing: 0.3rem; /* Relative spacing */
  transition: font-size 0.3s ease; /* Smooth font size transition */
  
}
.first-section {/*TITLE*/
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color:#000;
}

.logo {/*GMMA BUBBLE LETTERS*/
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5vh 0;
  position: relative;
}

.logo-letter {
  width: 15vw; /* Flexible width based on viewport */
  height: auto;
  margin-left: -10vw; /* Adjust to maintain the layout */
  position: relative;
  transform-origin: center;
  transition: transform 0.1s ease;
  will-change: transform;
}

.logo-letter:first-child {
  margin-left: 0;
}

/* Content padding */
.content {
  padding-bottom: 50vh; /* Space for scrolling */
}

.signup-button {
  background-color: #1e7fc1;
  border: none;
  border-radius: 10px;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  padding: 20px 50px;
  cursor: pointer;
  margin-top: 10px;
  letter-spacing: 0.05rem;
  align-self: center;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* 2nd page */
.background-section {
  background-image: url('/static/pictures/form\ background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fffdfd;
  padding-top: 0vh; /* Less padding at the top */
  padding-bottom: 5vh; /* Balanced bottom padding */
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align content to the top */
  margin-top: 0; /* Remove top margin */
  font-size: 1.5rem;
}

/* Adjust the white section */
.white-section {
  background-color: #ffffff;
  padding: 2rem 2rem;
  max-width: 1000px;
  margin: 0 auto 30px; /* Minimal bottom margin, no top margin */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.white-section p {
  font-size: clamp(1rem, 2.7vw, 1.25rem); /* Slightly bigger and responsive */
  color: #362525;
  line-height: 2;
}

.white-section h2 {
  color: #144a75; /* or any color visible on white */
  font-size: 4vh;
}

/*3rd section*/
.white-full-section {
  background-color: white;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15vh;
}

.content-container {
  width: 100%;
  max-width: 1000px;
}

h2 {
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-size: 2.5rem;
  font-weight: normal;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto; /* Allow dynamic height */
  min-height: 400px; /* Enough for cards */
  overflow: visible; /* Allow overflow */
}

.carousel {
  perspective: 1000px;
  width: 300px;
  height: 300px; /* Matches card height */
  position: relative;
  overflow: visible; /* Allow 3D rotation to show */
}

.carousel-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  transition: transform 1s ease;
  transform-style: preserve-3d;
}

.card.glass {
  position: absolute;
  width: 300px;
  height: 400px;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 1s ease, opacity 1s ease;
  z-index: 2; /* Ensure text is visible above other elements */
}

.card.glass h3,
.card.glass p {
  z-index: 3; /* Ensure text is visible above other elements */
  color: rgb(39, 37, 37); /* Ensures text is visible */
  margin-bottom: 2vh;
}

.card:nth-child(1) {
  transform: rotateY(0deg) translateZ(200px);
  background-color: #f39f13;
  opacity: 0.9;
}

.card:nth-child(2) {
  transform: rotateY(120deg) translateZ(200px);
  background-color: #ef5d1c;
  opacity: 0.9;

}

.card:nth-child(3) {
  transform: rotateY(240deg) translateZ(200px);
  background-color: #1082c6;
  opacity: 0.9;
}
@media (max-width: 1024px) {
  .carousel {
    width: 250px;
    height: 350px;
  }

  .card.glass {
    width: 250px;
    height: 350px;
    padding: 1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .card.glass h3 {
    font-size: 1.5rem;
  }

  .card.glass p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .carousel {
    margin-top: 15vh;
    width: 300px;
    height: 400px;
  }

  .card.glass {
    width: 300px;
    height: 400px;
    padding: 0.8rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .card.glass h3 {
    font-size: 1.25rem;
  }

  .card.glass p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .white-full-section {
    padding: 1rem;
  }

  .carousel {
    width: 180px;
    height: 280px;
  }

  .card.glass {
    width: 200px;
    height: 300px;
    padding: 0.75rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 3vh;
    margin-top: 10vh;
  }

  .card.glass h3 {
    font-size: 1rem;
  }

  .card.glass p {
    font-size: 0.7rem;
  }
}


/*sEMINARS=---------------------------*/
.seminar-title{
  font-weight: normal;
  font-size: 2.5rem;
  margin: 2rem 0;
}
.seminar-section {
  display: flex;
  width: 100%;
  height: 30vh;  /* Keep the height for the general section */
  padding: 20px;
  align-items:flex-start; /* Instead of center */;
  justify-content: space-between; /* Ensure space between carousel and description */
  padding-left: 15vh;  /* Increased padding on the left */
  padding-right: 15vh; /* Increased padding on the right */
  scroll-margin-top: 20vh;
}

/* Carousel (Left 2/3) */
.seminar-carousel-container {
  width: 60%;
  padding-left: 20px;
  overflow-x: scroll;
  display: flex;
  flex-wrap: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 35vh;
}

.seminar-carousel-container::-webkit-scrollbar {
  display: none;  /* For Chrome, Safari, and Edge */
}

.seminar-carousel {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.seminar-card {
  width: 60vh;
  height: 30vh;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.seminar-card:hover {
  transform: scale(1.05);
}

.seminar-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Description (Right 1/3) */
.seminar-description-container {
  width: 33.333%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 1rem;
}

.seminar-heading {
  font-size: 1.25rem !important;
  font-weight: bold;
  margin-bottom: 16px;
}

.seminar-paragraph {
  font-size: 1rem !important;  /* Increased font size for better readability */
  color: #151414;
  line-height: 1.7;
  font-weight: normal;
}


@media (max-width: 768px) {
  .seminar-title{
    font-weight: normal;
    font-size: 2rem;
}
  .seminar-section {
    padding-left: 3vh;  /* Reduced padding for smaller screens */
    padding-right: 10vw; /* Reduced padding for smaller screens */
    flex-direction: column; /* Stack the carousel and description */
    height: auto; /* Let height adjust based on content */
    margin-top: -10vh;
  }

  .seminar-carousel-container {
    width: 100%;
    height: 24vh;
    padding-left: 0;
    padding-left: 20px;

  }

  .seminar-card {
    width: 40vh;
    height: 20vh;
  }

  .seminar-description-container {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .seminar-heading {
    font-size: 1.3rem;  /* Slightly smaller heading for smaller screens */
  }

  .seminar-paragraph {
    font-size: 1.1rem;  /* Slightly smaller paragraph for smaller screens */
  }
}


/*second seminar*/
.highlight-section {
  display: flex;
  width: 100%;
  height: 60vh;  /* Keep the height for the general section */
  padding: 20px;
  align-items: center;
  justify-content: space-between; /* Ensure space between carousel and description */
  padding-left: 15vh;  /* Increased padding on the left */
  padding-right: 15vh; /* Increased padding on the right */
}

/* Description (Left 1/3) */
.highlight-description-container {
  width: 33.333%;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 1rem;
}

.highlight-heading {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.highlight-paragraph {
  font-size: 1rem;  /* Increased font size for better readability */
  color: #4A4A4A;
  line-height: 1.7;
}

/* Carousel (Right 2/3) */
.highlight-carousel-container {
  width: 60%;
  padding-left: 20px;
  overflow-x: scroll;
  display: flex;
  flex-wrap: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 35vh;
}

.highlight-carousel-container::-webkit-scrollbar {
  display: none;
}

.highlight-carousel {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.highlight-card {
  width: 60vh;
  height: 30vh;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-right: 10px;
}

.highlight-card:hover {
  transform: scale(1.05);
}

.highlight-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.highlight-card-content {
  padding: 10px;
  background-color: #fbdede;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight-card-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
}

/* ✅ Mobile adjustments */
@media (max-width: 768px) {
  .highlight-section {
    flex-direction: column;
    height: auto;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .highlight-description-container {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .highlight-heading {
    font-size: 1.3rem;
  }

  .highlight-paragraph {
    font-size: 1rem;
  }

  .highlight-carousel-container {
    width: 100%;
    height: 24vh;
    padding-left: 0;
  }

  .highlight-card {
    width: 40vh;
    height: 20vh;
  }
}


/*third seminar*/
.gallery-section {
  display: flex;
  width: 100%;
  height: 60vh;  /* Keep the height for the general section */
  padding: 20px;
  align-items:flex-start; /* Instead of center */
  justify-content: space-between; /* Ensure space between carousel and description */
  padding-left: 15vh;  /* Increased padding on the left */
  padding-right: 15vh; /* Increased padding on the right */
}

/* Carousel (Left 2/3) */
.gallery-carousel-container {
  width: 60%;
  padding-left: 20px;
  overflow-x: scroll;
  display: flex;
  flex-wrap: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 35vh;
}
.gallery-carousel-container::-webkit-scrollbar {
  display: none;  /* For Chrome, Safari, and Edge */
}

.gallery-carousel {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.gallery-card {
  width: 60vh;
  height: 30vh;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-right: 10px;
}

.gallery-card:hover {
  transform: scale(1.05);
}

.gallery-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card-content {
  padding: 12px;
  background-color: #fbdede;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-card-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
}

/* Description (Right 1/3) */
.gallery-description-container {
  width: 33.333%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 1rem;
}

.gallery-heading {
  font-size: 1.25rem !important;
  font-weight: bold;
  margin-bottom: 16px;
}

.gallery-paragraph {
  font-size: 1.125rem;
  color: #4A4A4A;
}

.seminar-section,
.highlight-section,
.gallery-section {
  margin-block: 4vh; /* controls space above and below equally */
}
@media (max-width: 1024px) {
  .gallery-section {
    flex-direction: column;
    height: auto;
    padding: 5vh 5vw;
  }

  .gallery-carousel-container {
    width: 100%;
    height: auto;
    padding-left: 0;
  }

  .gallery-card {
    width: 80vw;
    height: auto;
  }

  .gallery-description-container {
    width: 100%;
    padding-left: 0;
    margin-top: 2rem;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .gallery-section {
    flex-direction: column-reverse; /* Description on top */
    height: auto;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .gallery-description-container {
    width: 100%;
    padding-left: 0;
    margin-bottom: 1.5rem;
  }

  .gallery-heading {
    font-size: 1.3rem;
  }

  .gallery-paragraph {
    font-size: 1rem;
  }

  .gallery-carousel-container {
    width: 100%;
    height: 24vh;
    padding-left: 0;
  }

  .gallery-card {
    width: 40vh;
    height: 20vh;
  }
}

/*Outputs*/
* {
  box-sizing: border-box;
}

#stories-we-captured h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 35px;
  text-align: center;
  margin: 20px 0 30px 0;
  scroll-margin-top: 50vh;
  margin-top: 15vh;
}

#stories-we-captured .grid-container {
  max-width: 720px;
  margin: 0 auto 40px auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(7, 130px);
  gap: 15px;
  padding: 0 15px;
}

.block {
  background-color: #e95a1a;
  border-radius: 15px;
  opacity: 0;  /* Start hidden */
  transform: translateY(50px); /* Start from below */
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.block.animate {
  opacity: 1;
  transform: translateY(0); /* Move to normal position */
}

.block1 { grid-column: 1 / span 3; grid-row: 1 / 2; }
.block2 { grid-column: 4 / span 2; grid-row: 1 / 2; }
.block3 { grid-column: 6 / 7; grid-row: 1 / 1; }
.block4 { grid-column: 1 / span 2; grid-row: 2 / 3; }
.block5 { grid-column: 3 / span 3; grid-row: 2 / 3; }
.block6 { grid-column: 6 / 7; grid-row: 2 / 3; }
.block7 { grid-column: 1 / span 2; grid-row: 3 / 5; }
.block8 { grid-column: 3 / span 2; grid-row: 3 / 5; }
.block9 { grid-column: 5 / span 2; grid-row: 3 / 4; }
.block10 { grid-column: 5 / 6; grid-row: 4 / 5; }
.block11 { grid-column: 5 / 7; grid-row: 4 / 5; }
.block12 { grid-column: 1 / span 2; grid-row: 5 / 6; }
.block13 { grid-column: 3 / 4; grid-row: 5 / 6; }
.block14 { grid-column: 4 / 7; grid-row: 5 / 6; }
.block15 { grid-column: 1 / span 3; grid-row: 6 / 7; }   /* Wide block */
.block16 { grid-column: 4 / 5; grid-row: 6 / 7; }        /* Small block */
.block17 { grid-column: 5 / 7; grid-row: 6 / 7; }        /* Medium block */
.block18 { grid-column: 1 / 2; grid-row: 7 / 8; }        /* Tall thin block */
.block19 { grid-column: 2 / span 3; grid-row: 7 / 8; }   /* Wide block */
.block20 { grid-column: 5 / 7; grid-row: 7 / 8; }        /* Square block */

.block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/*end of outputs*/

.thoughts-color-section {
  background-color: #fefdf9;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thoughts-color-section h1 {
  font-weight: 400;
  font-size: 2.3rem;
  margin-bottom: 40px;
  color: #000;
}

/* Hide scrollbar cross-browser */
.color-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 0;
  max-width: 60vw;
  margin: 0 auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.color-row::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.color-box {
  flex-shrink: 0;
  scroll-snap-align: start;
}

.color-box img {
  width: 40vh;
  height: 50vh;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  #stories-we-captured h1{
    margin-top: 10vh;
  }
  .color-box img {
    width: 120px;
    height: 120px;
  }
  .thoughts-color-section h1 {
    font-size: 2rem;
}
}

@media (max-width: 480px) {
  #stories-we-captured h1{
    margin-top: 10vh;
  }
  .color-box img {
    width: 210px;
    height: 280px;
  }
}

.framed-moments {
  background-color: #fffffb;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 60px;
}

.framed-moments h1 {
  font-weight: 400;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.framed-moments .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-right: 7rem;
  margin-left: 7rem;
}

.framed-moments .video-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 6;
   background: #000;
}

.video-thumb {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  text-shadow: 0 0 10px black;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .framed-moments h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .framed-moments .grid {
    margin-left: 3rem;
    margin-right: 3rem;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .framed-moments h1 {
    font-size: 2.5rem;
  }

  .framed-moments .grid {
    margin-left: 2rem;
    margin-right: 2rem;
    grid-template-columns: 1fr; /* Stack vertically */
  }

  .play-button {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .framed-moments {
    padding: 30px 10px 40px;
  }

  .framed-moments h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .framed-moments .grid {
    margin-left: 1rem;
    margin-right: 1rem;
    grid-template-columns: 1fr;
  }

  .video-box {
    aspect-ratio: 16 / 9; /* More standard mobile-friendly aspect */
  }

  .play-button {
    font-size: 2rem;
  }
}


.exclusive-designs * {
  box-sizing: border-box;
}

.exclusive-designs {
  background-color: #fefefe;
  font-family: Arial, sans-serif;
  padding-bottom: 60px;
  height: 100vh;
  margin-top: 30vh;
  margin-bottom: 10vh;
  font-family: 'Playfair Display', serif;
}


.exclusive-designs h1 {
  font-weight: 400;
  font-size: 40px;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 10vh;
  margin-top: 30vh;
}

.exclusive-designs .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.top-left,
.top-right {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.item {
  text-align: center;
}

.item img {
  width: 12rem;
  height: 12rem;
  border-radius: 10px;
  object-fit: fill;
  display: block;
  margin: 0 auto 8px auto;
}

.item p {
  font-size: 1.5rem;
  margin-left: 20vh;
}

.bottom-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.bottom-row .large {
  width: 12rem;
  height: 12rem;
}

.bottom-row .item p {
  font-size: 1.25rem;
  margin: 8px 0 0;
}

@media (max-width: 1024px) {
  .exclusive-designs h1 {
    font-size: 2.5rem;
    margin-top: 20vh;
    margin-bottom: 8vh;
  }

  .item img {
    width: 10rem;
    height: 10rem;
  }

  .item p {
    font-size: 1.25rem;
    margin-left: 10vh;
  }

  .bottom-row .item p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .exclusive-designs {
    padding-bottom: 40px;
    height: auto;
    margin-top: 15vh;
    margin-bottom: 5vh;
  }

  .exclusive-designs h1 {
    font-size: 2.5rem;
    margin-top: 10vh;
    margin-bottom: 6vh;
  }

  .item img {
    width: 8rem;
    height: 8rem;
  }

  .item p {
    font-size: 1.1rem;
    margin-left: 4vh;
  }

  .bottom-row .item p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .top-row,
  .top-left,
  .top-right,
  .bottom-row {
    align-items: center;
    gap: 20px;
  }

  .item img {
    width: 7rem;
    height: 7rem;
  }

  .item p {
    font-size: 1.2rem;
    margin-left: 7.5vh;
  }

  .bottom-row .item p {
    font-size: 1.2rem;
  }

  .exclusive-designs h1 {
    font-size: 20px;
    margin-top: 8vh;
    margin-bottom: 4vh;
  }
  .exclusive-designs {
    margin-bottom: 15vh;
  }
}


/* Responsive Styles */
@media (max-width: 768px) {
  .exclusive-nav {
    justify-content: center;
    gap: 15px;
    padding: 10px 15px 0;
  }

  .exclusive-nav a {
    font-size: 14px;
  }

  .exclusive-designs h1 {
    font-size: 2.5rem;
    margin: 20px 0 30px;
  }

  .top-row {
    flex-direction: column;
    align-items: center;
  }

  .item img {
    width: 18vh;
    height: 18vh;
  }

  .bottom-row .small {
    width: 50px;
    height: 50px;
  }

  .bottom-row .large {
    width: 100px;
    height: 100px;
  }
    .bottom-row .item img.small {
    width: 12vh; /* or 50px if you prefer fixed size */
    height: 12vh;
  }

  .bottom-row .item img.large {
    width: 18vh; /* or 100px */
    height: 18vh;
  }
  .exclusive-designs {
    margin-bottom: 15vh;
  }
}

.item {
  opacity: 0;
  transform: translateY(50px); /* Starts slightly below */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* State when the item is in view */
.item.animate {
  opacity: 1;
  transform: translateY(0); /* Slide up to original position */
}

#join-our-family * {
  box-sizing: border-box;
}

#join-our-family {
  background: #ffff;
}

#join-our-family .full-background {
  min-height: 80vh;
  max-width: 900px;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f47d21 0%, #f26a2e 100%);
  padding: 40px 30px;
  border-radius: 20px;
}

#join-our-family .content-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1vh;
}

#join-our-family .container {
  flex: 1;
  color: white;
  text-align: justify;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#join-our-family h1 {
  font-weight: bold;
  font-size: 28px;
  margin: 0 0 20px 0;
  letter-spacing: 0.05em;
  text-align: center;
}

#join-our-family p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 15px 0;
  text-align: justify;
}

#join-our-family button {
  background-color: #1e7fc1;
  border: none;
  border-radius: 10px;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  padding: 20px 50px;
  cursor: pointer;
  margin-top: 10px;
  letter-spacing: 0.05rem;
  align-self: center;
  font-weight: bold;
  box-shadow: #333;
}

#join-our-family button:focus {
  outline: 2px solid #144a75;
  outline-offset: 2px;
}

#join-our-family .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

#join-our-family .image-container img {
  max-width: 100%;
  height: 50vh;
  border-radius: 15px;
  object-fit: cover;
}

/* Responsive */
/* Tablet (768px and below) */
@media (max-width: 768px) {
  #join-our-family .full-background {
    flex-direction: column;
    padding: 30px 20px;
    margin-bottom: 12vh;
    margin-right: 2vh;
    margin-left: 2vh;
  }

  #join-our-family .content-wrapper {
    flex-direction: column;
    gap: 2vh;
    margin-top: -10vh;
  }

  #join-our-family .container {
    text-align: center;
  }

  #join-our-family h1 {
    font-size: 24px;
  }

  #join-our-family p {
    font-size: 1.2rem;
    margin-left: 1.5vh;
    margin-right: 1.5vh;
  }

  #join-our-family button {
    padding: 15px 30px;
    font-size: 18px;
  }

  #join-our-family .image-container img {
    width: 100%;
    height: auto;
    max-height: 20vh;
  }
}

/* Phone (480px and below) */
@media (max-width: 480px) {
  #join-our-family .full-background {
    padding: 25px 15px;
    margin-bottom: 10vh;
  }

  #join-our-family h1 {
    font-size: 27px;
  }

  #join-our-family p {
    font-size: 1rem;
  }

  #join-our-family button {
    padding: 12px 25px;
    font-size: 16px;
  }

  #join-our-family .image-container img {
    max-height: 150px;
    border-radius: 10px;
  }
}


@media (max-width: 480px) {
  #stories-we-captured nav {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12px;
  }

  #stories-we-captured nav a {
    margin: 5px 10px;
  }

  #stories-we-captured h1 {
    font-size: 24px;
    margin: 15px 0 20px 0;
  }

  #stories-we-captured .grid-container {
    padding: 0 8px; /* Less margin on small screens */
    gap: 10px;       /* Optional: slightly smaller gap */
  }
}

/* Desktop and larger devices */
@media (min-width: 1024px) {
  .nav {
    font-size: 1.1rem;
  }

  header h1 {
    font-size: 2.5rem;
  }

  .logo-letter {
    width: 15vw;
    margin-left: -5vw;
  }
}

/* Tablets and smaller (≤768px) */
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10001;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 30px;
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    gap: 1rem;
    z-index: 10000;
  }

  .nav ul.active {
    display: flex;
  }

  .menu-icon {
    display: block;
    position: relative;
    z-index: 10001;
  }
  .logo-letter {
    width: 30vw;
    margin-left: -15vw;
  }

}

/* Phones and smaller (≤480px) */
@media (max-width: 480px) {
  .nav ul {
    gap: 4vw;
  }

  header h1 {
    font-size: 7vw;
  }

  .logo-letter {
    width: 30vw;
    margin-left: -15vw;
  }

  .white-section h2 {
    font-size: 1.3rem;
  }

  .white-section p {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .seminar-section {
    flex-direction: column;
    height: auto;
    align-items: stretch;
  }

  .seminar-description-container,
  .seminar-carousel-container {
    width: 100%;
    padding: 10px 0;
  }

  .seminar-description-container {
    order: 1;
    padding-left: 0;
  }

  .seminar-carousel-container {
    order: 2;
    padding-right: 0;
  }
}
.seminar-heading {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.seminar-paragraph {
  font-size: 0.95rem;
  color: #4A4A4A;
}