/* 
 * freeundress.download - Main Stylesheet
 * Unique purple and gold theme with modern layout
 */

/* Base styles and reset */
:root {
    --primary: #ffcc33;       /* Gold */
    --primary-light: #ffe066; /* Light gold */
    --primary-dark: #e6ac00;  /* Dark gold */
    --secondary: #2a0845;     /* Deep purple */
    --secondary-light: #6441a5; /* Medium purple */
    --text-light: #ffffff;    /* White text */
    --text-dark: #2c2c2c;     /* Dark text */
    --bg-light: #f8f8f8;      /* Light background */
    --bg-dark: #1c1c1c;       /* Dark background */
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

ul {
    list-style-type: none;
}

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

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

/* Buttons */
.btn-primary, .btn-cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--text-light);
    border: 2px solid var(--secondary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary);
}

.btn-cta {
    background: var(--primary);
    color: var(--secondary);
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 204, 51, 0.4);
    animation: pulse 2s infinite;
}

.btn-cta:hover {
    background: var(--primary-dark);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 51, 0.5);
}

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

/* Header */
header {
    background: var(--secondary);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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 {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
}

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

nav ul li {
    margin-left: 1.5rem;
}

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

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

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--text-light);
}

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

.hero-content {
    max-width: 600px;
    text-align: center;
}

.hero h1 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 400px;
    width: 100%;
    margin-top: 3rem;
}

.hero-image svg {
    width: 100%;
    height: 100%;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.feature h3 {
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    margin-bottom: 0;
}

/* How it Works Section */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(42,8,69,0.05) 0%, rgba(100,65,165,0.1) 100%);
}

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

.step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

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

/* Footer */
footer {
    background: var(--secondary);
    color: var(--text-light);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

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

.footer-logo span {
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero .container {
        flex-direction: row;
    }
    
    .hero-content {
        text-align: left;
        margin-right: 2rem;
    }
    
    .hero-image {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
