/*
 * celebaiporn.pw - Main Stylesheet
 * A premium celebrity-themed design with red and gold accents
 */

/* Base Styles & Variables */
:root {
    --primary: #DC2F02;       /* Bright Red */
    --primary-dark: #9D0208;  /* Dark Red */
    --primary-darker: #6A040F; /* Very Dark Red */
    --primary-darkest: #370617; /* Almost Black Red */
    --accent: #FFBA08;        /* Gold */
    --accent-dark: #E85D04;   /* Dark Gold/Orange */
    --dark: #03071E;          /* Almost Black */
    --light: #FFFFFF;         /* White */
    --gray: #888888;          /* Medium Gray */
    --light-gray: #F0F0F0;    /* Light Gray */
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --shadow: 0 5px 15px rgba(157, 2, 8, 0.3);
    --shadow-gold: 0 5px 15px rgba(255, 186, 8, 0.3);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(157, 2, 8, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(255, 186, 8, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

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

p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.highlight {
    color: var(--accent);
}

.accent {
    color: var(--primary);
    font-weight: bold;
}

.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    font-size: 2.8rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 1.5px;
}

/* Header Styles */
.site-header {
    background-color: rgba(3, 7, 30, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(157, 2, 8, 0.3);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-svg {
    filter: drop-shadow(0 0 5px rgba(255, 186, 8, 0.5));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
}

.domain {
    color: var(--gray);
    font-weight: 300;
    font-size: 1rem;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--light);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

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

.cta-nav {
    padding: 8px 20px;
    background: var(--gradient);
    color: var(--light) !important;
    border-radius: 30px;
    font-weight: 600 !important;
    box-shadow: var(--shadow);
}

.cta-nav:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--primary);
}

.cta-nav::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--light);
    border-radius: 1.5px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-darkest) 0%, transparent 100%);
    opacity: 0.7;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

.tag {
    display: inline-block;
    background: rgba(220, 47, 2, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--accent);
    border: 1px solid var(--primary);
}

.hero-section h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-visual {
    flex: 1;
    max-width: 500px;
}

.visual-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-svg {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 10px 20px rgba(157, 2, 8, 0.4));
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(157, 2, 8, 0.5);
    color: var(--light);
}

.glow {
    animation: glow 2s infinite;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 186, 8, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 186, 8, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 186, 8, 0);
    }
}

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

.btn-secondary:hover {
    background: rgba(255, 186, 8, 0.1);
    transform: translateY(-3px);
    color: var(--accent);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: var(--gradient);
    color: var(--light);
    box-shadow: var(--shadow);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(157, 2, 8, 0.5);
    color: var(--light);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--primary-darkest);
}

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

.gallery-card {
    background: var(--primary-darker);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.card-visual {
    margin-bottom: 20px;
}

.gallery-svg {
    width: 100%;
    max-height: 180px;
    border-radius: var(--radius);
    filter: drop-shadow(0 5px 10px rgba(220, 47, 2, 0.3));
}

.gallery-card h3 {
    color: var(--accent);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100%" height="100%" fill="none"/><circle cx="50" cy="50" r="2" fill="%23DC2F02" opacity="0.5"/></svg>');
    background-size: 50px 50px;
    opacity: 0.03;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    display: flex;
    align-items: flex-start;
    background: rgba(3, 7, 30, 0.5);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: rgba(3, 7, 30, 0.8);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-right: 20px;
    opacity: 0.5;
}

.step-content {
    flex: 1;
}

.step h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-darkest) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="20" fill="none"/><circle cx="10" cy="10" r="1" fill="%23FFBA08" opacity="0.5"/></svg>');
    background-size: 20px 20px;
    opacity: 0.05;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.site-footer {
    background-color: var(--primary-darkest);
    padding: 60px 0 30px;
    margin-top: auto;
    border-top: 1px solid var(--primary-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    filter: drop-shadow(0 0 5px rgba(255, 186, 8, 0.3));
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-nav a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-legal {
    text-align: right;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-darkest);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 7px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -7px);
    }
    
    .hero-section .container {
        flex-direction: column-reverse;
    }
    
    .hero-content, 
    .hero-visual {
        max-width: 100%;
    }
    
    .hero-section h2 {
        font-size: 2.5rem;
    }
    
    .gallery-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-legal {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero-section h2,
    .section-title,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, 
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
