/* 
   Main CSS for aiporngirlfriend.site
   Mobile-first design with responsive breakpoints
*/

:root {
    --primary-color: #9C27B0;
    --secondary-color: #FF1493;
    --accent-color: #7B1FA2;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --bg-light: #FFFFFF;
    --bg-dark: #121212;
    --bg-gradient: linear-gradient(135deg, #9C27B0 0%, #FF1493 100%);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-container h1 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background: var(--bg-gradient);
    color: var(--text-light) !important;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(156, 39, 176, 0.3);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(156, 39, 176, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background: linear-gradient(170deg, rgba(255, 20, 147, 0.05) 0%, rgba(156, 39, 176, 0.1) 100%);
}

.hero-content {
    width: 50%;
    padding-right: 30px;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: left;
}

.hero h2:after {
    left: 0;
    transform: none;
}

.hero-visual {
    width: 50%;
    display: flex;
    justify-content: center;
}

.hero-svg {
    width: 100%;
    max-width: 400px;
}

/* Features Section */
.features {
    padding: 80px 5%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Experience Section */
.experience {
    padding: 80px 5%;
    background-color: rgba(156, 39, 176, 0.03);
}

.experience-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.experience-text {
    flex: 1;
}

.experience-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.experience-svg {
    width: 100%;
    max-width: 400px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 5%;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card:before {
    content: """;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 80px;
    color: rgba(156, 39, 176, 0.1);
    font-family: Georgia, serif;
    line-height: 0.8;
}

.star-rating {
    display: flex;
    margin-bottom: 15px;
}

.star, .star-half {
    width: 20px;
    height: 20px;
    margin-right: 2px;
}

.testimonial-card h4 {
    margin-top: 20px;
    font-size: 1rem;
    text-align: right;
    color: var(--primary-color);
}

/* Call to Action Section */
.call-to-action {
    padding: 80px 5%;
    text-align: center;
    background: var(--bg-gradient);
    color: var(--text-light);
}

.call-to-action h2 {
    color: var(--text-light);
}

.call-to-action h2:after {
    background-color: var(--text-light);
}

.call-to-action .cta-button {
    background: white;
    color: var(--primary-color) !important;
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 1.1rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-svg {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.footer-links h3, .footer-disclaimer h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-disclaimer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content, .hero-visual {
        width: 100%;
        padding-right: 0;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero h2 {
        text-align: center;
    }
    
    .hero h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .experience-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    .logo-container h1 {
        font-size: 1rem;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-light);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle svg {
        width: 24px;
        height: 24px;
    }
    
    .features-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 5%;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .features, .experience, .testimonials {
        padding: 60px 5%;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}
