/* Pregarnime.com - Professional Dating Site CSS */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 15px 0;
    z-index: 10000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #4A90E2;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-decline {
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4A90E2;
    color: white;
}

.btn-accept:hover {
    background: #357ABD;
    transform: translateY(-1px);
}

.btn-decline {
    background: transparent;
    color: white;
    border: 1px solid #666;
}

.btn-decline:hover {
    background: #666;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4A90E2;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 50%, #4A90E2 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item .icon {
    font-size: 1.5rem;
}

.cta-section {
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2C3E50;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 3px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: white;
    background: transparent;
    color: white;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-info {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-info small {
    font-size: 0.85rem;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

.age-restriction {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.age-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #2C3E50;
    font-weight: 700;
}

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

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #4A90E2;
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2C3E50;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* How It Works Section */
.how-works {
    padding: 100px 0;
    background: white;
}

.how-works h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #2C3E50;
    font-weight: 700;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #4A90E2;
    font-weight: bold;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2C3E50;
    font-weight: 600;
}

.step p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #2C3E50;
    font-weight: 700;
}

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

.testimonial {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 4px solid #4A90E2;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #4A90E2;
    font-weight: bold;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    color: #4A90E2;
    font-weight: 600;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta > p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 30px;
    max-width: 600px;
    margin: 0 auto 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-tag {
    margin-top: 1.5rem;
}

.price-small {
    font-size: 1rem;
    color: #BDC3C7;
    font-weight: 500;
}

.cta-button-large {
    display: inline-block;
    background: #4A90E2;
    color: white;
    padding: 25px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
    margin-bottom: 1rem;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.6);
    background: #357ABD;
}

.guarantee {
    font-size: 1.1rem;
    color: #4CAF50;
    font-weight: 600;
    margin-top: 1.5rem;
}

.legal-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

.legal-note a {
    color: #4A90E2;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #4A90E2;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4A90E2;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: white;
    min-height: 100vh;
}

.legal-page .container {
    max-width: 800px;
}

.legal-page h1 {
    color: #2C3E50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page h2 {
    color: #2C3E50;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    border-bottom: 2px solid #4A90E2;
    padding-bottom: 0.5rem;
}

.legal-page h3 {
    color: #2C3E50;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.legal-page p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.legal-page ul, .legal-page ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.legal-page a {
    color: #4A90E2;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #357ABD;
}

.legal-page strong {
    color: #2C3E50;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .step::after {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-highlight {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .cta-button-large {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
}


/* Pricing Info in Footer */
.pricing-info {
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-disclaimer {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .price-disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}
