 /* 1. ¸ÞÀÎ È÷¾î·Î ¼½¼Ç (±âº» ¼³Á¤) */
.hero {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 52.08%; /* 1920x1000 ºñÀ² À¯Áö */
    background: url('../img/images/view3_1.jpg') no-repeat center center / cover;
    overflow: hidden;
    transition: all 0.5s ease-in-out; /* È®´ë/Ãà¼Ò ¾Ö´Ï¸ÞÀÌ¼Ç */
    margin-top: 60px;
}




.hero-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        /* »ó´Ü ±×¶óµ¥ÀÌ¼Ç */
        rgba(0,0,0,0.95) 0%,    
        rgba(0,0,0,0.85) 10%,  
        rgba(0,0,0,0.6) 20%,   
        rgba(0,0,0,0.25) 30%,  
        rgba(0,0,0,0) 40%,      /* Áß°£ ¿ÏÀüÈ÷ Åõ¸í ½ÃÀÛ */
        rgba(0,0,0,0) 95%,      /* ÇÏ´Ü ÁøÇÏ±â Àü±îÁö Åõ¸í À¯Áö */
        rgba(0,0,0,1) 100%      /* ÇÏ´Ü 5% ÃÖ´ë ÁøÇÏ°Ô */
    );
}




.hero-info {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    transition: all 0.5s ease;
    text-align: center;
    letter-spacing: 1px;
}




.hero-info .slogan {
    color: #f2f2f2;
    font-size: 25px;
    margin: 0;
    letter-spacing: 1px;
}




.hero-info h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    color: #f2f2f2 !important;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}




.hero-info .price-box {
    margin-bottom: 2vw;
}




.hero-info .price {
    font-size: 2.2vw;
    font-weight: 700;
    display: block;
    color: #f2f2f2 !important;
}




.hero-info .price span {
    font-size: 1.2vw;
    color: var(--text-gray);
    font-weight: 400;
}




.hero-info .base-model {
    font-size: 0.9vw;
    color: rgba(255,255,255,0.7);
}




.mo-only {
    display: none;
}




.hero-specs {
    position: absolute;
    bottom: 10%;
    right: 8%;
    display: flex;
    gap: 4vw;
    z-index: 5;
    transition: all 0.5s ease;
}




.spec-item {
    text-align: center;
}




.spec-item .value {
    display: block;
    font-size: 1.8vw;
    font-weight: 600;
    color: var(--text-white);
}




.spec-item .label {
    font-size: 0.9vw;
    color: var(--text-gray);
    margin-top: 0.4vw;
}








/* ÃÊ°íÇØ»óµµ ´ëÀÀ */
@media (min-width: 1920px) {
    .hero-info {
        bottom: 100px;
    }
    .hero-info h1 {
        font-size: 50px;
    }
    .hero-info .price {
        font-size: 42px;
    }
    .hero-specs {
        bottom: 100px;
        gap: 70px;
    }
    .spec-item .value {
        font-size: 34px;
    }


}


/* ¹Ìµð¾îÄõ¸®: ¸ð¹ÙÀÏ ¹× °¢ µð¹ÙÀÌ½º ´ëÀÀ */
@media (max-width: 768px) {






    .hero {
        height: 670px;         /* °íÁ¤ ³ôÀÌ */
        padding: 80px 20px 10px 20px; /* »ó ¿ì ÇÏ ÁÂ */
        margin: 0 auto;        /* °¡·Î Áß¾Ó Á¤·Ä */
        box-sizing: border-box; /* ÆÐµù Æ÷ÇÔ Å©±â °è»ê */
        overflow: hidden;      /* È¤½Ã ³ÑÄ§ ¹æÁö */
    }




    .mo-only {
        display: block;
    }




    .hero-info {
        width: 92%;          /* ÁÂ¿ì ¿©¹é¸¸ »ìÂ¦ */
        max-width: none;
    }




    .hero-info h1 {
        font-size: 30px;
        line-height: 1.25;   /* ÁÙ °£°Ý ¿©À¯ */
        letter-spacing: 1px;
        word-break: keep-all;    /* ÇÑ±Û ´Ü¾î ²÷±è ¹æÁö */
    }




    /* °¡°Ý Á¤º¸ ¹× "¿øºÎÅÍ" È®´ë */
    .hero-info .price {
        font-size: 1.7rem !important;
        margin-bottom: 5px;
    }




    .hero-info .price span {
        font-size: 1rem !important;
        color: #f2f2f2 !important;
    }




    /* "3.5 °¡¼Ö¸°..." ¹®±¸ ´ëÆø È®´ë */
    .hero-info .base-model {
        font-size: 0.95rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        display: block;
        margin-top: 8px;
    }




    /* ½½·Î°Ç */
    .hero-info .slogan {
        max-width: 100%;
        font-size: 16px;
        font-weight: 400;
    }




    /* ÇÏ´Ü ½ºÆå ¾ÆÀÌÅÛ (VIP½ÃÆ® µî) */
    .hero-specs {
        bottom: 8% !important;
        left: 5% !important;
        right: 5% !important;
        width: 90% !important;
        justify-content: space-between !important;
        gap: 0;
    }




    .spec-item .value {
        font-size: 1.1rem !important;
    }




    .spec-item .label {
        font-size: 0.75rem !important;
    }
}




















/* Áß°£ È­¸é (769px ~ 1200px) ´ëÀÀ */
@media (min-width: 769px) and (max-width: 1200px) {
    .hero {
        background-size: cover;      /* ÇÊ¿äÇÏ¸é Á¶Á¤ */
        width: 100%;                /* °¡º¯ ³Êºñ À¯Áö */
        height: auto;               /* ºñÀ² ¸Â°Ô Á¶Á¤ °¡´É */
        min-height: 500px;          /* ÃÖ¼Ò ³ôÀÌ ÁöÁ¤ */
    }




    .hero-info h1 {
        font-size: 30px;            /* Á¦¸ñ ±ÛÀÚ Å©±â */
        letter-spacing: 1px;        /* ±ÛÀÚ °£°Ý */
    }




    .hero-info .slogan {
        font-size: 16px;            /* ½½·Î°Ç ±ÛÀÚ Å©±â */
        letter-spacing: 2px;
    }




}







