/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
    min-width: 1200px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    text-align: center;
    padding-bottom: 15px;
}

.site-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.site-slogan {
    font-size: 14px;
    font-style: italic;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    padding: 8px 15px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.main-nav a:hover {
    background-color: rgba(255,255,255,0.2);
}

/* List Page Styles */
.list-page {
    padding: 30px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
    color: #ff4e50;
    font-size: 28px;
    position: relative;
    padding-bottom: 10px;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ff4e50, #f9d423);
}

.list-layout {
    display: flex;
    justify-content: space-between;
}

.recent-updates {
    width: 200px;
}
.recent-updates .model-card{
    margin-bottom: 20px;
}

.all-models {
    width: 940px;
}

.recent-updates h3, .all-models h3 {
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.model-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.model-img-container {
    position: relative;
    padding-top: 133.33%; /* 3:4 Aspect Ratio */
    overflow: hidden;
}

.model-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-card:hover .model-img {
    transform: scale(1.05);
}

.model-info {
    padding: 10px;
    text-align: center;
}

.model-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.region {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

.region.central {
    background-color: #ffcccb;
    color: #d32f2f;
}

.region.east {
    background-color: #c8e6c9;
    color: #388e3c;
}

.region.north {
    background-color: #bbdefb;
    color: #1976d2;
}

.region.west {
    background-color: #e1bee7;
    color: #7b1fa2;
}

.price {
    font-weight: 700;
    color: #ff4e50;
    font-size: 15px;
}

/* Detail Page Styles */
.detail-page {
    padding: 30px 0;
}

.model-top {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.model-cover {
    width: 350px;
    flex-shrink: 0;
}

.cover-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.model-profile {
    flex: 1;
}

.model-profile h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff4e50;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.profile-list {
    list-style: none;
    margin-bottom: 25px;
}

.profile-list li {
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
}
.profile-list li.primary{
    color: #ff4e50;
}

.profile-list span {
    font-weight: 600;
    width: 150px;
    display: inline-block;
    color: #555;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.phone {
    background-color: #4CAF50;
}

.sms {
    background-color: #2196F3;
}

.whatsapp {
    background-color: #25D366;
}

.model-videos {
    margin-bottom: 40px;
}

.model-videos h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #555;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.video-container {
    display: flex;
    gap: 20px;
}

.video-wrapper {
    flex: 1;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.video-wrapper video {
    width: 100%;
    height: 600px;
}

.model-bio {
    margin-bottom: 40px;
}

.model-bio h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #555;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.bio-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.model-gallery h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #555;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    padding-top: 133.33%; /* 3:4 Aspect Ratio */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer Styles */
.site-footer {
    background-color: #222;
    color: #aaa;
    padding: 10px 0;
    margin-top: 20px;
}
.copyright {
    text-align: center;
    font-size: 14px;
}

/*join-us*/
.join-us{
    display: grid;
    padding: 5px 2px 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 10px;
}
.join-us .item.telegram{
    background-color: rgb(0, 136, 204);
}
.join-us .item.whatsapp{
    background-color: rgb(37, 211, 102);
}
.join-us .item.massage{
    background-color: #FF6B9D;
}
.join-us .item.contact{
    background-color: #6C5CE7;
}
.join-us .item{
    background-color: rgb(0, 136, 204);
    border-radius: 6px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding: 20px 0;
}
.join-us .item img{
    width: 32px;
    margin-right: 5px;
}

/*contact-us*/
.contact-us{
    text-align: center;
    background-color: #ffe549;
    padding: 20px 40px;
}
.contact-us h1{
    color: #ff0000;
    font-size: 32px;
    margin-bottom: 10px;
}
.contact-us h2{
    color: #128c7e;
    font-size: 18px;
}
.contact-us p{
    margin-bottom: 10px;
}
.contact-us span.primary{
    color: #ff0000;
}
.contact-us p.text-left{
    text-align: left;
}
.contact-us p a{
    color: #ff0000;
    text-decoration: underline;
}
.contact-us img{
    width: 80%;
    border-radius: 8px;
    margin: 0 auto;
}