/* 
   Main CSS for makeaiporn.love
   Modern dark theme with purple and cyan accents
*/

/* Base Styles & CSS Reset */
:root {
    --primary: #3D1A54;
    --secondary: #00E5FF;
    --dark-bg: #170824;
    --card-bg: #2A0E38;
    --text: #FFFFFF;
    --text-secondary: #BBBBFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
}

h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.highlight {
    color: var(--secondary);
    font-weight: 900;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 7%;
    background-color: rgba(23, 8, 36, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-container h1 {
    font-size: 1.5rem;
    margin: 0;
}

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

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

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5rem 7%;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(61, 26, 84, 0.8), rgba(23, 8, 36, 0.9));
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.hero-graphic {
    max-width: 500px;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    color: white;
    border: none;
}

.btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
}

/* About Section */
.about {
    padding: 5rem 7%;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.card-icon {
    margin-bottom: 1.5rem;
}

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

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

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.check-icon {
    flex-shrink: 0;
}

/* CTA Section */
.cta {
    padding: 5rem 7%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), rgba(23, 8, 36, 0.9));
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.cta p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--card-bg);
    padding: 3rem 7% 1.5rem;
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-links h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.copyright {
    grid-column: 1 / -1;
    margin-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .feature-wrapper {
        grid-template-columns: 1fr;
    }
    
    .feature-text {
        order: 2;
    }
    
    .feature-graphic {
        order: 1;
        margin: 0 auto;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        padding: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 5%;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .about, .features, .cta {
        padding: 3rem 5%;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}
