/* 基本レイアウト ここから↓ */
:root {
    --primary-font: 'Montserrat', sans-serif;
    --secondary-font: 'Playfair Display', serif;
    --white-color: #fff;
    --black-color: #000;
    --accent-color: #b08e6f;
    --light-grey: #f2f2f2;
    --text-color: #333;
    --border-color: #ccc;
    --dark-grey: #222;
    --another-light-grey: #eaeaea; 
    --even-lighter-grey: #f9f9f9;
    --hamburger-menu-bg: #3d3d3d;
}

body {
    margin: 0;
    font-family: var(--primary-font); 
    background-color: var(--white-color);
    color: var(--dark-grey);
}

.section {
    padding: 80px 40px;
    max-width: 1200px; 
    margin: 0 auto;
    text-align: center;
}

.section-heading {
    font-family: var(--secondary-font);
    font-size: 2.2em;
    color: var(--dark-grey);
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ヘッダー */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
    color: var(--white-color);
    background-color: var(--black-color);
}

.header a {
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
}

.main-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style-type: none;
}

.main-nav li a {
    text-decoration: none;
    color: var(--white-color);
    font-size: 0.9rem;
    position: relative;
}

.main-nav li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.main-nav li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.main-nav li a:hover {
    color: #ddd;
}

/* ハンバーガーメニュー */
.menu-toggle {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; 
    position: fixed; 
    top: 20px; 
    right: 20px;
}

.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}


.menu-toggle.open .hamburger-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open .hamburger-icon:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .hamburger-icon:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 998; 
    cursor: pointer;
}


.menu-overlay.open {
    display: block; 
}

.main-nav.open {
    display: flex; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--hamburger-menu-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}


.footer {
    background-color: var(--dark-grey);
    color: var(--white-color);
    padding: 30px 40px;
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
}

.disclaimer {
    margin-top: 15px;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 基本レイアウト ここまで↑ */

/* トップページ ここから↓ */
.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    position: relative;
}

.hero::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin: 0;
}

.hero-text p {
    font-size: 1.1rem;
    margin-top: 10px;
}

.hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-text {
    position: relative;
    z-index: 1;
    color: var(--white-color);
    padding: 0 20px;
    text-align: center;
}


.news-section {
    background-color: var(--white-color);
}

.section-subheading {
    font-size: 1.1em;
    color: var(--black-color);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.news-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.news-item-preview { 
    position: relative;
    overflow: hidden;
    background-color: var(--light-grey);
    display: block;
    aspect-ratio: 3/4; 
    margin-bottom: 20px;
}

.news-item-preview img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.news-info-preview { 
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 8px;
    background-color:rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.4s ease; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    opacity: 0; 
}
.news-item-preview:hover img { 
    transform: scale(1.05);
    filter: brightness(0.8);
}

.news-item-preview:hover .news-info-preview {
    transform: translateY(0);
    opacity: 1;
}

.news-title-preview {
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2; 
    color: var(--white-color);
    display: block; 
}


.about-section {
    background-color: var(--another-light-grey);
    text-align: left;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
    color: var(--dark-grey);
}

.about-text:last-child {
    margin-bottom: 0;
}


.contact-section {
    background-color: var(--white-color);
    text-align: center;
}

.contact-info {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links a {
    color: var(--dark-grey); 
    font-size: 2em; 
    margin: 0 10px; 
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease; 
}

.social-links a:hover {
    color: var(--accent-color); 
    transform: scale(1.1);
}


.page-content {
    padding-top: 0; 
}

.hero-subpage {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background-color: var(--another-light-grey);
    margin-bottom: 0;
}

.subpage-title {
    font-family: var(--secondary-font);
    font-size: 3.5em;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.subpage-subtitle {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    background-color: var(--white-color);
    margin-bottom: 40px;
}


.content-section .section-heading {
    margin-bottom: 40px;
}


/* トップページ ここまで↑ */

/* モデル一覧 ここから↓ */
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px; 
    margin-top: 40px;
}

.model-item {
    position: relative;
    overflow: hidden;
    background-color: var(--another-light-grey); 
    display: block; 
    aspect-ratio: 3/4; 
    height: auto;
}

.model-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.model-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white-color);
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    height: 60px; 
}

.model-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.model-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    text-align: center;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}


.model-item:hover .model-info {
    opacity: 1;
    transform: translateY(0);
}

.model-name {
    font-family: var(--primary-font);
    font-size: 1.4em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}


.model-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.9em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 200px;
    width: 100%;
}

.model-specs li {
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.model-specs li strong {
    color: var(--accent-color);
    display: inline-block;
    width: 60px;
    margin-right: 5px;
    flex-shrink: 0;
}


.model-profile-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    margin-bottom: 60px;
}

.model-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    z-index: 0;
}

.model-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.model-hero-content {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.model-name-title {
    font-family: var(--secondary-font);
    font-size: 4.5em;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.model-tagline {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto;
}

/* モデル一覧 ここまで↑ */
/* モデル詳細　ここから↓ */
.model-details-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.model-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}


.model-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.model-gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}


.model-info-sidebar {
    padding: 20px;
    background-color: var(--light-grey);
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sidebar-heading {
    font-family: var(--primary-font);
    font-size: 1.3em;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.profile-list {
    margin-bottom: 30px;
    list-style-type: none;
}

.profile-list li {
    margin-bottom: 10px;
    font-size: 1em;
    color: var(--text-color);
}

.profile-list li strong {
    color: var(--text-color);
}

.about-model-text {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.model-social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.model-social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    color: var(--black-color);
    transition: color 0.3s ease;
    font-style: normal; 
    text-decoration: none;
}

.model-social-links a:hover {
    color: var(--accent-color);
}

.model-social-links a i {
    font-style: normal;
    font-size: 1.0em; 
}

.booking-button {
    display: block;
    width: 100%;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 15px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    text-align: center;
}

.booking-button:hover {
    background-color: var(--accent-color);
}


.become-a-model {
    background-color: var(--even-lighter-grey);
}

.apply-info {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.apply-info h3 {
    font-family: var(--secondary-font);
    font-size: 1.6em;
    margin-bottom: 20px;
    color: var(--text-color);
}

.apply-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.apply-info li {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.6;
}

.apply-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
}

.apply-info a:hover {
    text-decoration: underline;
}
/* モデル詳細　ここまで↑ */

/* モデルになる　ここから↓ */
/* --- モデルになる（Become a Model）フォームのスタイル --- */

/* 全体のフォームのスタイル */
.becomeamodel-form {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: var(--primary-font); /* Montserratを使用 */
    background-color: var(--white-color); /* フォーム背景色を白に */
}

/* 各フォームグループの余白 */
.form-group {
    display: flex;
    align-items: center; /* ラベルと入力を垂直中央揃え */
    margin-bottom: 16px;
    flex-wrap: wrap; /* 小画面で折り返す */
}

/* ラベルのスタイル */
.form-group label {
    width: 150px; /* ラベルの幅を少し広げて、項目の長さに対応 */
    /* margin-right: 20px;  */
    font-weight: 600; /* より強く */
    color: var(--dark-grey); /* ヘッダーやフッターの色と合わせる */
    text-transform: uppercase; /* 大文字に */
    font-size: 0.95em;
    flex-shrink: 0; /* ラベルが縮まないようにする */
}

/* テキスト系の入力フィールド */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="url"] {
    flex: 1; /* 残りのスペースを埋める */
    padding: 10px 15px; /* 内側の余白を調整 */
    font-size: 1em;
    border: 1px solid var(--border-color);
    border-radius: 5px; /* 角を丸く */
    box-sizing: border-box;
    min-width: 200px; /* 最小幅を設定して、小さくなりすぎないように */
}

/* ファイルアップロードグループの特別な調整 */
.file-upload-group {
    display: block; /* 全体幅を占めるように */
    margin-top: 30px;
    margin-bottom: 30px; /* 上下の余白 */
}

.file-upload-group > label { /* "Upload Photos" ラベルのスタイル */
    display: block;
    width: auto; /* 幅指定を解除 */
    margin-bottom: 20px; /* 下のコンテナとの余白 */
    font-size: 1.2em; /* 少し大きく */
    text-align: center;
    border-bottom: 1px solid var(--border-color); /* 下線を追加 */
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px; /* 見出しの最大幅 */
}

/* アップロード全体をラップ - 画像バランスの肝 */
.photo-upload-wrapper {
    display: grid; /* Grid Layoutを使用 */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 可変グリッド */
    gap: 20px; /* ボックス間のスペース */
    justify-content: center; /* グリッドアイテムを中央寄せ */
}

/* 各アップロードボックス */
.photo-upload-box {
    border: 2px dashed var(--border-color); /* ダッシュ線の色を統一 */
    border-radius: 8px; /* 角を丸く */
    text-align: center;
    overflow: hidden; /* 内容がはみ出さないように */
    position: relative; /* カスタムラベルの配置のために */
    padding: 0; /* パディングはcustom-upload-labelで制御 */
    background-color: var(--light-grey); /* ボックスの背景色 */
    min-height: 200px; /* 最小高さを設定してバラつきを減らす */
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 縦方向中央寄せ */
    align-items: center; /* 横方向中央寄せ */
}

.photo-upload-box:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(176, 142, 111, 0.3); /* アクセントカラーのシャドウ */
}

/* ファイル選択の入力欄は完全に非表示 */
.photo-upload-box input[type="file"] {
    display: none;
}

/* カスタムラベル（画像 + テキスト） - 画像バランスの肝 */
.custom-upload-label {
    width: auto;
    height: 100%; /* 親要素(photo-upload-box)の高さに合わせる */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px; 
    cursor: pointer;
    background-color: var(--even-lighter-grey); 
    transition: background-color 0.3s ease;
}

.custom-upload-label:hover {
    background-color: var(--light-grey);
}

/* 画像の表示 */
.custom-upload-label img {
    max-width: 80%; /* ボックス幅に対して画像サイズを調整 */
    max-height: 150px; /* 最大高さを設定して縦長になりすぎないように */
    height: auto; /* アスペクト比を維持 */
    display: block;
    margin-bottom: 15px; /* テキストとの余白 */
    object-fit: contain; /* 画像全体を表示するように */
}

/* アップロードテキストのスタイル */
.upload-text {
    font-size: 1em;
    font-weight: 600;
    color: var(--dark-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
      /* ここから追加・修正 */
    display: block; 
    width: 150px; 
    text-align: center; 
    line-height: 1.4; 
    min-height: 40px; 
}

/* 送信ボタン */
.submit-button {
    background-color: var(--black-color); /* アクセントカラーに */
    color: var(--white-color);
    padding: 15px 40px; /* 大きめのパディング */
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block; /* 全体幅に広げる */
    width: fit-content; /* 内容に合わせた幅 */
    margin: 40px auto 0 auto; /* 中央寄せ */
}

.submit-button:hover {
    background-color: var(--hamburger-menu-bg); 
    transform: translateY(-2px);
}
/* モデルになる　ここまで↑ */
/* -------------------
    レスポンシブ対応
------------------- */
@media (max-width: 768px) {

/* モバイル版　基本レイアウト ここから↓ */
    .header {
        padding: 15px 20px; 
        position: sticky;
        top: 0; 
    }

    .navbar {
        padding: 10px;
        text-align: center;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 30px;
        width: auto;
    }

    .main-nav {
        display: none; 
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 40px 20px; 
    }


    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
    }

    .menu-overlay.open {
        display: block;
        z-index: 998; 
    }

    .main-nav.open {
        display: flex;
        position: fixed; 
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--hamburger-menu-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    .footer {
        padding: 15px 20px;
    }

    .disclaimer {
        font-size: 0.75em;
    }

/* モバイル版　基本レイアウト ここまで↑ */

/* モバイル版　トップページ ここから↓ */
    .hero {
        height: 60vh;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-text p {
        font-size: 1em; 
    }

    .section-subheading {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .news-grid-preview { 
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .news-title-preview {
        font-size: 0.9em;
    }

    .about-text {
        font-size: 1em;
    }

    .page-content {
        padding-top: 0;
    }


/* モバイル版　トップページ ここまで↑ */    
/* モバイル版　モデル一覧 ここから↓ */
    .model-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
        margin-top: 15px;
    }

    .model-item {
        aspect-ratio: 3 / 4;
        height: auto;
    }
    .model-info {
        padding: 10px; 
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left; 


        transform: translateY(-20px);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }


    .model-item:hover .model-info {
        opacity: 1;
        transform: translateY(0); 
    }

    .model-name {
        font-size: 1em; 
        margin-bottom: 8px;
    }

    .model-specs {
        font-size: 0.5em; 
        max-width: 100%; 
        line-height: 1.4; 
    }

    .model-specs li {
        margin-bottom: 1px; 
        white-space: normal;
        text-overflow: clip;
    }

    .model-specs li strong {
        width: 45px;
        min-width: 45px; 
    }
/* モバイル版　モデル一覧 ここまで↑ */  
/* モバイル版　モデル詳細 ここから↓ */
.hero-subpage {
    height: 150px; /* モバイルでの高さを調整 */
    margin-bottom: 30px; /* 余白を調整 */
}

.subpage-title {
    font-size: 2.5em; /* タイトルを小さく */
}

.model-details-section {
    padding: 30px 20px; /* パディングを調整 */
}

.model-details-grid {
    grid-template-columns: 1fr; /* 1カラム表示にする */
    gap: 40px; /* ギャラリーとサイドバーの間の余白を調整 */
}

.model-gallery {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* 画像ギャラリーの最小幅を調整 */
    gap: 10px; /* 画像間の余白を調整 */
}

.model-info-sidebar {
    padding: 15px; /* サイドバーのパディングを調整 */
}

.sidebar-heading {
    font-size: 1.2em; /* サイドバーの見出しを調整 */
    margin-bottom: 15px;
}

.profile-list li,
.about-model-text,
.model-social-links a,
.booking-button {
    font-size: 0.9em; /* テキスト全体を小さく */
}

.booking-button {
    padding: 12px 20px; /* ボタンのパディングを調整 */
}
/* モバイル版　モデル詳細 ここまで↑ */   
/* モバイル版　モデルになる ここから↓ */
    .becomeamodel-form {
        padding: 15px;
    }
    
    .form-group label {
        font-size: 0.9em;
    }

    .form-group input {
        font-size: 0.9em;
        padding: 8px 10px;
    }

    .file-upload-group > label {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .photo-upload-box {
        padding: 15px;
        min-height: 200px;
    }

    .custom-upload-label img {
        max-width: 60%;
        max-height: 100px;
        margin-bottom: 10px;
    }

    .upload-text {
        font-size: 0.9em;
    }

    .submit-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}