/* 
 * Main Stylesheet for aipornnude.site
 * Theme: Modern Green/Teal
 */

/* ========== Base Styles ========== */
:root {
    /* Primary Colors */
    --primary-color: #05A66B;
    --secondary-color: #11D3BC;
    --accent-color: #02C39A;
    
    /* Neutral Colors */
    --dark: #1D1D1D;
    --gray-dark: #333333;
    --gray-medium: #777777;
    --gray-light: #DDDDDD;
    --light: #F8F8F8;
    
    /* Functional Colors */
    --text-color: #333333;
    --heading-color: #1D1D1D;
    --link-color: #05A66B;
    --link-hover: #02C39A;
    --button-text: #FFFFFF;
    
    /* Sizes */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    --button-radius: 50px;
    
    /* Typography */
    --body-font: 'Lato', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 5rem 0;
}

.accent {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.accent::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* ========== Buttons ========== */
.primary-button, .secondary-button, .view-button, .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--button-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.primary-button {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--button-text);
    border: none;
    box-shadow: 0 4px 15px rgba(5, 166, 107, 0.3);
}

.primary-button:hover {
    box-shadow: 0 7px 20px rgba(5, 166, 107, 0.5);
    transform: translateY(-2px);
    color: var(--button-text);
}

.primary-button.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.secondary-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-button:hover {
    background-color: rgba(5, 166, 107, 0.1);
    color: var(--primary-color);
}

.view-button {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.view-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--button-text);
    border: none;
    box-shadow: 0 4px 15px rgba(2, 195, 154, 0.3);
}

.cta-button:hover {
    box-shadow: 0 7px 20px rgba(2, 195, 154, 0.5);
    transform: translateY(-2px);
    color: var(--button-text);
}

.pulse {
    animation: pulse 2s infinite;
}

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

.arrow {
    display: inline-block;
    transition: transform var(--transition-normal);
    margin-left: 4px;
}

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

/* ========== Header ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
}

.logo-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.domain {
    color: var(--gray-medium);
    -webkit-text-fill-color: var(--gray-medium);
}

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

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

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

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    color: var(--gray-dark);
    font-weight: 500;
    transition: color var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: transform var(--transition-normal);
    transform-origin: center;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ========== Hero Section ========== */
.hero-section {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 5rem;
    background: linear-gradient(135deg, rgba(5, 166, 107, 0.05) 0%, rgba(17, 211, 188, 0.1) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-svg {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0px 10px 20px rgba(5, 166, 107, 0.2));
}

.floating-badge {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-badge.top {
    top: 0;
    right: 10%;
}

.floating-badge.bottom {
    bottom: 10%;
    left: 0;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* ========== About Section ========== */
.about-section {
    background-color: #fff;
}

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

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
}

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

.feature-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-align: center;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* ========== Gallery Section ========== */
.gallery-section {
    background: linear-gradient(135deg, rgba(5, 166, 107, 0.05) 0%, rgba(17, 211, 188, 0.1) 100%);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    backdrop-filter: blur(3px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    margin-bottom: 1rem;
}

.gallery-cta {
    margin-top: 3rem;
    text-align: center;
}

/* ========== FAQ Section ========== */
.faq-section {
    background-color: #fff;
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 1rem;
}

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

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    transition: color var(--transition-normal);
}

.faq-item:hover .faq-question h3 {
    color: var(--primary-color);
}

.faq-toggle {
    position: relative;
    width: 20px;
    height: 20px;
}

.faq-toggle::before, .faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.faq-toggle::before {
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

.faq-toggle::after {
    width: 2px;
    height: 20px;
    left: 9px;
    top: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding: 0 1rem;
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 1rem;
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 5rem 0;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.cta-section .primary-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ========== Footer ========== */
.site-footer {
    background-color: var(--dark);
    color: var(--gray-light);
    padding: 5rem 0 2rem;
}

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

.footer-brand {
    max-width: 300px;
}

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

.footer-logo-text {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 0.75rem;
    color: white;
}

.footer-tagline {
    color: var(--gray-medium);
}

.footer-nav {
    display: flex;
    gap: 3rem;
}

.footer-nav-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-nav-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-column a {
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

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

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

.copyright {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ========== Responsive Styles ========== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-visual {
        order: 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-normal);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-nav {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
    }
}
