/*
Theme Name: Phoenix Full
Theme URI: https://martinlawrence.ca
Author: Kimi
Description: A bold, full-screen phoenix theme with sweeping wings and flames.
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: phoenix-full
*/

:root {
    --bg-dark: #120600;
    --bg-warm: #1e0d00;
    --accent-orange: #ff5e1a;
    --accent-red: #c41e0b;
    --accent-gold: #ffb700;
    --accent-yellow: #ffe066;
    --text-light: #fff5e6;
    --text-muted: #c9b8a0;
    --font-heading: Georgia, 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

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

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

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

a:hover, a:focus {
    color: var(--accent-yellow);
}

/* Skip link */
.skip-link {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--accent-orange);
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.2s;
}

.skip-link:focus {
    transform: translateY(0);
}

/* ===== HEADER / NAV ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 2rem;
    background: linear-gradient(to bottom, rgba(18,6,0,0.9) 0%, rgba(18,6,0,0) 100%);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 10px rgba(255, 94, 26, 0.4);
}

.site-title a {
    color: inherit;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-orange);
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

/* ===== FULL PAGE HERO ===== */
.hero-full {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
}

/* ===== ANIMATED FIRE BACKGROUND ===== */
.fire-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(ellipse at center bottom, #2a0f00 0%, #120600 50%, #0a0300 100%);
}

.fire-particle {
    position: absolute;
    bottom: -20%;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Fire colors using radial gradients */
.fire-red {
    background: radial-gradient(circle, rgba(200, 40, 10, 0.9) 0%, rgba(180, 30, 5, 0.4) 40%, transparent 70%);
}

.fire-orange {
    background: radial-gradient(circle, rgba(255, 100, 20, 0.85) 0%, rgba(255, 80, 15, 0.35) 45%, transparent 70%);
}

.fire-gold {
    background: radial-gradient(circle, rgba(255, 200, 50, 0.8) 0%, rgba(255, 180, 40, 0.3) 50%, transparent 70%);
}

.fire-yellow {
    background: radial-gradient(circle, rgba(255, 240, 150, 0.7) 0%, rgba(255, 220, 100, 0.25) 50%, transparent 70%);
}

.fire-white {
    background: radial-gradient(circle, rgba(255, 255, 230, 0.6) 0%, rgba(255, 250, 200, 0.2) 50%, transparent 70%);
}

/* Individual fire particle animations */
.fire-1  { left: 5%;  width: 180px; height: 280px; animation: flame-rise-1  4.5s ease-in-out infinite; animation-delay: 0s; }
.fire-2  { left: 12%; width: 220px; height: 350px; animation: flame-rise-2  5.5s ease-in-out infinite; animation-delay: 0.5s; }
.fire-3  { left: 20%; width: 160px; height: 260px; animation: flame-rise-3  4s   ease-in-out infinite; animation-delay: 1.2s; }
.fire-4  { left: 28%; width: 250px; height: 400px; animation: flame-rise-1  6s   ease-in-out infinite; animation-delay: 0.8s; }
.fire-5  { left: 35%; width: 200px; height: 320px; animation: flame-rise-2  5s   ease-in-out infinite; animation-delay: 1.5s; }
.fire-6  { left: 42%; width: 280px; height: 450px; animation: flame-rise-3  5.8s ease-in-out infinite; animation-delay: 0.3s; }
.fire-7  { left: 48%; width: 180px; height: 300px; animation: flame-rise-1  4.2s ease-in-out infinite; animation-delay: 2s; }
.fire-8  { left: 55%; width: 240px; height: 380px; animation: flame-rise-2  5.2s ease-in-out infinite; animation-delay: 0.7s; }
.fire-9  { left: 62%; width: 170px; height: 290px; animation: flame-rise-3  4.8s ease-in-out infinite; animation-delay: 1.8s; }
.fire-10 { left: 68%; width: 260px; height: 420px; animation: flame-rise-1  6.2s ease-in-out infinite; animation-delay: 1s; }
.fire-11 { left: 75%; width: 190px; height: 310px; animation: flame-rise-2  4.6s ease-in-out infinite; animation-delay: 0.2s; }
.fire-12 { left: 82%; width: 230px; height: 360px; animation: flame-rise-3  5.4s ease-in-out infinite; animation-delay: 1.3s; }
.fire-13 { left: 88%; width: 200px; height: 330px; animation: flame-rise-1  5s   ease-in-out infinite; animation-delay: 0.9s; }
.fire-14 { left: 95%; width: 170px; height: 280px; animation: flame-rise-2  4.4s ease-in-out infinite; animation-delay: 1.6s; }
.fire-15 { left: 15%; width: 300px; height: 500px; animation: flame-rise-3  6.5s ease-in-out infinite; animation-delay: 0.4s; }
.fire-16 { left: 50%; width: 320px; height: 520px; animation: flame-rise-1  7s   ease-in-out infinite; animation-delay: 2.5s; }
.fire-17 { left: 70%; width: 280px; height: 480px; animation: flame-rise-2  6.8s ease-in-out infinite; animation-delay: 3s; }

@keyframes flame-rise-1 {
    0%   { transform: translateY(0) scale(1)   skewX(-5deg);  opacity: 0;    }
    15%  { transform: translateY(-15vh) scale(1.3) skewX(5deg);  opacity: 0.6;  }
    40%  { transform: translateY(-40vh) scale(0.9) skewX(-8deg); opacity: 0.8;  }
    70%  { transform: translateY(-65vh) scale(1.2) skewX(3deg);  opacity: 0.5;  }
    100% { transform: translateY(-90vh) scale(0.6) skewX(-5deg); opacity: 0;    }
}

@keyframes flame-rise-2 {
    0%   { transform: translateY(0) scale(1.1) skewX(5deg);   opacity: 0;    }
    20%  { transform: translateY(-20vh) scale(0.8) skewX(-5deg); opacity: 0.7;  }
    45%  { transform: translateY(-45vh) scale(1.4) skewX(8deg);  opacity: 0.85; }
    75%  { transform: translateY(-70vh) scale(0.9) skewX(-3deg); opacity: 0.4;  }
    100% { transform: translateY(-95vh) scale(0.5) skewX(5deg);  opacity: 0;    }
}

@keyframes flame-rise-3 {
    0%   { transform: translateY(0) scale(0.9) skewX(-8deg);  opacity: 0;    }
    10%  { transform: translateY(-10vh) scale(1.2) skewX(8deg);  opacity: 0.55; }
    35%  { transform: translateY(-35vh) scale(1)   skewX(-3deg); opacity: 0.75; }
    60%  { transform: translateY(-55vh) scale(1.3) skewX(5deg);  opacity: 0.6;  }
    85%  { transform: translateY(-80vh) scale(0.7) skewX(-8deg); opacity: 0.25; }
    100% { transform: translateY(-100vh) scale(0.4) skewX(3deg); opacity: 0;    }
}

/* Flicker overlay for extra realism */
.fire-flicker {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(255, 100, 20, 0.15) 0%, transparent 60%);
    animation: flicker 3s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes flicker {
    0%   { opacity: 0.7; }
    25%  { opacity: 1;   }
    50%  { opacity: 0.8; }
    75%  { opacity: 0.95;}
    100% { opacity: 0.75;}
}

/* ===== PHOENIX IMAGE ===== */
.phoenix-full-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130vw;
    max-width: none;
    min-height: 110vh;
    height: auto;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 0 80px rgba(255, 100, 20, 0.5)) drop-shadow(0 0 160px rgba(196, 30, 11, 0.3));
}

/* ===== PROFILE OVERLAY ===== */
.profile-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 3rem;
    background: radial-gradient(ellipse at center, rgba(18, 6, 0, 0.85) 0%, transparent 75%);
    border-radius: 20px;
}

.home .hero-full {
    justify-content: center;
    padding-top: 5rem;
    position: relative;
}

/* Login/Logout menu visibility */
body.logged-in .flame-menu .menu-item-login { display: none; }
body:not(.logged-in) .flame-menu .menu-item-logout { display: none; }

/* ===== BLOG CAROUSEL ===== */
.blog-carousel-wrapper {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 1050px;
    width: calc(100% - 2rem);
    padding: 0;
}

.carousel-arrow {
    background: rgba(18, 6, 0, 0.6);
    border: 2px solid rgba(255, 183, 0, 0.4);
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: rgba(255, 94, 26, 0.25);
    border-color: var(--accent-gold);
    color: var(--accent-yellow);
}

.blog-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.blog-carousel::-webkit-scrollbar {
    display: none;
}

.blog-carousel-item {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 220px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    background: rgba(18, 6, 0, 0.75);
    border: 1px solid rgba(255, 183, 0, 0.15);
    border-radius: 16px;
    padding: 0.75rem 0.75rem 0.5rem;
}

.blog-carousel-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 183, 0, 0.35);
}

.blog-carousel-thumb {
    width: 100%;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a1000, #3a1a00);
    margin-bottom: 0.5rem;
    border: 2px solid rgba(255, 183, 0, 0.4);
    transition: all 0.3s ease;
}

.blog-carousel-item:hover .blog-carousel-thumb {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(255, 94, 26, 0.4);
}

.blog-carousel-placeholder-item {
    opacity: 0.6;
    pointer-events: none;
}

.blog-carousel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-carousel-title {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 0.25rem;
}

.profile-picture-wrap {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-gold);
    box-shadow: 
        0 0 0 8px rgba(255, 183, 0, 0.15),
        0 0 40px rgba(255, 94, 26, 0.3),
        0 0 80px rgba(196, 30, 11, 0.2);
    transition: transform 0.3s ease;
}

.profile-picture-wrap:hover {
    transform: scale(1.05);
}

.profile-picture-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3a1a00, #5a2a00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 3rem;
}

.profile-name {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: var(--text-light);
    text-shadow: 0 2px 40px rgba(255, 94, 26, 0.6), 0 0 80px rgba(18, 6, 0, 0.9);
    margin-bottom: 0.3rem;
}

.profile-tagline {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-gold);
    font-style: italic;
    text-shadow: 0 1px 20px rgba(0,0,0,0.9), 0 0 40px rgba(18, 6, 0, 0.9);
}

/* ===== CONTENT AREA ===== */
.content-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.site-main {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 183, 0, 0.1);
    border-radius: 16px;
    padding: 3rem;
}

.entry-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2, .entry-content h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--accent-orange);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

/* Posts grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 183, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 94, 26, 0.15);
    border-color: rgba(255, 183, 0, 0.2);
}

.post-card-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, #2a1000, #3a1a00);
}

.post-card-content {
    padding: 1.5rem;
}

.post-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.post-card-title a {
    color: var(--text-light);
}

.post-card-title a:hover {
    color: var(--accent-gold);
}

.post-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 183, 0, 0.1);
}

.site-footer a {
    color: var(--accent-gold);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination a, .pagination span {
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 183, 0, 0.2);
    border-radius: 8px;
    color: var(--text-light);
}

.pagination a:hover {
    background: rgba(255, 94, 26, 0.2);
    border-color: var(--accent-orange);
}

/* Responsive */
@media (max-width: 768px) {
    html { font-size: 16px; }
    .menu-toggle { display: block; }
    .main-navigation { display: none; width: 100%; }
    .main-navigation.toggled { display: block; }
    .main-navigation ul { flex-direction: column; gap: 0.5rem; background: rgba(18,6,0,0.95); padding: 1rem; border-radius: 12px; }
    .profile-name { font-size: 1.8rem; }
    .profile-picture-wrap { width: 140px; height: 140px; }
    .phoenix-full-svg { width: 120vw; }
    .site-main { padding: 1.5rem; }
    .posts-grid { grid-template-columns: 1fr; }
}

/* ===== FLAME MENU (bottom) ===== */
.flame-menu-nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.flame-menu {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(18, 6, 0, 0.6);
    border: 1px solid rgba(255, 183, 0, 0.2);
    border-radius: 12px;
    padding: 0.4rem 0.8rem;
    backdrop-filter: blur(6px);
}

.flame-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.flame-menu li a:hover {
    background: rgba(255, 94, 26, 0.2);
    color: var(--accent-yellow);
}

/* Prevent scroll on homepage - single full-screen hero */
.home body {
    overflow: hidden;
    height: 100vh;
}

.home .hero-full {
    min-height: 100vh;
    max-height: 100vh;
}

/* ===== LOGIN PAGE STYLES ===== */
.login-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 3rem;
    background: rgba(18, 6, 0, 0.75);
    border: 1px solid rgba(255, 183, 0, 0.15);
    border-radius: 16px;
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
}

.login-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 20px rgba(255, 94, 26, 0.5);
    margin-bottom: 1.5rem;
}

#phoenix-login {
    text-align: left;
}

#phoenix-login label {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

#phoenix-login input[type="text"],
#phoenix-login input[type="password"] {
    width: 100%;
    padding: 0.7rem 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 183, 0, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
}

#phoenix-login input[type="text"]:focus,
#phoenix-login input[type="password"]:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(255, 94, 26, 0.15);
}

#phoenix-login .login-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

#phoenix-login .login-remember input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-orange);
}

#phoenix-login .button-primary {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#phoenix-login .button-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.login-links {
    margin-top: 1.2rem;
    text-align: center;
}

.login-links a {
    color: var(--accent-gold);
    font-size: 0.95rem;
}

.login-links a:hover {
    color: var(--accent-yellow);
}

/* ===== CONTENT PAGES (standardized overlay) ===== */
.content-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 3rem;
    background: rgba(18, 6, 0, 0.75);
    border: 1px solid rgba(255, 183, 0, 0.15);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.content-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 20px rgba(255, 94, 26, 0.5);
    margin-bottom: 1.5rem;
}

.content-body {
    text-align: left;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body h2,
.content-body h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--accent-gold);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.content-overlay .entry-meta {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.content-overlay .entry-thumbnail {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.content-overlay .entry-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.content-overlay .page-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 183, 0, 0.1);
}

.content-overlay .page-links a {
    padding: 0.4rem 0.8rem;
    margin: 0 0.3rem;
    border: 1px solid rgba(255, 183, 0, 0.2);
    border-radius: 6px;
    color: var(--text-light);
}

.content-overlay .page-links a:hover {
    background: rgba(255, 94, 26, 0.15);
    border-color: var(--accent-orange);
}

.content-overlay .nav-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.2rem;
}

.content-overlay .nav-title {
    color: var(--accent-gold);
    font-weight: 600;
}

.post-navigation {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.post-navigation a {
    color: var(--accent-gold);
    padding: 0.6rem 1rem;
    background: rgba(18, 6, 0, 0.6);
    border: 1px solid rgba(255, 183, 0, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    background: rgba(255, 94, 26, 0.2);
    color: var(--accent-yellow);
}

/* ===== CONTACT FORM ===== */
.contact-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 3rem;
    background: rgba(18, 6, 0, 0.75);
    border: 1px solid rgba(255, 183, 0, 0.15);
    border-radius: 16px;
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 20px rgba(255, 94, 26, 0.5);
    margin-bottom: 1.5rem;
}

.contact-form {
    text-align: left;
}

.contact-field {
    margin-bottom: 1rem;
}

.contact-field label {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 183, 0, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(255, 94, 26, 0.15);
}

.contact-field textarea {
    resize: vertical;
    min-height: 60px;
}

.contact-captcha-field input {
    width: auto;
    min-width: 80px;
    text-align: center;
}

.contact-submit {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.contact-success {
    text-align: center;
    padding: 1rem 0;
}

.contact-success h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 20px rgba(255, 94, 26, 0.5);
    margin-bottom: 1.5rem;
}

.contact-success p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.contact-error {
    background: rgba(196, 30, 11, 0.15);
    border: 1px solid rgba(196, 30, 11, 0.3);
    color: #ff8a80;
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
}

/* Hide profile placeholder icon */
.profile-picture-wrap {
    display: none;
}

/* Adjust profile overlay spacing since icon is hidden */
.profile-overlay {
    padding-top: 3rem;
}

/* Blog listing pages - allow scrolling content */
.hero-full.blog-page {
    min-height: auto;
    justify-content: flex-start;
    padding: 100px 1rem 3rem;
}

@media (max-width: 768px) {
    .content-overlay {
        padding: 1.5rem;
    }
    .content-title {
        font-size: 1.8rem;
    }
    .flame-menu-nav { top: 0.5rem; }
    .flame-menu { padding: 0.3rem 0.5rem; gap: 0.3rem; }
    .flame-menu li a { padding: 0.4rem 0.7rem; font-size: 0.8rem; }
    .hero-full.blog-page {
        padding-top: 80px;
    }
}
