/* 
  Good Homestay - Sydney LP Unique Style
  Aesthetics: City-specific overrides
*/

/* Hero Section Specific (1/3 Banner Layout) */
.hero {
    position: relative;
    background-color: var(--bg-white);
    overflow: hidden;
}

.hero__bg {
    position: relative;
    width: 100%;
    height: 35vh; /* 1/3程度の高さにクロップ */
    min-height: 250px;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%; /* 表情にフォーカス */
}

.hero__content {
    background-color: var(--primary-light); /* 背景色を全幅に適用 */
    padding: 60px 0 80px;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero__card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero__lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

/* Section Backgrounds (Unique Images) */
.section--bg-blue {
    background: linear-gradient(rgba(230, 241, 248, 0.9), rgba(230, 241, 248, 0.9)), url('../common/images/bg-blue-02.jpg');
    background-size: cover;
    background-position: center;
}

.section--bg-green {
    background: linear-gradient(rgba(240, 248, 240, 0.9), rgba(240, 248, 240, 0.9)), url('../common/images/bg-light-green-01.jpg');
    background-size: cover;
    background-position: center;
}

.section--bg-red {
    background: linear-gradient(rgba(255, 245, 245, 0.9), rgba(255, 245, 245, 0.9)), url('../common/images/bg-red-02.jpg');
    background-size: cover;
    background-position: center;
}

/* Process Section Unique */
.process__intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--text-light);
}

.process__steps {
    display: flex;
    flex-direction: column;
}

.process-step {
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.process-step__header {
    background-color: var(--primary-light);
    padding: 20px 40px;
    border-bottom: 3px solid var(--primary-color);
}

.process-step__header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.process-step__content {
    padding: 40px;
}

.process-step__list {
    margin: 20px 0;
    padding-left: 20px;
}

.process-step__action {
    margin-top: 30px;
    text-align: center;
}

.process-step--alt .process-step__header {
    background-color: #fff9e6;
    border-bottom-color: var(--accent-color);
}

.process-step--alt .process-step__header h3 {
    color: #b38000;
}

.process-step--accent .process-step__header {
    background-color: var(--primary-color);
}

.process-step--accent .process-step__header h3 {
    color: white;
}

.process-step__arrow {
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.process-step__arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--primary-color);
}

.compensation__table-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 30px;
}

.compensation__table-title:first-of-type {
    margin-top: 0;
}

.process-step__congrats {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

/* Unique Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 60px 0;
    }

    .hero__card {
        padding: 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    /* Process Section Mobile Optimization */
    .process__steps {
        margin-left: -20px;
        margin-right: -20px;
    }

    .process-step {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .process-step__header {
        padding: 20px;
    }

    .process-step__content {
        padding: 20px;
    }
}
