/* 
   AINudeGeneratorIN.love - Indian AI Nude Generator Website
   Custom CSS with Indian-inspired design elements and colors
*/

:root {
    /* Indian flag-inspired colors */
    --saffron: #FF9933;
    --white: #FFFFFF;
    --green: #138808;
    --blue: #000080; /* Navy blue from Ashoka Chakra */
    
    /* Additional colors */
    --dark: #1a1a1a;
    --dark-accent: #252836;
    --light-gray: #f5f5f7;
    --medium-gray: #888888;
    
    /* Functional colors */
    --text-color: #333333;
    --text-light: #666666;
    --accent: var(--saffron);
    --secondary-accent: var(--green);
    --background: #f8f8f8;
    --card-bg: var(--white);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--saffron) 0%, #FF7722 100%);
    --gradient-secondary: linear-gradient(135deg, var(--green) 0%, #0A6E0A 100%);
    --gradient-card: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Poppins', 'Noto Sans', sans-serif;
    background-color: var(--background);
    color: var(--text-color);
    font-size: 1.6rem;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

/* Background Pattern - Indian Inspired */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--saffron) 1px, transparent 1px),
                      radial-gradient(var(--green) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h1 {
    font-size: 4.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 3.8rem;
    font-weight: 700;
}

h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.accent {
    color: var(--accent);
    position: relative;
}

/* Header & Navigation */
.header {
    padding: 2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
}

.logo-icon {
    margin-right: 1rem;
}

.main-nav {
    display: flex;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background-color: rgba(255, 153, 51, 0.1);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    width: 28px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section with Indian Mandala Elements */
.hero {
    padding: 15rem 0 10rem;
    position: relative;
    overflow: hidden;
    background-color: var(--background);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mandala-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.left-mandala {
    top: -100px;
    left: -200px;
    background-image: radial-gradient(circle, var(--saffron) 10%, transparent 60%);
}

.right-mandala {
    bottom: -100px;
    right: -200px;
    background-image: radial-gradient(circle, var(--green) 10%, transparent 60%);
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    z-index: 2;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    gap: 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    background: rgba(255, 153, 51, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-color);
}

.badge-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.8rem;
    fill: var(--accent);
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.india-pattern {
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.india-visual {
    width: 100%;
    height: 100%;
}

/* Call to Action Buttons */
.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.25);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.35);
    color: var(--white);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.15);
}

.cta-button.secondary:hover {
    background: rgba(255, 153, 51, 0.1);
    transform: translateY(-3px);
}

.arrow {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 153, 51, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 153, 51, 0);
    }
}

.cta-center {
    text-align: center;
    margin-top: 5rem;
}

/* Features Section - Indian Rangoli-inspired Cards */
.features {
    padding: 10rem 0;
    background-color: var(--background);
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 3px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.animate {
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--accent);
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.feature-card p {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* How It Works Section - Chakra-inspired */
.how-it-works {
    padding: 10rem 0;
    background-color: #FCFCFC;
    position: relative;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-decoration {
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    z-index: 0;
}

.steps-line {
    height: 100%;
    width: 10px;
}

.step {
    display: flex;
    margin-bottom: 8rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.step:last-child {
    margin-bottom: 0;
}

.step.animate {
    opacity: 0;
    transform: translateY(30px);
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 3rem;
    box-shadow: 0 6px 15px rgba(255, 153, 51, 0.25);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h3 {
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-light);
}

/* Testimonials Section - Indian Styled Cards */
.testimonials {
    padding: 10rem 0;
    background-color: var(--background);
    position: relative;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-card.animate {
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--accent);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(255, 153, 51, 0.1);
    line-height: 1;
}

.testimonial-rating {
    color: #FFC107;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
}

.author-location {
    font-size: 1.4rem;
    color: var(--text-light);
}

/* FAQ Section - Rangoli-inspired */
.faq {
    padding: 10rem 0;
    background-color: #FCFCFC;
    position: relative;
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    cursor: pointer;
}

.faq-item.animate {
    opacity: 0;
    transform: translateY(30px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    position: relative;
    padding: 2rem 5rem 2rem 2rem;
    margin: 0;
    font-size: 1.8rem;
    color: var(--text-color);
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 2rem;
}

.faq-answer p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #FF9933 0%, #FF8000 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: 0;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 20%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: var(--white);
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.final-cta .cta-button {
    background: var(--white);
    color: var(--accent);
}

.final-cta .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Footer - Indian-inspired Design */
.footer {
    padding: 8rem 0 3rem;
    background-color: #FCFCFC;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo svg {
    margin-right: 1rem;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-light);
}

.footer h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 1rem;
}

.footer-links a,
.footer-legal a {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 3rem;
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-light);
}

.keywords {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* Media Queries */
@media (max-width: 1024px) {
    html {
        font-size: 58%;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-visual {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content {
        margin-bottom: 5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56%;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.4s ease;
        z-index: 100;
    }
    
    .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 101;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 54%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .hero {
        padding: 12rem 0 6rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feature-grid,
    .testimonial-container {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-circle {
        margin: 0 auto 2rem;
    }
    
    .steps-decoration {
        display: none;
    }
}
