/* =Theme Variables
----------------------------------------------- */
:root {
    --deep-blue: #0a0a23;
    --dark-purple: #1a1a3a;
    --accent-pink: #ff6b9d;
    --accent-gold: #f9c74f;
    --accent-teal: #4ecdc4;
    --light-text: #f5f5f5;
    --medium-gray: #8a8a8a;
    --card-bg: #1e1e3d;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-purple));
    color: var(--light-text);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

/* Header Styles */
header {
    background-color: rgba(10, 10, 35, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-pink);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--accent-pink);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: width 0.3s;
}

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

.header-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-pink);
    color: white;
}

.btn-primary:hover {
    background-color: #e55a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

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

.btn-secondary:hover {
    background-color: rgba(78, 205, 196, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 26, 58, 0.7) 0%, rgba(10, 10, 35, 0.9) 70%);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--medium-gray);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.category-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s;
}

.category-tag:hover {
    background: var(--accent-pink);
    transform: translateY(-3px);
    cursor: pointer;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: rgba(26, 26, 58, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.section-header p {
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.card-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.card-content a {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.card-content a i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.card-content a:hover i {
    transform: translateX(5px);
}

/* Try On Section */
.try-on {
    padding: 80px 0;
    text-align: center;
}

.try-on-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.try-on-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.try-on-content p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.upload-area {
    border: 2px dashed var(--accent-teal);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-area:hover {
    background: rgba(78, 205, 196, 0.1);
}

.upload-area i {
    font-size: 48px;
    color: var(--accent-teal);
    margin-bottom: 15px;
}

.upload-area h3 {
    margin-bottom: 10px;
}

.before-after {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.before, .after {
    width: 48%;
    text-align: center;
}

.before h3, .after h3 {
    margin-bottom: 15px;
}

.image-placeholder {
    height: 250px;
    background: var(--dark-purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    font-size: 14px;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background-color: rgba(26, 26, 58, 0.5);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    background: var(--accent-pink);
    transform: translateY(-5px);
}

.category-card i {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.category-card h3 {
    font-size: 18px;
    color: white;
}

/* Footer */
footer {
    background: var(--deep-blue);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-pink);
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--light-text);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-pink);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--medium-gray);
    font-size: 14px;
}

/* Page/Post Content */
/* =Enhanced Page/Post Content
----------------------------------------------- */
.page-content, .post-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0ff;
}

.page-title, .post-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.page-title::after, .post-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-pink);
    border-radius: 2px;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.post-meta a {
    color: var(--accent-teal);
    font-weight: 500;
}

/* Content Styling */
.page-content p, 
.post-content p {
    margin-bottom: 1.8rem;
}

.page-content a, 
.post-content a {
    color: var(--accent-teal);
    text-decoration: none;
    position: relative;
    font-weight: 500;
}

.page-content a:hover, 
.post-content a:hover {
    color: var(--accent-pink);
}

.page-content a::after, 
.post-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: width 0.3s;
}

.page-content a:hover::after, 
.post-content a:hover::after {
    width: 100%;
}

/* Headings */
.page-content h1, .page-content h2, .page-content h3, .page-content h4,
.post-content h1, .post-content h2, .post-content h3, .post-content h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.page-content h2, 
.post-content h2 {
    font-size: 2.2rem;
}

.page-content h2::before, 
.post-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    height: 30px;
    width: 5px;
    background: var(--accent-pink);
    border-radius: 3px;
}

.page-content h3, 
.post-content h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.page-content h4, 
.post-content h4 {
    font-size: 1.4rem;
    color: var(--accent-teal);
}

/* Images */
.page-content img, 
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.page-content img:hover, 
.post-content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Blockquotes */
.page-content blockquote, 
.post-content blockquote {
    border-left: 4px solid var(--accent-pink);
    background: rgba(255, 107, 157, 0.1);
    padding: 25px;
    margin: 40px 0;
    border-radius: 0 10px 10px 0;
    position: relative;
    font-style: italic;
}

.page-content blockquote::before, 
.post-content blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 5rem;
    color: rgba(255, 107, 157, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Lists */
.page-content ul, 
.post-content ul,
.page-content ol, 
.post-content ol {
    margin: 30px 0;
    padding-left: 30px;
}

.page-content li, 
.post-content li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.page-content ul li::before, 
.post-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-pink);
    font-size: 1.5rem;
    line-height: 1;
}

.page-content ol {
    counter-reset: item;
}

.page-content ol li, 
.post-content ol li {
    counter-increment: item;
}

.page-content ol li::before, 
.post-content ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 600;
}

/* WordPress specific classes */
.wp-block-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.wp-block-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    height: 30px;
    width: 5px;
    background: var(--accent-pink);
    border-radius: 3px;
}

.wp-block-paragraph {
    margin-bottom: 1.8rem;
}

/* Featured Image */
.featured-image {
    margin: 30px 0;
    text-align: center;
}

.post-featured-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-content, .post-content {
        padding: 40px 0;
    }
    
    .page-title, .post-title {
        font-size: 2.2rem;
    }
    
    .page-content h2, 
    .post-content h2 {
        font-size: 1.8rem;
    }
    
    .page-content h3, 
    .post-content h3 {
        font-size: 1.5rem;
    }
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .before-after {
        flex-direction: column;
        gap: 30px;
    }
    
    .before, .after {
        width: 100%;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-actions {
        margin-top: 15px;
    }
    
    .hero {
        padding: 70px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .try-on-content {
        padding: 30px 20px;
    }
    
    .page-content, .post-content {
        padding: 40px 0;
    }
}