/* 
 * pornaiundress.pw - Main Stylesheet
 * Modern, Orange-themed, Dark Design
 */

/* Google Fonts Import - Poppins & Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

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

:root {
    /* Color Palette - Distinct from previous sites */
    --primary: #FF4500;          /* Vibrant Orange-Red */
    --secondary: #FF8C00;        /* Dark Orange */
    --accent: #00CED1;          /* Turquoise - Complementary color */
    --dark: #222222;            /* Near Black */
    --darker: #111111;          /* Deeper Black */
    --light: #f8f8f8;           /* Off White */
    --mid-gray: #666666;        /* Mid Gray */
    --card-bg: #2c2c2c;         /* Card Background */
    
    /* Typography */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Sizes */
    --container-width: 1200px;
    --radius: 8px;
    --radius-lg: 16px;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h1 {
    font-size: 4.8rem;
    font-weight: 800;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

/* Section Styling */
.section {
    padding: 8rem 0;
}

.section-header {
    margin-bottom: 5rem;
}

.text-center {
    text-align: center;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title.centered {
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 6rem;
    height: 0.4rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 0.2rem;
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    font-size: 1.8rem;
    color: var(--mid-gray);
    max-width: 80rem;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.6rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 69, 0, 0.35);
    color: var(--light);
}

.btn-large {
    padding: 1.6rem 3.2rem;
    font-size: 1.8rem;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    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;
    gap: 1rem;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light);
}

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

.logo-img {
    height: 4rem;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

nav ul li a {
    position: relative;
    font-family: var(--heading-font);
    font-weight: 500;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 0.2rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 2.4rem;
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 900;
}

/* Hero Section */
.hero {
    padding: 18rem 0 10rem;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 140, 0, 0.15), transparent 70%);
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

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

.hero-title .highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--mid-gray);
}

.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Features Section */
.features {
    background-color: var(--darker);
}

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

.feature-card {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 69, 0, 0.2);
}

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

.feature-title {
    margin-bottom: 1.5rem;
    color: var(--light);
}

.feature-description {
    color: var(--mid-gray);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 3rem;
}

.process-step {
    position: relative;
    padding: 3rem;
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    counter-increment: step;
}

.process-step::before {
    content: counter(step);
    position: absolute;
    top: -2rem;
    left: 3rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 2rem;
}

.process-title {
    margin-bottom: 1.5rem;
    color: var(--light);
}

.process-description {
    color: var(--mid-gray);
}

/* Gallery Section */
.gallery {
    background-color: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 22rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.gallery-description {
    color: var(--mid-gray);
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border-radius: var(--radius);
    background-color: var(--card-bg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 2rem 3rem;
    cursor: pointer;
    position: relative;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    font-size: 2.4rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    content: '+';
}

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

.faq-item.active .faq-answer {
    max-height: 50rem;
}

.faq-answer-content {
    padding: 0 3rem 2rem;
    color: var(--mid-gray);
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 140, 0, 0.1));
    text-align: center;
}

.cta-content {
    max-width: 70rem;
    margin: 0 auto;
}

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

.cta-description {
    font-size: 1.8rem;
    color: var(--mid-gray);
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    background-color: var(--darker);
    padding: 6rem 0 2rem;
    color: var(--mid-gray);
}

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

.footer-about {
    max-width: 35rem;
}

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

.footer-logo-img {
    height: 5rem;
    width: auto;
}

.footer-logo-text {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light);
}

.footer-heading {
    color: var(--light);
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
}

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

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

.footer-links a {
    color: var(--mid-gray);
}

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

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

.footer-copyright {
    font-size: 1.4rem;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    html {
        font-size: 60%;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        grid-row: 1;
        margin-bottom: 3rem;
    }
    
    .section {
        padding: 6rem 0;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -30rem;
        width: 30rem;
        height: 100vh;
        background-color: var(--dark);
        padding: 8rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 950;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul li {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .overlay.active {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 55%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    .features-grid, .process-steps {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
