/* ----------------------------- */
/* General Body & Fonts */
/* ----------------------------- */
body {
    margin: 0;
    padding: 0;
    background: #fbfcfb;
    font-family: 'Montserrat', sans-serif;
    color: #111;
    overflow-x: hidden; /* prevent horizontal scroll */
  }
  
  /* ----------------------------- */
  /* Logo Screen */
  /* ----------------------------- */
  #logo-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fbfcfb;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 1;
    transition: opacity 1.5s ease;
  }
  
  #logo-screen.fade-out {
    opacity: 0;
    pointer-events: none;
  }
  
  #logo-screen img {
    max-width: 400px;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInZoom 1.5s ease forwards;
  }
  
  @keyframes fadeInZoom {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* ----------------------------- */
  /* Navbar */
  /* ----------------------------- */
  #navbar {
    width: 100%;
    background: #fefeff;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  #navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  
  #navbar ul li.logo img {
    max-height: 50px;
    vertical-align: middle;
  }
  
  #navbar ul li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    color: #111;
    transition: color 0.3s ease;
  }
  
  #navbar ul li a:hover {
    color: #666;
  }
  
  /* ----------------------------- */
  /* Countdown Section */
  /* ----------------------------- */
  #countdown-container {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease, transform 1.5s ease;
    margin-top: 200px; /* increased from 120px to bring it more central */
    }
  
  #countdown-container.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  #countdown {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
  }
  
  /* ----------------------------- */
  /* Review Section */
  /* ----------------------------- */
  #review-section {
    margin-top: 100px; /* increased from 60px to lower the reviews */
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease;
}
  
  #review-text {
    font-style: italic;
    margin-bottom: 10px;
  }
  
  #review-author {
    font-weight: bold;
  }
  
  /* ----------------------------- */
  /* Our History Page */
  /* ----------------------------- */
  .history-container {
    width: 90%;
    max-width: 1000px;
    margin: 120px auto 50px auto; /* space for navbar */
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  
  /* Countup section at top of entry */
  .countup-section {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .countup-section p {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 5px; /* closer to countup */
  }
  
  .countup {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0;
  }
  
  .countup-section small {
    display: block;
    color: #555;
    margin-top: 3px;
  }
  
  /* Each history entry wrapper with bottom border */
  .history-entry {
    padding-bottom: 40px;
    border-bottom: 2px solid #111;
  }
  
  .history-entry:last-child {
    border-bottom: none;
  }
  
  /* Content area: text + image */
  .history-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  
  .history-entry.reverse .history-content {
    flex-direction: row-reverse;
  }
  
  /* Text info styling */
  .history-info {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .history-info h2 {
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  
  .history-info .meta-info {
    color: #555;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  
  .history-info p.description {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 10px;
  }
  
  /* Image styling */
  .history-img {
    flex: 1 1 400px;
  }
  
  .history-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Fade-in effect for history page */

  /* ----------------------------- */
/* Story Section */
.story-container {
    width: 90%;
    max-width: 1200px;
    margin: 120px auto 50px auto; /* space for navbar */
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.story-column {
    flex: 1 1 30%;
    background: #fefeff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;                  /* start invisible */
    transform: translateY(20px); /* start slightly lower */
    transition: opacity 1s ease, transform 1s ease;
}

.story-column h2 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.story-column p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Class to fade in */
.story-column.show {
    opacity: 1;
    transform: translateY(0);
}

.blacklist-wrapper {
    width: 100%;
    padding-top: 160px; /* leave space for navbar */
    display: flex;
    justify-content: center;
}

.blacklist-container {
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 30px;
}

.blacklist-tile {
    background: #fefeff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto; /* let height adjust naturally */
}

.blacklist-tile img {
    width: 100%;
    height: auto;       /* let image height adjust */
    object-fit: contain; /* show entire image */
    border-radius: 10px;
    margin-bottom: 15px;
}


.blacklist-tile h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.blacklist-tile p {
    font-size: 1rem;
    line-height: 1.4;
}

/* Show effect (optional JS animation) */
.blacklist-tile.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .blacklist-container {
        grid-template-columns: 1fr; /* single column on small screens */
    }

    .blacklist-tile {
        height: auto; /* flexible height on mobile */
    }
}


/* ----------------------------- */
/* Attend Page */
.attend-container {
    width: 90%;
    max-width: 600px;
    margin: 140px auto 50px auto; /* space for navbar */
    text-align: center;
    background: #fefeff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.attend-container h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.attend-container p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.6;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: #E1306C; /* Instagram pink */
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-link i {
    font-size: 1.3rem;
}

/* Hover effect */
.instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* ----------------------------- */
/* Founder Page */
.founder-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 90%;
    max-width: 1000px;
    margin: 140px auto 50px auto; /* space for navbar */
    flex-wrap: wrap; /* responsive wrapping */
}

.founder-image {
    flex: 1 1 300px;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.founder-content {
    flex: 1 1 400px;
}

.founder-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.founder-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* ----------------------------- */
/* Information Page Hero */
.info-hero {
    width: 90%;
    max-width: 900px;
    margin: 140px auto 50px auto; /* space for navbar */
    text-align: center;
}

.info-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-hero p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Info Cards */
.info-cards {
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: #fefeff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.info-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

/* Hover effect on cards */
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .info-hero h1 {
        font-size: 1.8rem;
    }
    .info-card h2 {
        font-size: 1.3rem;
    }
}

