/* Variables */
:root {
    --bg-primary: #EFECE3;
    --accent-primary: #D062B5;
    --accent-dark: #86148B;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --font-heading: 'Courgette', cursive;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 100px;
    }
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(208, 98, 181, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

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

.btn-large {
    padding: 18px 42px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #faf8f3 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(208, 98, 181, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(48px, 6vw, 72px);
    color: var(--accent-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: var(--accent-primary);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 580px;
}

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

.hero-decoration {
    position: relative;
    height: 500px;
}

.decoration-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.decoration-avatar {
    width: 75%;
    height: auto;
    object-fit: cover;
    object-position: center bottom;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* About Section */
.about {
    padding: 100px 20px;
    background-color: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(36px, 5vw, 52px);
    color: var(--accent-dark);
    margin-bottom: 28px;
}

.about-intro {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(208, 98, 181, 0.1) 0%, rgba(134, 20, 139, 0.1) 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}



.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #faf8f3 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: clamp(36px, 5vw, 52px);
    color: var(--accent-dark);
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 27px);
    min-width: 280px;
}

.service-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(208, 98, 181, 0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    margin: 0;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-primary);
    flex-shrink: 0;
}

.service-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: none;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.service-card h3 {
    font-size: 19px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-primary) 100%);
    text-align: center;
    margin-bottom: 60px;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    line-height: 1.8;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--accent-primary);
}

.cta-section .btn-primary:hover {
    background-color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 20px);
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        gap: 30px;
    }
    
    .service-card {
        flex: 0 0 100%;
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 28px;
        font-size: 15px;
    }
    
    .about, .services, .cta-section {
        padding: 60px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        height: 350px;
    }
}
