/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #e1bee7 100%);
    min-height: 100vh;
}

/* Ad Containers */
.ad-container {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 120px;
    height: 600px;
    transition: all 0.3s ease;
}

.left-ad {
    left: 10px;
}

.right-ad {
    right: 10px;
}

.ad-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(233, 30, 99, 0.2);
    transition: transform 0.3s ease;
    border: 2px solid rgba(233, 30, 99, 0.1);
}

.ad-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.3);
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(233, 30, 99, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3);
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.4);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-gif {
    max-width: 320px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(233, 30, 99, 0.2);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #ffffff;
}

.about h2 {
    text-align: center;
    font-size: 2.75rem;
    color: #1a1a1a;
    margin-bottom: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 2;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.skills {
    margin-top: 2.5rem;
}

.skills h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.skills ul {
    list-style: none;
}

.skills li {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    padding: 0.75rem 1.5rem;
    margin-bottom: 0.75rem;
    border-radius: 50px;
    display: inline-block;
    margin-right: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.about-image {
    flex: 1;
}

.profile-image {
    width: 100%;
    max-width: 320px;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(233, 30, 99, 0.2);
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
    background: #fafafa;
}

.portfolio h2 {
    text-align: center;
    font-size: 2.75rem;
    color: #1a1a1a;
    margin-bottom: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(233, 30, 99, 0.2);
}

.portfolio-item img,
.portfolio-item video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img,
.portfolio-item:hover video {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2.5rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.portfolio-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #ffffff;
}

.services h2 {
    text-align: center;
    font-size: 2.75rem;
    color: #1a1a1a;
    margin-bottom: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(233, 30, 99, 0.2);
}

.service-icon {
    color: #e91e63;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.price {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #fafafa;
}

.contact h2 {
    text-align: center;
    font-size: 2.75rem;
    color: #1a1a1a;
    margin-bottom: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.contact-info p {
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1rem;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1.25rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.contact-form button {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2.5rem 0;
}

.footer p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ad-container {
        display: none;
    }
    
    .main-container {
        margin: 10px;
        border-radius: 20px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .about h2,
    .portfolio h2,
    .services h2,
    .contact h2 {
        font-size: 2.25rem;
    }
}