/* Global Styles */
:root {
    --primary-color: #ffc5c0;
    --secondary-color: #c0faff;
    --text-color: #333333;
    --light-color: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    font-weight: 500;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

section {
    padding: 4rem 0;
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--text-color);
    text-align: center;
    padding: 0;
    height: 500px;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 197, 192, 0.7);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.cta-button {
    background-color: var(--light-color);
    color: var(--text-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 4px 8px var(--shadow-color);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px var(--shadow-color);
}

/* Bio Section */
.bio {
    background-color: var(--light-color);
    padding: 3rem 0;
}

.bio-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.profile-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.profile-img {
    width: 250px;
    height: 250px;
    border-radius: 20%;
    object-fit: cover;
    box-shadow: 0 4px 8px var(--shadow-color);
}

.bio-text {
    flex: 2;
}

.bio-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.bio-text h3 {
    text-align: left;
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.bio-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Why Choose Me Section */
.why-choose-me {
    background-color: var(--light-color);
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    list-style-type: none;
}

.benefits-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    margin-right: 10px;
}

/* Services Section */
.services {
    background-color: var(--secondary-color);
    background-image: linear-gradient(to bottom right, var(--light-color), var(--secondary-color));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px var(--shadow-color);
    -webkit-transition: -webkit-transform 0.3s, box-shadow 0.3s;
    -moz-transition: -moz-transform 0.3s, box-shadow 0.3s;
    -ms-transition: -ms-transform 0.3s, box-shadow 0.3s;
    -o-transition: -o-transform 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    border-top: 4px solid var(--primary-color);
    cursor: pointer;
}

.service-card:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-color);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
}

.card-hint {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.service-card:hover .card-hint {
    opacity: 1;
}

/* TikTok Videos Section */
.tiktok-videos {
    background-color: var(--light-color);
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-container {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px var(--shadow-color);
    transition: transform 0.3s;
}

.video-container:hover {
    transform: translateY(-5px);
}

.tiktok-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.video-container h3 {
    padding: 1rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

.tiktok-note {
    text-align: center;
    font-style: italic;
}

.tiktok-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.tiktok-link:hover {
    color: #ff9d95;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--light-color);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.social-link.whatsapp {
    background-color: #25D366;
}

.social-link.tiktok {
    background-color: #000000;
}

.social-link.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    display: block;
}

.modal-content {
    background-color: var(--light-color);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--text-color);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Form Styles */
.booking-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 197, 192, 0.3);
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-button:hover {
    background-color: #ff9d95;
    transform: translateY(-2px);
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-button:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .bio-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .bio-text h2 {
        text-align: center;
    }
    
    .services-grid,
    .video-gallery {
        grid-template-columns: 1fr;
    }
    
    .tiktok-video {
        height: 300px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
}
