/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

@keyframes bubbleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes breathe {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* HERO SECTION */
.hero-header {
    width: 100%;
    height: 100vh;
    background: url("../AtadoIMG/Editedimg1.png") center/cover no-repeat;
    position: relative;
    color: white;
    padding-top: 120px; /* adjust if navbar height changes */
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 25px 50px;
    background: #2c334d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
	position: fixed;          /* REQUIRED */
    top: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.nav-hidden {
    transform: translateY(-120%);
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 50px;
    font-size: 22px;
    font-weight: 700;
}

.logo img {
    width: 70px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    list-style: none;
    gap: 80px;
	margin-right: 80px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #FFD36A;               /* ← change to any color you want */
  animation: breathe 1.5s ease-in-out infinite;
}


/* HERO CONTENT */
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: calc(100vh - 120px);
    padding: 0 50px;
}

/* SPEECH BUBBLES */
.speech-bubbles {
    display: flex;
    flex-direction: column;
    gap: 10px;
	margin-left: 50px;
}

.bubble {
    background: #ffffffd8;
    color: #2c334d;
    padding: 15px 20px;
    max-width: 260px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
	opacity: 0;
    transform: translateY(20px);
}

.bubble.small {
    background: #3a4a6a;
    color: white;
    max-width: 230px;
	margin-left: 80px;
}

.bubble.big {
    font-size: 18px;
    max-width: 300px;
    padding: 20px;
	margin-left: 140px;
}

.bubble.dark {
    background: #2c3b60;
    color: white;
}

/* ORDER BUTTON */
.cta-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-btn {
    background: white;
    padding: 22px 60px;
    border-radius: 40px;
    color: #2c334d;
    font-size: 22px;
    font-weight: bold;
	display: inline-block;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
	transition:     
	background 0.3s ease,
    color 0.3s ease;
}

.cta-btn:hover {
  background: #2c3b60;      /* inverted background */
  color: white;           /* inverted text */
  animation: breathe 1.5s ease-in-out infinite;
}

    /* ABOUT SECTION */
.about-section {
    padding: 80px 40px;
    background: #f3f7ff;
    text-align: center;
}

/* CURVED TOP TEXT */
.curved-text p {
    display: flex;             /* Enables flexible layout */
    justify-content: center;   /* Centers them on the screen */
    flex-wrap: wrap;           /* Allows them to wrap if needed */
    gap: 25px;                 /* Space between questions */
    
    /* Keep your existing font styles */
    font-size: 16px;
    font-weight: 600;
    color: #2c334d;
    margin-bottom: 30px;
}
/* MAIN TITLE */
.about-title {
    display: flex;             /* Enables Flexbox */
    justify-content: center;   /* Centers everything horizontally */
    align-items: center;       /* Centers everything vertically */
    gap: 20px;                 /* Space between Cat and Text */
    
    /* Keep your existing styles */
    font-size: 20px;
    color: #2c334d;
    margin-bottom: 50px;
    font-weight: 700;
}

.cat-mascot {
    width: 70px; /* Default size for desktop */
    height: auto;
    object-fit: contain;
}

.about-title img {
	width: 40px;
}

/* IMAGE ROW */
.about-images {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.about-images img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 70px;
}

.social-icons img {
    width: 28px;
    opacity: 0.85;
    cursor: pointer;
    transition: 0.2s;
}

.social-icons img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* SOCIAL CARDS (INSTAGRAM & TIKTOK PHONES) */
.social-cards {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-cards::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 180px;
    background: #cfd9f0; /* Light bluish shade */
    border-radius: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.card {
    position: relative;
    z-index: 2;
}

.card h3 {
    font-size: 22px;
    color: #2c334d;
    margin-bottom: 15px;
	
}

.phone-frame {
    width: 260px;
    height: auto;
    padding: 15px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.phone-frame img {
    width: 100%;
    border-radius: 20px;
}

.background-image-section {
    width: 100%;
    height: 70vh; /* adjustable */
    background-image: url("../AtadoIMG/background.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.kelebihan-section {
    background: #f4f7ff; /* light bluish background */
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.kelebihan-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #162447;
    margin-bottom: 60px;
}

/* Decorative stickers */
.kelebihan-deco {
    position: absolute;
    width: 80px;
    opacity: 0.9;
}

.crown {
    top: 180px;
    left: 12%;
    width: 70px;
}

.spark-left {
    top: 60px;
    left: 32%;
    width: 60px;
}

.spark-right {
    top: 60px;
    right: 32%;
    width: 60px;
}

.earth {
    bottom: 40px;
    right: 10%;
    width: 80px;
}

/* Main 3-column layout */
.kelebihan-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.kelebihan-item {
    width: 300px;
}

.kelebihan-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.kelebihan-item img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
	height: 300px;
}

.koleksi-section {
    padding: 350px 0;
    text-align: center;
    color: white;
    background-image: url("../AtadoIMG/BackgroundKoleksi.png"); /* ← replace this */
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.koleksi-section h2 {
    font-size: 42px;
    margin-bottom: 200px;
	
}

.koleksi-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.koleksi-window {
  overflow: hidden;
  width: 100%;
}

.koleksi-track {
  display: flex;
  gap: 40px;
  transition: transform 0.6s ease;
  align-items: center;
}

.koleksi-item {
  flex-shrink: 0;
  opacity: 0.3;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.koleksi-item img {
  width: 260px;
}

/* SPOTLIGHT IMAGE */
.koleksi-item.active {
  opacity: 1;
  transform: scale(1);
}
.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    color: black;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn.left { left: -60px; }
.arrow-btn.right { right: -60px; }

.sizechart-section {
    padding: 230px 0;
    background-image: url("../AtadoIMG/SizechartBG.png"); /* your background */
    background-size: cover;
    background-position: top;
}

.sizechart-title {
    text-align: center;
    margin-bottom: 40px;
}

.sizechart-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0F2748;
}

.sizechart-title p {
    margin-top: 5px;
    font-size: 16px;
    color: #0F2748;
}

.sizechart-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.sizechart-chart img {
    width: 350px;    /* adjust later if needed */
    max-width: 100%;
}

.sizechart-shirt img {
    width: 350px;    /* adjust later if needed */
    max-width: 100%;
}

.promotion-section {
    padding: 200px 0;
    background-image: url("../AtadoIMG/promotionBG.png"); /* your background */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

/* Top text */
.promo-top-text h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
}

.promo-top-text p {
    margin-top: 5px;
    font-size: 16px;
}

/* Middle 2 boxes */
.promo-box-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.promo-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    width: 230px;
    border-radius: 15px;
    box-shadow: 8px 8px 0px #0A1B3F;
    position: relative;
}

.promo-box img {
    width: 120px;
    margin: 10px 0;
}

.promo-tag {
    position: absolute;
    top: -15px;
    left: 10px;
    background: white;
    color: #0A1B3F;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.promo-min {
    font-size: 14px;
    margin-top: 10px;
}

/* Note text */
.promo-note {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.9;
}

/* Bottom section */
.promo-bottom {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.promo-info {
    width: 340px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 20px;
}

.promo-info-box img {
    width: 40px;
}

.promo-image img {
    width: 460px;
	height: 300px;
    border-radius: 25px;
}

.customer-review {
    padding: 90px 0;
    background-color: #F3F6FB;
    text-align: center;
	position: relative;
    overflow: hidden;
}


/* Left stars */
.star-left {
    left: 6%;
    bottom: 22%;
	width: 10px;
}

/* Right stars */
.star-right {
    right: 7%;
    bottom: 18%;
	width: 10px;
}

/* Small top stars */
.star-top {
    left: 12%;
    top: 48%;
    width: 10px;
}


/* Main title */
.review-title {
    font-size: 26px;
    font-weight: 700;
    color: #1E355E;
    margin-bottom: 40px;
}

/* Logos row */
.review-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.review-logos img {
    max-height: 55px;
    width: auto;
}

/* Feedback heading */
.feedback-title {
    font-size: 22px;
    font-weight: 700;
    color: #1E355E;
    margin-bottom: 30px;
}

/* Feedback container */
.feedback-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Left dark feedback */
.feedback-left img {
    width: 420px;
    max-width: 90%;
}

/* Right reply bubble */
.feedback-right img {
    width: 260px;
    max-width: 90%;
}

.feedback-image-box {
    background-color: #4f6479;
    border-radius: 80px;
    padding: 28px 40px;
    width: 70%;
    max-width: 1100px;
    display: flex;
    flex-direction: row;   /* FORCE 1 ROW */
    align-items: center;
    gap: 100px;
}


/* keep image clean */
.feedback-image-box img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 20px; /* optional: keeps inner edges smooth */
	gap: 400px;
}

.tentang-kami {
  padding: 80px 8%;
  background-color: #f4f7fb;
  gap: 40px;
}

.tentang-container {
  display: flex;
  align-items: center;
  gap: 150px;
	padding-right: 30px;
}

.tentang-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  display: block;
}

.tentang-content {
  max-width: 600px;
}

.tentang-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.tentang-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2b4d;
}

.tentang-star {
  width: 100px;   /* adjust freely */
  height: auto;
}

.tentang-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 14px;
}

.footer-section {
  position: relative; /* important for absolute positioning */
  background-color: #2b3450; /* your dark blue */
  padding: 60px 80px;
}

/* shared star styles */
.star {
  position: absolute;
  width: 80px; /* adjust size */
  opacity: 0.8;
  pointer-events: none; /* prevents blocking clicks */
}

/* top left */
.star-top-left {
  top: 20px;
  left: 1px;
}

/* bottom right */
.star-bottom-right {
  bottom: 1px;
  right: 1px;
}

.footer {
  background-color: #2b3450;
  color: #ffffff;
  padding: 70px 8% 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-column h3 {
  font-size: 22px;
  margin-bottom: 25px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 15px;
}

.footer-item img {
  width: 26px;
}

.footer-item a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-map iframe {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  border: none;
  margin-bottom: 18px;
}

.footer-address {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.footer-divider {
  margin: 50px 0 30px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.footer-bottom-text {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  max-width: 1100px;
  margin: auto;
}

/* LIGHTBOX STYLES */
.lightbox-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000; /* Sit on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark overlay */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    animation: zoomIn 0.3s ease; /* Pop animation */
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
    z-index: 2001;
}

.close-lightbox:hover {
    color: #FFD36A; /* Use your theme yellow color */
}

@keyframes zoomIn {
    from {transform: scale(0.7); opacity: 0} 
    to {transform: scale(1); opacity: 1}
}

/* =========================================
   UPDATED RESPONSIVE FIXES (TARGET: 900px)
   Add this to the very bottom of your CSS
   ========================================= */

@media (max-width : 900px ){

    /* --- GLOBAL ADJUSTMENTS --- */
    section {
        padding: 60px 20px !important;
        overflow-x: hidden; 
    }

    /* --- NAVIGATION --- */
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .navbar {
        padding: 15px 20px;
        justify-content: space-between;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: rgba(44, 51, 77, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-right: 0;
        gap: 40px;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }

    /* --- 1. HERO SECTION (Fixed Order Button Position) --- */
    .hero-header {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        background-position: center;
    }

    .hero-content {
        /* Changed from column-reverse to column so bubbles are top, button is bottom */
        flex-direction: column; 
        height: auto;
        gap: 50px;
        padding: 40px 20px;
        text-align: center;
    }

    .speech-bubbles {
        margin-left: 0;
        align-items: center;
    }

    .bubble, .bubble.small, .bubble.big {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }

  .curved-text p {
        flex-direction: column; /* Stacks them vertically */
        gap: 15px;              /* Space between each stacked question */
    }

    /* Optional: Fix the Cat Title layout below it */
  .about-title {
        flex-direction: row;       /* Force them to sit in a line (side-by-side) */
        align-items: center;       /* Vertically center the cats with the text */
        justify-content: center;   /* Center the whole group on screen */
        gap: 8px;                  /* Small gap so they fit */
        text-align: center;
        width: 100%;               /* Ensure it uses full width */
    }

    .cat-mascot {
        width: 35px;               /* Make cats smaller to leave room for text */
        height: auto;
        flex-shrink: 0;            /* Prevents cats from getting squashed to 0px */
    }

    .about-title span {
        flex: 1;                   /* Allows text to wrap nicely */
        font-size: 17px;           /* Slightly smaller font to prevent overcrowding */
        line-height: 1.3;
    }
    .social-cards {
        flex-direction: column;
        align-items: center; /* Forces the phones to center of screen */
        gap: 60px;
        margin-top: 60px;
    }

    .social-cards::before {
        width: 90%;
        height: 85%;
        border-radius: 30px;
    }

    /* --- 3. KELEBIHAN SECTION (Fixed Title & Decorations) --- */
    .kelebihan-container {
        flex-direction: column;
        align-items: center;
    }

    .kelebihan-item {
        width: 100%;
        max-width: 350px;
    }
    
    /* Hides the floating icons (Crown/Spark) in mobile to prevent overlapping text */
    .kelebihan-deco {
        display: none; 
    }

    .kelebihan-title {
        position: relative;
        z-index: 10;
        margin-bottom: 40px;
    }

 .koleksi-section {
        padding: 80px 0 !important; /* Reduces the overall height of the section */
    }

    .koleksi-section h2 {
        margin-bottom: 30px !important; /* DRASTICALLY reduces the gap (was 200px) */
        font-size: 32px;
        margin-top: 0;
    }
    
    /* Optional: Ensure the slider wrapper doesn't have extra top margin */
    .koleksi-wrapper {
        margin-top: 0;
    }

    .koleksi-track {
        /* Your JS adds +40px for calculation, so we match the gap to 40px */
        gap: 40px; 
    }

    .koleksi-item img {
        width: 200px; /* Adjusted width for better mobile visibility */
    }

	.arrow-btn {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9); /* Slightly see-through */
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 100; /* Ensure they sit on top of images */
    }

    .arrow-btn.left {
        left: 10px; /* Move from -60px to 10px inside */
    }

    .arrow-btn.right {
        right: 10px; /* Move from -60px to 10px inside */
    }
	
    /* --- PROMOTION SECTION --- */
    .promo-box-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .promo-bottom {
        flex-direction: column-reverse;
    }

    .promo-info {
        width: 100%;
    }

    .promo-image img {
        width: 100%;
        height: auto;
    }

    /* --- 5. CUSTOMER REVIEW (Fixed Big Stars) --- */
    .review-logos {
        gap: 20px;
    }

    .feedback-image-box {
        flex-direction: column !important;
        width: 90%;
        gap: 30px;
        padding: 30px 20px;
    }

    /* Hide the decorative stars in mobile so they don't cover the feedback */
    .customer-review .star {
        display: none;
    }

    .feedback-left img, .feedback-right img {
        width: 100%;
        max-width: 100%;
    }

    /* --- TENTANG KAMI --- */
    .tentang-container {
        flex-direction: column;
        gap: 40px;
        padding-right: 0;
    }

    .tentang-image img {
        max-width: 100%;
    }

    /* --- 6. FOOTER (Fixed Alignment) --- */
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 50px;
        text-align: left; /* Aligns text inside the box to the left */
        align-items: center; /* Centers the box itself on the screen */
    }

    .footer-column {
        width: 100%;
        max-width: 320px; /* Ensures all columns are same width */
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Forces items to start from left */
    }

    .footer-item {
        justify-content: flex-start; /* Aligns icon and text to left */
    }

    .footer-map iframe {
        height: 200px;
    }
}
