/* Google Fonts'tan Prompt'u dahil etmek için */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@700&display=swap');

/**********************************************
 * HERO SECTION (İlk Görsel Alanı)
 **********************************************/

/* Hero ana alan */
.hero-section {
    position: relative;
    width: auto;
    height: 655px; /* Masaüstü için yükseklik */
    flex-shrink: 0;
    display: flex;
    overflow: hidden; /* Görsel dışına taşarsa gizle */
}

/* Görsel */
.hero-image {
    position: absolute;
    top: -138.732px; /* Görsel pozisyonu */
    left: -47.663px;
    width: 112.222%;
    height: 140.278%;
    object-fit: cover; /* Görselin tamamını doldur */
    z-index: 1;
}

/* ROZET CHARM Yazısı */
.hero-content {
    position: absolute;
    top: 156px; /* Üstten boşluk */
    left: 102px; /* Soldan boşluk */
    bottom: 309px; /* Alttan boşluk */
    right: 898px; /* Sağdan boşluk */
    z-index: 2; /* Görselin üstünde olsun */
    color: #FFF;
    text-align: left;
}

.hero-title {
    font-family: "Prompt", sans-serif;
    font-size: 120px;
    font-style: normal;
    font-weight: 700;
    line-height: 95px; /* Line-height düzenlendi */
    margin: 0;
    white-space: nowrap; /* Satır kırılmasını önler */
}

/* İNDİRİM Yazısı */
.discount-text {
    position: absolute;
    top: 339px; /* Üstten boşluk */
    left: 107px; /* Soldan boşluk */
    bottom: 221px; /* Alttan boşluk */
    right: 1150px; /* Sağdan boşluk */
    z-index: 2;
    color: rgba(255, 255, 255, 0.90);
    font-family: "Prompt", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 95px; /* 190% */
}

/* Tarih Yazısı */
.date-text {
    position: absolute;
    top: 117px; /* Üstten boşluk */
    left: 107px; /* Soldan boşluk */
    bottom: 511px; /* Alttan boşluk */
    right: 1232px; /* Sağdan boşluk */
    z-index: 2;
    color: #FFF;
    font-family: "Prompt", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: none;
}

/* %40 Yazısı */
.percentage-text {
    position: absolute;
    top: 436px; /* Üstten boşluk */
    left: 102px; /* Soldan boşluk */
    bottom: 124px; /* Alttan boşluk */
    right: 1034px; /* Sağdan boşluk */
    z-index: 2;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.90);
    font-family: "Prompt", sans-serif;
}

.percentage-text .number {
    font-size: 150px;
    font-style: normal;
    font-weight: 700;
    line-height: 95px; /* 63.333% */
    margin: 0;
}

.percentage-text .symbol {
    font-size: 120px;
    font-style: normal;
    font-weight: 700;
    line-height: 95px;
    margin-left: 8px;
}

/**********************************************
 * RESPONSIVE DÜZENLEMELER
 **********************************************/

/* Tablet (1024px ve altı) */
@media (max-width: 1024px) {
    .hero-section {
        height: 450px;
    }

    .hero-image {
        top: -100px;
        left: -40px;
        width: 120%;
        height: 150%;
    }

    .date-text {
        top: 80px;
        left: 40px;
        font-size: 16px;
        width: auto;
        display: none;
    }

    .hero-content {
        top: 120px;
        left: 40px;
        right: 300px;
    }

    .hero-title {
        font-size: 72px;
        line-height: 70px;
    }

    .discount-text {
        top: 240px;
        left: 40px;
        font-size: 36px;
        
    }

    .percentage-text {
        top: 320px;
        left: 40px;
    }

    .percentage-text .number {
        font-size: 120px;
    }

    .percentage-text .symbol {
        font-size: 90px;
    }
}

/* Mobil (767px ve altı) */
@media (max-width: 767px) {
    .hero-section {
        height: 279px;
    }

    .hero-image {
        top: -59.517px;
        left: -20.621px;
        width: 112.222%;
        height: 140.278%;
    }

    .date-text {
        top: 49px;
        left: 20px;
        font-size: 14px;
        width: auto;
        line-height: 20px;
        display: none;
    }

    .hero-content {
        top: 67px;
        left: 20px;
        right: 180px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 50px;
    }

    .discount-text {
        top: 165px;
        left: 20px;
        font-size: 28px;
        line-height: 40px;
    }

    .percentage-text {
        top: 187px;
        left: 20px;
    }

    .percentage-text .number {
        font-size: 72px;
    }

    .percentage-text .symbol {
        font-size: 48px;
    }
}

/* Çok Küçük Mobil (480px ve altı) */
@media (max-width: 480px) {
    .hero-section {
        height: 220px;
    }

    .hero-image {
        top: -50px;
        left: -15px;
        width: 115%;
        height: 145%;
    }

    .date-text {
        top: 40px;
        left: 15px;
        font-size: 12px;
        width: auto;
        display: none;
    }

    .hero-content {
        top: 50px;
        left: 15px;
        right: 50px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 40px;
    }

    .discount-text {
        top: 130px;
        left: 15px;
        font-size: 24px;
    }

    .percentage-text {
        top: 160px;
        left: 15px;
    }

    .percentage-text .number {
        font-size: 60px;
    }

    .percentage-text .symbol {
        font-size: 40px;
    }
}
