/**
 * Main stylesheet for aiporngenrator.love
 * Unique orange-themed design with modern layout
 */

/* Base Styles & CSS Reset */
:root {
    --primary: #FF6B35;
    --primary-dark: #E8491D;
    --primary-light: #FFB085;
    --dark: #2F2D2E;
    --light: #FFFAF5;
    --accent: #4ECDC4;
    --gradient: linear-gradient(135deg, #FF6B35 0%, #E8491D 100%);
    --shadow: 0 10px 30px rgba(232, 73, 29, 0.15);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

p {
    margin-bottom: 2rem;
}

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

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

ul {
    list-style-type: none;
}

img, svg {
    max-width: 100%;
    height: auto;
}

section {
    padding: 6rem 0;
}

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

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
}

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

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

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

.logo h1 {
    font-size: 2.4rem;
    margin-bottom: 0;
    font-weight: 700;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 2.5rem;
}

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

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

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

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

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, rgba(255, 107, 53, 0.05), rgba(232, 73, 29, 0.1));
    padding: 15rem 0 8rem;
    text-align: center;
}

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

.hero h2 {
    font-size: 4.2rem;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--dark);
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(232, 73, 29, 0.2);
    color: white;
}

/* Generator Section */
.generator-section {
    background-color: #ffffff;
    padding: 8rem 0;
}

.generator-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.generator-info {
    flex: 1;
}

.generator-preview {
    flex: 1;
    display: flex;
    justify-content: center;
}

.preview-image {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.feature-list {
    margin: 2rem 0 3rem;
}

.feature-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Features Section */
.features-section {
    background: linear-gradient(to top left, rgba(255, 107, 53, 0.05), rgba(232, 73, 29, 0.1));
    padding: 8rem 0;
}

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

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 2rem;
}

/* How It Works Section */
.how-section {
    background-color: #ffffff;
    padding: 8rem 0;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--shadow);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
    background: var(--gradient);
    color: white;
    font-size: 2.2rem;
    font-weight: bold;
    border-radius: 50%;
}

.step-arrow {
    font-size: 2.5rem;
    color: var(--primary);
}

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

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

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

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

.footer-logo p {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0 1rem;
}

.footer-logo span {
    color: var(--primary);
}

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

.footer-nav h4, .footer-legal h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.footer-nav a, .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-nav a:hover, .footer-legal a:hover {
    color: white;
}

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

.footer-bottom p {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 58%;
    }
    
    .generator-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 1.5rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 5rem 0;
    }
    
    .hero {
        padding: 12rem 0 6rem;
    }
    
    .hero h2 {
        font-size: 3.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
