/* ===========================================================
   GOOGLE FONTS
   =========================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Unbounded:wght@600&family=Montserrat:wght@100..900&display=swap");

/* ===========================================================
   COASTAL THEME VARIABLES
   =========================================================== */
:root {
  /* Coastal Palette */
  --first-color: hsl(200, 88%, 44%);      /* Deep Ocean Blue */
  --second-color: hsl(24, 92%, 58%);      /* Sunset Coral */
  --title-color: hsl(218, 24%, 12%);      /* Navy Text */
  --text-color: hsl(218, 12%, 38%);       /* Reef Grey */
  --white-color: hsl(0, 0%, 100%);
  --body-color: hsl(210, 45%, 98%);       /* Sea Mist */
  --container-color: hsl(0, 0%, 100%);

  /* Accent */
  --ocean-light: hsl(195, 80%, 92%);
  --ocean-medium: hsl(196, 70%, 72%);
  --sand-beige: hsl(36, 33%, 88%);

  /* Fonts */
  --body-font: "Inter", sans-serif;
  --second-font: "Unbounded", sans-serif;
}

/* ===========================================================
   GLOBAL BASE
   =========================================================== */
body {
  margin: 0;
  background: var(--body-color);
  font-family: var(--body-font);
  color: var(--text-color);
}

.home-page {
  max-width: 1180px;
  margin: 6rem auto 4rem;
  padding: 0 1.5rem 3rem;
}

/* ===========================================================
   HERO SECTION
   =========================================================== */
.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-tag {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--second-color);
  font-weight: 600;
  margin-bottom: .5rem;
}

.hero-title {
  font-family: var(--second-font);
  font-size: 2.6rem;
  color: var(--title-color);
  margin-bottom: .6rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: .95rem;
  color: var(--text-color);
  margin-bottom: 1.2rem;
}

.hero-subtitle strong {
  color: var(--title-color);
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: .9rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.hero-info i {
  color: var(--first-color);
  margin-right: .35rem;
}

/* ===========================================================
   BUTTONS
   =========================================================== */
.hero-buttons {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  padding: .75rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: .25s ease;
  cursor: pointer;
}

/* Premium Ocean Gradient Button */
.btn-primary {
  background: linear-gradient(135deg, var(--first-color), var(--second-color));
  color: var(--white-color);
  box-shadow: 0 10px 25px rgba(0, 90, 150, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 90, 150, 0.25);
}

.btn-outline {
  border-color: var(--first-color);
  color: var(--first-color);
  background: transparent;
}

.btn-outline:hover {
  background: var(--first-color);
  color: white;
}

/* ===========================================================
   HERO MEDIA
   =========================================================== */
.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-logo {
  width: 320px;
  height: auto;
  object-fit: contain;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  background: rgba(0,0,0,0.9);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ===========================================================
   SECTION TITLES
   =========================================================== */
.section-title {
  font-family: var(--second-font);
  font-size: 1.8rem;
  color: var(--title-color);
  margin-bottom: .4rem;
  letter-spacing: -0.3px;
}
/* ===========================================================
   COUNTDOWN SECTION — SOFT GLASS
   =========================================================== */

.countdown-section {
  margin: 3rem auto 3.5rem;
  padding: 3rem 2rem;
  text-align: center;

  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);

  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow: 0 14px 32px rgba(0, 80, 140, 0.15);
}

/* Top text */
.countdown-tag {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--second-color);
  font-weight: 600;
  margin-bottom: .6rem;
}

/* Title */
.countdown-title {
  font-family: var(--second-font);
  font-size: 2.4rem;
  color: var(--title-color);
  margin-bottom: .4rem;
}

/* Location */
.countdown-location {
  font-size: .95rem;
  color: var(--text-color);
  margin-bottom: 1.8rem;
}

.countdown-location i {
  color: var(--first-color);
  margin-right: .35rem;
}

/* Timer */
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.time-box {
  min-width: 90px;
  padding: 1rem .8rem;

  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow: 0 6px 18px rgba(0, 80, 140, 0.12);
}

.time-box span {
  display: block;
  font-family: var(--second-font);
  font-size: 1.8rem;
  color: var(--first-color);
}

.time-box small {
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-color);
}

/* Responsive */
@media (max-width: 600px) {
  .countdown-title {
    font-size: 1.9rem;
  }
  .time-box {
    min-width: 75px;
  }
}

/* ===========================================================
   SPONSOR HEADING
   =========================================================== */
.sponsor-heading {
  text-align: center;
  margin: 3rem auto 1.5rem;
  padding: 0 1.5rem;
}

.sponsor-heading h2 {
  font-family: var(--second-font);
  font-size: 2.2rem;
  color: var(--title-color);
}

.sponsor-heading p {
  max-width: 620px;
  margin: 0 auto;
  font-size: .95rem;
  color: var(--text-color);
}

/* ===========================================================
   SLIDER — Ultra Transparent Soft Glass Version
   =========================================================== */
.slider {
  width: 90%;
  height: 180px;
  margin: 2.5rem auto 0;
  padding: 0;

  /* Ultra Soft Glass */
  background: rgba(255, 255, 255, 0.18);       /* More transparent */
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25); /* More subtle */

  /* Softer shadow */
  box-shadow: 0 10px 22px rgba(0, 80, 140, 0.10);

  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

/* Scrolling Track */
.slider .slide-track {
  display: flex;
  animation: scroll 20s linear infinite;
  width: calc(250px * 18);
}

/* Smooth scroll motion */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 9)); }
}

/* Slide item */
.slider .slide {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logos */
.slider .slide img {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
  transition: transform .3s ease, filter .3s ease;
  filter: brightness(1);
}

/* Desktop hover */
@media (hover: hover) {
  .slider .slide img:hover {
    transform: scale(1.07);
    filter: brightness(1.2);
  }
}
/* ===========================================================
   MAKING OF IICM LOGO — SOFT GLASS + ANIMATIONS
   =========================================================== */

.logo-making-section {
  width: 100%;
  padding: 5rem 2rem;
  margin-top: 3rem;

  background: linear-gradient(
    135deg,
    rgba(195, 240, 255, 0.55) 0%,
    rgba(230, 215, 185, 0.45) 55%,
    rgba(150, 205, 230, 0.50) 100%
  );

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  display: flex;
  flex-direction: column;
  align-items: center;
}


.logo-making-title {
  font-family: var(--second-font);
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--title-color);
}

/* MAIN LAYOUT */
.logo-making-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 1300px;
  width: 100%;
}

/* LEFT IMAGE — BIGGER SPACE */
.logo-making-image {
  flex: 1.3;   /* ⬅ More space for image */
}

.logo-making-image img {
  width: 100%;
  max-width: 640px;    /* bigger image */
  border-radius: 20px;

  /* Soft glow for image */
  box-shadow: 0 10px 28px rgba(0, 80, 140, 0.25);
}

/* RIGHT TEXT BOX — Soft Glass */
.logo-making-text {
  flex: 1;
  padding: 2rem 2rem;

  background: rgba(255, 255, 255, 0.28);          /* soft glass opacity */
  backdrop-filter: blur(14px) saturate(150%);     /* blur + vibrancy */
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);

  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.7;

  box-shadow: 0 8px 22px rgba(0, 80, 140, 0.12);
}

.logo-making-text ul {
  margin-top: 1.2rem;
  padding-left: 1.2rem;
}

.logo-making-text li {
  margin-bottom: 0.9rem;
}

/* ===========================================================
   ANIMATIONS — Image Left, Text Right, Title Up
   =========================================================== */

@keyframes slideLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
  animation: slideLeft 1s ease forwards;
}

.slide-in-right {
  animation: slideRight 1s ease forwards;
}

.fade-up {
  animation: fadeUp 1s ease forwards;
}

/* ===========================================================
   RESPONSIVE DESIGN
   =========================================================== */

@media (max-width: 1100px) {
  .logo-making-container {
    gap: 2rem;
  }
  .logo-making-image img {
    max-width: 540px;
  }
}

@media (max-width: 900px) {
  .logo-making-container {
    flex-direction: column;
  }

  .logo-making-image img {
    max-width: 100%;
  }

  .logo-making-text {
    width: 100%;
    max-width: 700px;
  }
}

@media (max-width: 600px) {
  .logo-making-title {
    font-size: 2rem;
  }

  .logo-making-text {
    padding: 1.6rem;
    font-size: 0.94rem;
  }
}


/* ===========================================================
   HIGHLIGHTS — Soft Glass Version
   =========================================================== */
.highlights-section {
  margin-top: 3rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.3rem;
}

/* Soft Glass Effect */
.highlight-card {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-radius: 1rem;
  padding: 1.4rem 1.3rem;
  text-decoration: none;
  color: inherit;

  box-shadow: 0 8px 20px rgba(0, 80, 140, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.35);

  transition: .25s ease;
}

/* Hover lift */
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 80, 140, 0.25);
  border-color: rgba(255, 255, 255, 0.55);
}

/* Icon bubble */
.highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  margin-bottom: .3rem;
}

.highlight-icon i {
  color: var(--first-color);
  font-size: 1.3rem;
}


/* ===========================================================
   BEACH SECTION
   =========================================================== */
.beach-section {
  margin-top: 2rem;
}

.beach-image-wrap {
  position: relative;
  border-radius: 1.3rem;
  overflow: hidden;
  max-height: 320px;
}

.beach-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beach-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.55)
  );
}

.beach-content {
  margin-top: 1rem;
}

.beach-text {
  font-size: .9rem;
  color: var(--text-color);
}
.iiser-slider{
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.iiser-track{
    display: flex;
    gap: 30px;
    width: max-content;
    animation: iiserScroll 50s linear infinite;
}

.iiser-item{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iiser-item img{
    height: 230px;      /* adjust size freely */
    width: auto;
    object-fit: contain;
    display: block;
}

@keyframes iiserScroll{
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media(max-width:768px){
    .iiser-slider{ height: 180px; }
    .iiser-item img{ height: 150px; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
  }
  .hero-media { order: -1; }
}

@media (max-width: 600px) {
  .home-page { margin-top: 5.5rem; }
  .hero-title { font-size: 2.1rem; }
}


/* ===== Scroll Fade - REPEATING Animation ===== */

.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
  transition: 
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 768px) {
  .scroll-fade {
    transform: translateY(30px);
    filter: blur(5px);
  }
}

/* Optional stagger delays */
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .30s; }
.delay-3 { transition-delay: .45s; }
.delay-4 { transition-delay: .45s; }
.delay-5 { transition-delay: .60s; }
.delay-6 { transition-delay: .75s; }
.delay-7 { transition-delay: .90s; }


