/* 
 * undresslove.party - Main Stylesheet
 * Vibrant party theme with hot pink and yellow/orange accents
 */

/* Base styles and reset */
:root {
    --primary: #ff007c;      /* Hot pink */
    --secondary: #ffb300;    /* Amber/Gold */
    --dark: #151515;         /* Near black */
    --light: #ffffff;        /* White */
    --gray: #f0f0f0;         /* Light gray */
    --dark-gray: #333333;    /* Dark gray */
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --shadow: 0 10px 30px rgba(255, 0, 124, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    cursor: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Custom cursor */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.2s, height 0.2s;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    background: rgba(255, 0, 124, 0.2);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: 0.1s;
}

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

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

h1 span {
    color: var(--primary);
    position: relative;
}

h1 span:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    opacity: 0.3;
}

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

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--gradient);
    bottom: -10px;
    left: 20%;
}

.section-header p {
    color: var(--dark-gray);
    font-size: 1.2rem;
}

/* Buttons and Links */
a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

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

.primary-button {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 0, 124, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.primary-button:hover {
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 124, 0.4);
}

.primary-button:hover:before {
    opacity: 1;
}

.primary-button span {
    margin-left: 8px;
    transition: var(--transition);
}

.primary-button:hover span {
    transform: translateX(5px);
}

.primary-button.large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: var(--light);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 0, 124, 0.3);
}

.cta-button:hover {
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 124, 0.4);
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

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

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

.logo span {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

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

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

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

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

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

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

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
}

.hero-image svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(255, 0, 124, 0.2));
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 0, 124, 0.05);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 179, 0, 0.05);
    bottom: -50px;
    right: -50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(255, 0, 124, 0.05);
    top: 50%;
    right: 10%;
}

.hero-cta {
    margin-top: 2rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--gray);
}

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

.feature-card {
    background: var(--light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: translateY(0);
    opacity: 0;
}

.feature-card.revealed {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 124, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--light);
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    flex-direction: column;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-right: 25px;
    position: relative;
    padding-bottom: 15px;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

.connector {
    display: none;
    height: 2px;
    flex-grow: 1;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin: 0 20px;
    align-self: center;
}

.how-cta {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--gray);
}

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

.faq-item {
    background: var(--light);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

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

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 124, 0.15);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-item p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--light);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.footer-icon {
    margin-right: 15px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Media Queries */
@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        text-align: left;
    }
    
    .steps {
        flex-direction: row;
    }
    
    .step {
        flex: 1;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .connector {
        display: block;
    }
    
    .footer-top {
        flex-direction: row;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--light);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
    }
    
    nav ul.active {
        transform: translateY(0);
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero h1 span:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    body {
        cursor: auto;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
}
