/**
 * Main stylesheet for pornaimaker.love
 * Completely unique design with teal/blue color scheme
 */

/* Base Styles & CSS Reset */
:root {
    --primary: #00B4DB;
    --primary-dark: #0083B0;
    --secondary: #2CC4EA;
    --dark: #222639;
    --light: #F8FCFF;
    --gray: #9BACC4;
    --gradient: linear-gradient(135deg, #00B4DB 0%, #0083B0 100%);
    --shadow: 0 10px 30px rgba(0, 131, 176, 0.15);
}

* {
    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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

.wrapper {
    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.6rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 2rem;
}

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

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

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

section {
    padding: 8rem 0;
}

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

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
}

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

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

.site-title {
    font-size: 2.2rem;
    margin: 0;
}

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

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

.main-nav li {
    margin-left: 3rem;
}

.main-nav a {
    font-weight: 500;
    position: relative;
}

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

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

.menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 3rem;
    height: 2.4rem;
    position: relative;
    z-index: 101;
}

.menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    margin: 6px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 15rem 0 10rem;
    background: linear-gradient(to right bottom, rgba(0, 180, 219, 0.05), rgba(0, 131, 176, 0.1));
    overflow: hidden;
    position: relative;
}

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

.hero-content {
    width: 50%;
    padding-right: 3rem;
}

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

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

.hero-image {
    width: 50%;
    position: relative;
}

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

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 131, 176, 0.2);
    color: white;
}

/* Creator Section */
.creator-section {
    background-color: white;
}

.creator-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

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

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

.feature-icon {
    margin: 0 auto 2rem;
}

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

/* Examples Section */
.examples-section {
    background: linear-gradient(to left bottom, rgba(0, 180, 219, 0.05), rgba(0, 131, 176, 0.1));
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.example-item {
    position: relative;
    transition: all 0.3s ease;
}

.example-placeholder {
    height: 200px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.example-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 131, 176, 0.7);
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.example-item:hover {
    transform: scale(1.05);
}

.examples-note {
    text-align: center;
    margin-top: 4rem;
}

/* How It Works Section */
.how-section {
    background-color: white;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 3rem 2rem;
    background-color: white;
    border-radius: 12px;
    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.4rem;
    font-weight: bold;
    border-radius: 50%;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* FAQ Section */
.faq-section {
    background: linear-gradient(to right bottom, rgba(0, 180, 219, 0.05), rgba(0, 131, 176, 0.1));
}

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

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.8rem;
}

.faq-toggle {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 2rem 2rem;
    margin: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* CTA Section */
.final-cta {
    padding: 8rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.final-cta p {
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
    }
}

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

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

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

.footer-title {
    font-size: 2rem;
    margin: 0 0 0 1rem;
}

.footer-title span {
    color: var(--secondary);
}

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

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

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

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

.footer-nav a, .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 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;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 60%;
    }
    
    .hero .wrapper {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        width: 100%;
        padding-right: 0;
    }
    
    .hero-content {
        margin-bottom: 4rem;
        text-align: center;
    }
    
    .hero {
        padding-top: 12rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    .menu-button {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav li {
        margin: 2rem 0;
    }
    
    .main-nav a {
        font-size: 2.2rem;
    }
    
    .feature-card {
        min-width: 100%;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    section {
        padding: 5rem 0;
    }
    
    .hero {
        padding-top: 10rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
}
