/*
 * Isabella Skye - Premium Content Creator Website
 * Elegant, sophisticated styling with a rich color palette
 */

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

:root {
    /* Color Palette */
    --primary: #9D4E6B;     /* Rich Mauve */
    --primary-light: #BD7A93; /* Light Mauve */
    --secondary: #D8B4A0;   /* Soft Peach */
    --accent: #50404D;      /* Deep Plum */
    --dark: #2D232E;        /* Dark Plum */
    --light: #F5F5F5;       /* Off White */
    --gray: #707070;        /* Medium Gray */
    --light-gray: #E5E5E5;  /* Light Gray */
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    
    /* Spacing and Sizes */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --radius: 4px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    font-weight: 300;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark);
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.1rem;
}

section {
    padding: var(--section-padding);
    position: relative;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

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

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

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

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

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

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

.btn-nav {
    background-color: var(--primary);
    color: var(--light);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

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

/* Age Verification */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.age-verification-content {
    background-color: var(--light);
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    overflow: hidden;
}

.age-header {
    background-color: var(--primary);
    padding: 20px;
    text-align: center;
}

.age-header h2 {
    color: var(--light);
    margin: 0;
}

.age-body {
    padding: 30px;
    text-align: center;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 20px;
}

.age-disclaimer {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* Header and Navigation */
header {
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(45, 35, 46, 0.95);
}

header.scrolled h1,
header.scrolled nav ul li a {
    color: var(--light);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    margin-left: 15px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

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

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

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(45, 35, 46, 0.8), rgba(45, 35, 46, 0.8)), url('https://via.placeholder.com/1920x1080?text=Isabella+Skye') center/cover no-repeat;
    color: var(--light);
    text-align: center;
    padding-top: 80px;
}

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

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--light);
    opacity: 0.9;
}

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

/* About Section */
.about {
    background-color: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 50px;
    align-items: center;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 0 10px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-quote {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: var(--radius);
    position: relative;
}

.about-quote::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: var(--heading-font);
    color: var(--primary);
    opacity: 0.2;
    line-height: 0;
}

blockquote {
    position: relative;
    z-index: 1;
}

blockquote p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
}

blockquote cite {
    font-style: normal;
    color: var(--primary);
    font-weight: 500;
}

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

.gallery .section-header h2 {
    color: var(--light);
}

.gallery .section-header p {
    color: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0.7;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:nth-child(1) {
    background: url('https://via.placeholder.com/600x300?text=Portraits') center/cover no-repeat;
}

.gallery-item:nth-child(2) {
    background: url('https://via.placeholder.com/600x300?text=Behind+The+Scenes') center/cover no-repeat;
}

.gallery-item:nth-child(3) {
    background: url('https://via.placeholder.com/600x300?text=Fantasy') center/cover no-repeat;
}

.gallery-item:nth-child(4) {
    background: url('https://via.placeholder.com/600x300?text=Videos') center/cover no-repeat;
}

.gallery-item:hover::before {
    opacity: 0.9;
}

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.gallery-content h3 {
    color: var(--light);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-content p {
    color: var(--light-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.gallery-cta {
    margin-top: 50px;
    text-align: center;
}

.gallery-cta p {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 20px;
}

/* Updates Section */
.updates {
    background-color: var(--light);
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.update-card {
    display: flex;
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.update-date {
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    color: var(--light);
    padding: 15px 10px;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.month {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.day {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--heading-font);
}

.update-content {
    padding: 20px;
    flex: 1;
}

.update-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.update-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--gray);
}

.read-more {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Resources Section */
.resources {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(157, 78, 107, 0.05), transparent);
    z-index: 1;
}

.resources .container {
    position: relative;
    z-index: 2;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.resource-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-column a {
    padding: 15px;
    background: #fff;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(157, 78, 107, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.resource-column a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: all 0.3s ease;
}

.resource-column a:hover {
    transform: translateY(-5px);
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.resource-column a:hover::before {
    width: 100%;
}

/* Subscribe Section */
.subscribe {
    background-color: var(--dark);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 107, 0.2) 0%, rgba(80, 64, 77, 0.2) 100%);
    z-index: 1;
}

.subscribe .container {
    position: relative;
    z-index: 2;
}

.subscribe-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.subscribe-content h2 {
    color: var(--light);
    margin-bottom: 20px;
}

.subscribe-content p {
    color: var(--light-gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.subscription-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tier {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: var(--transition);
}

.tier:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tier.featured {
    background-color: rgba(157, 78, 107, 0.2);
    border-color: var(--primary-light);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tier.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.tier-header {
    margin-bottom: 20px;
}

.tier-header h3 {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.price {
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--heading-font);
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
}

.tier-features {
    list-style: none;
    margin-bottom: 25px;
}

.tier-features li {
    margin-bottom: 10px;
    color: var(--light-gray);
    font-size: 0.95rem;
}

.testimonial-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
    position: relative;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
    color: var(--light);
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    color: var(--secondary);
    font-style: normal;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--accent);
    color: var(--light);
    padding: 70px 0 20px;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo svg {
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--light);
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-gray);
    opacity: 0.7;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--primary-light);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-gray);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.age-notice {
    display: inline-block;
    margin-left: 10px;
    font-size: 0.8rem;
    opacity: 0.6;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--light-gray);
    opacity: 0.7;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--secondary);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .about-grid,
    .subscribe-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-quote {
        max-width: 600px;
    }
    
    .resource-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .subscription-tiers {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .tier.featured {
        grid-row: 1;
        transform: scale(1);
    }
    
    .tier.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        height: 24px;
        width: 30px;
        position: relative;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        height: 2px;
        width: 30px;
        background-color: var(--primary);
        position: absolute;
        transition: all 0.3s ease;
    }
    
    header.scrolled .nav-toggle-label span,
    header.scrolled .nav-toggle-label span::before,
    header.scrolled .nav-toggle-label span::after {
        background-color: var(--light);
    }
    
    .nav-toggle-label span {
        top: 11px;
    }
    
    .nav-toggle-label span::before {
        content: '';
        top: -8px;
    }
    
    .nav-toggle-label span::after {
        content: '';
        top: 8px;
    }
    
    .nav-toggle:checked + .nav-toggle-label span {
        background-color: transparent;
    }
    
    .nav-toggle:checked + .nav-toggle-label span::before {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle:checked + .nav-toggle-label span::after {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--light);
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        z-index: 999;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    header.scrolled nav {
        background-color: var(--dark);
    }
    
    .nav-toggle:checked ~ nav {
        height: auto;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    header.scrolled nav ul li a {
        color: var(--light);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 80%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .subscription-tiers {
        grid-template-columns: 1fr;
    }
}
