/* Main styles for aifemboyporn.pw - Teal/Mint gradient theme with sidebar layout */
:root {
    --primary: #00CDAC;
    --primary-light: #73F7CD;
    --secondary: #02AAB0;
    --dark: #0A192F;
    --dark-alt: #172A45;
    --light: #FFFFFF;
    --light-alt: #E6F1FF;
    --gray: #8892B0;
    --gradient: linear-gradient(90deg, #00CDAC 0%, #02AAB0 100%);
    --gradient-reverse: linear-gradient(90deg, #02AAB0 0%, #00CDAC 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--light);
    font-weight: 600;
}

h1 {
    font-size: 2.75rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

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

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

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

.highlight {
    color: var(--primary);
    position: relative;
}

.section-tag {
    display: inline-block;
    background: var(--gradient);
    color: var(--light);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Layout Styles - Sidebar Layout */
.page-wrapper {
    display: flex;
    position: relative;
}

.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--dark-alt);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
}

.logo {
    margin-bottom: 3rem;
}

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

.main-nav ul li {
    margin-bottom: 1rem;
}

.main-nav ul li a {
    color: var(--gray);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    margin-left: -1rem;
    transition: var(--transition);
}

.main-nav ul li a:hover, .main-nav ul li a.active {
    color: var(--primary);
    border-left-color: var(--primary);
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 2rem;
}

.sidebar-cta {
    display: block;
    background: var(--gradient);
    color: var(--light);
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.sidebar-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--light);
}

.sidebar-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(10, 25, 47, 0.9);
    border: none;
    border-radius: var(--radius-sm);
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.sidebar-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

.main-content {
    flex: 1;
    margin-left: 250px;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-visual {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--gradient);
    color: var(--light);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--light);
}

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

.btn-outline:hover {
    background: var(--gradient);
    color: var(--light);
    border-color: transparent;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background-color: var(--dark-alt);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

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

.card {
    background-color: rgba(23, 42, 69, 0.5);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 205, 172, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 205, 172, 0.3);
}

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

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

/* Features Section */
.features-section {
    background-color: var(--dark);
    position: relative;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-icon {
    margin-bottom: 1.5rem;
    background-color: rgba(2, 170, 176, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-item h3 {
    margin-bottom: 0.75rem;
}

/* Showcase Section */
.showcase-section {
    background-color: var(--dark-alt);
    position: relative;
}

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

.showcase-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--dark);
    transition: var(--transition);
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.showcase-info {
    padding: 1.5rem;
}

.showcase-info h3 {
    margin-bottom: 0.5rem;
}

.showcase-info p {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background-color: var(--dark);
}

.cta-box {
    background: linear-gradient(145deg, rgba(0, 205, 172, 0.1) 0%, rgba(2, 170, 176, 0.1) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0, 205, 172, 0.2);
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    margin: 0 auto 2rem;
    max-width: 600px;
}

/* Footer Styles */
.footer {
    background-color: var(--dark-alt);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo p {
    margin-top: 1.5rem;
}

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

.footer-nav-group h4 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-nav-group h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
}

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

.footer-nav-group ul li {
    margin-bottom: 0.75rem;
}

.footer-nav-group a {
    color: var(--gray);
}

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

.footer-bottom {
    border-top: 1px solid rgba(136, 146, 176, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 0;
}

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

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .about-cards, .features-grid, .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .sidebar-toggle {
        display: block;
    }
    
    .sidebar-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .sidebar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .sidebar-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .about-cards, .features-grid, .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}
