/* 
   AINudeGeneratorCO.love - Colombian AI Nude Generator Website
   Unique design with Colombian flag-inspired colors
*/

:root {
    /* Colombian flag colors */
    --yellow: #FCD116;
    --blue: #003893;
    --red: #CE1126;
    
    /* Additional colors */
    --dark: #1a1a2e;
    --light: #ffffff;
    --gray: #f0f0f0;
    --card-bg: rgba(26, 26, 46, 0.7);
    --gradient: linear-gradient(135deg, var(--yellow), var(--red));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--light);
    background-color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

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

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

/* Accent Text */
.accent-text {
    color: var(--yellow);
    position: relative;
    display: inline-block;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

/* Animated Background */
.diagonal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--dark) 25%, 
        rgba(0, 56, 147, 0.1) 25%, 
        rgba(0, 56, 147, 0.1) 50%, 
        var(--dark) 50%, 
        var(--dark) 75%, 
        rgba(0, 56, 147, 0.1) 75%
    );
    background-size: 100px 100px;
    animation: moveDiagonal 20s linear infinite;
    z-index: 1;
    opacity: 0.4;
}

@keyframes moveDiagonal {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

/* Navigation */
header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.accent {
    color: var(--yellow);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-badge {
    display: flex;
    align-items: center;
    background: rgba(252, 209, 22, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(252, 209, 22, 0.3);
    font-weight: 500;
}

.badge-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: var(--yellow);
}

.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.2s;
}

.hero-visual.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Hexagon Gallery - Colombian inspired visual */
.hexagon-gallery {
    position: relative;
    width: 100%;
    height: 400px;
}

.hex {
    position: absolute;
    width: 200px;
    height: 230px;
    background-color: var(--dark);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hex1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle at center, var(--yellow) 0%, var(--dark) 80%);
    z-index: 3;
}

.hex2 {
    top: 140px;
    left: calc(50% - 105px);
    background: radial-gradient(circle at center, var(--blue) 0%, var(--dark) 80%);
    z-index: 2;
}

.hex3 {
    top: 140px;
    left: calc(50% + 55px);
    background: radial-gradient(circle at center, var(--red) 0%, var(--dark) 80%);
    z-index: 1;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow), var(--red));
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(206, 17, 38, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(206, 17, 38, 0.5);
}

.cta-button:hover::before {
    left: 100%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(206, 17, 38, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(206, 17, 38, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(206, 17, 38, 0.3);
    }
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(206, 17, 38, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.feature-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 209, 22, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--yellow);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* How To Section */
.how-to {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(to bottom, var(--dark), rgba(0, 56, 147, 0.1), var(--dark));
}

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

.step {
    display: flex;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

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

.step.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 2rem;
    color: var(--dark);
    box-shadow: 0 10px 20px rgba(206, 17, 38, 0.3);
}

.step-content {
    flex: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom left, rgba(0, 56, 147, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial {
    flex: 1 1 300px;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.testimonial.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    opacity: 0.1;
    color: var(--yellow);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.rating {
    color: var(--yellow);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    position: relative;
}

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

.faq-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--yellow), var(--red));
    border-radius: 4px 0 0 4px;
}

.faq-item:hover {
    transform: translateX(10px);
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 56, 147, 0.9) 0%, rgba(206, 17, 38, 0.9) 100%);
    position: relative;
    margin-top: 4rem;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}

.final-cta h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.final-cta p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--dark);
    padding: 5rem 0 2rem;
    position: relative;
}

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

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

.footer-logo {
    margin-bottom: 1rem;
    display: block;
}

.footer-branding p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.7;
}

.footer-links h4,
.footer-legal h4 {
    color: var(--yellow);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-legal h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--yellow), var(--red));
}

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

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

.footer-links a,
.footer-legal a {
    opacity: 0.7;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-links a:hover,
.footer-legal a:hover {
    opacity: 1;
    padding-left: 10px;
    color: var(--yellow);
}

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

.keywords {
    margin-top: 1rem;
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 101;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--dark);
        padding: 6rem 2rem;
        transition: right 0.3s ease;
        z-index: 100;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hexagon-gallery {
        height: 300px;
        margin: 0 auto 2rem;
        max-width: 300px;
    }
    
    .hex {
        width: 150px;
        height: 170px;
    }
    
    .hex1 {
        top: 0;
    }
    
    .hex2 {
        top: 85px;
        left: calc(50% - 75px);
    }
    
    .hex3 {
        top: 85px;
        left: calc(50% + 30px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin: 0 auto 1.5rem;
    }
    
    .step-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .hex {
        width: 120px;
        height: 140px;
    }
    
    .hex2 {
        left: calc(50% - 60px);
    }
    
    .hex3 {
        left: calc(50% + 20px);
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
    }
}
