/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Rose Pink Theme */
    --primary-rose: #E8B4B8;
    --secondary-rose: #F5E6E8;
    --accent-rose: #D4A5A9;
    --dark-rose: #C4989D;
    --light-rose: #FDF8F8;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --text-muted: #9B9B9B;
    --white: #FFFFFF;
    --black: #1A1A1A;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows */
    --shadow-light: 0 2px 20px rgba(232, 180, 184, 0.1);
    --shadow-medium: 0 4px 30px rgba(232, 180, 184, 0.15);
    --shadow-heavy: 0 8px 40px rgba(232, 180, 184, 0.2);
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 44px;
    height: 44px;
    border: 2px solid var(--accent-rose);
    border-radius: 50%;
    opacity: 0.3;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-rose);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-rose) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 120px 20px 80px;
    z-index: 2;
}

.hero-logo {
    text-align: center;
    margin-bottom: 40px;
}

.hero-logo-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.floral-accent {
    position: absolute;
    top: -10px;
    left: -15px;
    width: 20px;
    height: 20px;
    background: var(--primary-rose);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    opacity: 0.7;
}

.floral-accent::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent-rose);
    border-radius: 50%;
}

.logo-letter {
    font-family: var(--font-serif);
    font-size: 120px;
    font-weight: 400;
    color: var(--primary-rose);
    line-height: 1;
    display: block;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-rose);
    color: var(--white);
    border-color: var(--primary-rose);
}

.btn-primary:hover {
    background: var(--accent-rose);
    border-color: var(--accent-rose);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-rose);
    border-color: var(--primary-rose);
}

.btn-secondary:hover {
    background: var(--primary-rose);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hero-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-rose), var(--accent-rose));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.element-2 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-rose);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-rose);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-rose);
    color: var(--white);
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-rose);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: var(--text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '•';
    color: var(--primary-rose);
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* Talent Section */
.talent {
    padding: var(--section-padding);
    background: var(--light-rose);
}

.talent-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.model-profile {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.model-profile h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.model-title {
    font-size: 18px;
    color: var(--primary-rose);
    font-weight: 500;
    margin-bottom: 30px;
}

.slideshow-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--secondary-rose);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
    background: var(--secondary-rose);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slide:hover .slide-caption {
    transform: translateY(0);
}

.slide-caption h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 500;
}

.slide-caption p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slideshow-controls button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-rose);
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: var(--shadow-light);
}

.slideshow-controls button:hover {
    background: var(--primary-rose);
    color: var(--white);
    transform: scale(1.1);
}

.slideshow-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-rose);
}

.indicator:hover {
    background: var(--primary-rose);
    transform: scale(1.2);
}

.model-info {
    max-width: 500px;
    margin: 0 auto;
}

.model-info p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-rose);
    margin-bottom: 5px;
}

.stat p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: var(--secondary-rose);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.about-placeholder i {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--primary-rose);
}

.about-placeholder span {
    font-size: 18px;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--light-rose);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-rose);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--secondary-rose);
    border-radius: var(--border-radius);
    font-family: var(--font-sans);
    font-size: 15px;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-rose);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-icon {
    background: var(--primary-rose);
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-rose);
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-rose);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-rose);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding: 100px 20px 40px;
    }
    
    .logo-letter {
        font-size: 80px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .slideshow-wrapper {
        height: 350px;
    }
    
    .slideshow-controls button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .model-profile {
        padding: 30px 20px;
    }
    
    .model-profile h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .logo-letter {
        font-size: 60px;
    }
    
    .hero-title {
        font-size: 24px;
    }
}
