/*
Theme Name: Blake Becoming
Theme URI: https://pandorablake.com
Author: Pandora Blake
Author URI: https://pandorablake.com
Description: A custom WordPress theme for Blake Becoming - a personal journey and exploration website.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blake-becoming
Tags: custom, portfolio, personal
*/

/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */

:root {
    --color-deep-plum: #2D1B2E;
    --color-warm-wine: #5C3D4E;
    --color-blush: #C9A396;
    --color-cream: #F2EBE6;
    --color-gold: #D4A853;
    --color-hot-pink: #E91E8C;
    --color-dark-pink: #C41874;
    --color-bright-magenta: #FF2D9B;
    --color-purple: #8B2FC9;

    --font-serif: 'Fraunces', serif;
    --font-sans: 'DM Sans', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-deep-plum);
    background-color: var(--color-cream);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

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

a:hover {
    color: var(--color-bright-magenta);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site {
    overflow-x: hidden;
}

/* Styled Ampersands */
.ampersand {
    font-family: var(--font-serif);
    font-style: normal;
    color: var(--color-gold);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background-color: var(--color-deep-plum);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header a {
    color: var(--color-cream);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.site-header a:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--color-cream);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 27, 46, 0.8), rgba(92, 61, 78, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.hero-section .formerly {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-section h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    margin-bottom: 30px;
    font-weight: 900;
}

.hero-section .subtitle {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section .formerly {
        font-size: 1rem;
    }

    .hero-section .subtitle {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Welcome Section
   ========================================================================== */

.welcome-section {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.welcome-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-deep-plum);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.welcome-text p {
    margin-bottom: 20px;
}

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

.welcome-portrait img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(45, 27, 46, 0.2);
}

@media (max-width: 768px) {
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Unspeakable Fantasies Banner
   ========================================================================== */

.fantasies-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    color: var(--color-cream);
    text-align: center;
}

.fantasies-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 47, 201, 0.85), rgba(233, 30, 140, 0.85));
}

.fantasies-banner .container {
    position: relative;
    z-index: 1;
}

.fantasies-banner h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.fantasies-banner p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.fantasies-banner .cta-button {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-deep-plum);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.fantasies-banner .cta-button:hover {
    background-color: var(--color-hot-pink);
    color: var(--color-cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 140, 0.4);
}

/* ==========================================================================
   Five Doorways Section
   ========================================================================== */

.doorways-section {
    padding: 100px 0;
    background-color: var(--color-warm-wine);
    color: var(--color-cream);
}

.doorways-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 70px;
    color: var(--color-cream);
}

.doorways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.doorway-item {
    background-color: rgba(242, 235, 230, 0.1);
    border: 2px solid var(--color-blush);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.doorway-item:hover {
    background-color: var(--color-hot-pink);
    border-color: var(--color-hot-pink);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(233, 30, 140, 0.4);
}

.doorway-item .numeral {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: block;
}

.doorway-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-cream);
}

.doorway-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.doorway-item a {
    color: var(--color-cream);
}

/* ==========================================================================
   Book Mailing List Section
   ========================================================================== */

.mailing-list-section {
    padding: 100px 0;
    background-color: var(--color-cream);
    text-align: center;
}

.mailing-list-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--color-deep-plum);
}

.mailing-list-section .book-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-purple);
    margin-bottom: 20px;
}

.mailing-list-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.mailing-list-form {
    max-width: 500px;
    margin: 0 auto;
}

.mailing-list-form input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid var(--color-warm-wine);
    border-radius: 50px;
    margin-bottom: 20px;
    font-family: var(--font-sans);
}

.mailing-list-form button {
    background-color: var(--color-hot-pink);
    color: var(--color-cream);
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.mailing-list-form button:hover {
    background-color: var(--color-bright-magenta);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 140, 0.4);
}

/* ==========================================================================
   Journey Timeline Section
   ========================================================================== */

.journey-section {
    padding: 100px 0;
    background-color: var(--color-deep-plum);
    color: var(--color-cream);
}

.journey-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: var(--color-cream);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-hot-pink) 0%, var(--color-gold) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
}

.timeline-item:nth-child(even) .timeline-empty {
    order: 2;
}

.timeline-content {
    padding: 30px;
    background-color: rgba(242, 235, 230, 0.1);
    border-radius: 10px;
    border: 2px solid var(--color-blush);
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--color-gold);
}

.timeline-content .years {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background-color: var(--color-gold);
    border: 4px solid var(--color-deep-plum);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-empty {
    /* Empty space for alternating layout */
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 50px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        order: 0;
    }

    .timeline-item:nth-child(even) .timeline-empty {
        display: none;
    }

    .timeline-item .timeline-content {
        text-align: left !important;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-empty {
        display: none;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: var(--color-deep-plum);
    color: var(--color-cream);
    padding: 60px 0 30px;
}

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

.footer-content p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.social-links a {
    color: var(--color-cream);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-hot-pink);
}

.copyright {
    margin-top: 30px;
    opacity: 0.7;
    font-size: 0.9rem;
}
