/* Hero Section (for men.html & ladies.html) */
.hero {
    background-image: url('../images/eyecatch_pc.jpg');
    background-size: 100% auto; /* New: Stretch to 100% width, auto height */
    background-position: center center;
    background-repeat: no-repeat;
    max-width: 1280px; /* New: Constrain width */
    margin: 0 auto; /* New: Center the hero section */
    height: 600px; /* New: Set a fixed height for PC view */
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px; /* Header height */
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Hero Section (for index.html) */
.index-hero .container {
    padding-top: 100px;
}

.index-hero .splash-buttons a {
    display: inline-block;
    width: 280px;
    padding: 20px;
    margin: 0 15px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: rgba(0, 160, 210, 0.7); /* Changed background color */
}

.index-hero .splash-buttons a:hover {
    background-color: #fff;
    color: #1c2a3a;
}


@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.2rem;
    }
    .hero {
        background-image: url('../images/eyecatch_sp.jpg');
    }
    .index-hero .splash-buttons a {
        display: block;
        width: auto;
        margin: 15px 0;
    }
}