/*
Theme Name: Nox Naier
Theme URI: https://noxnaier.com
Author: Nox Naier Studio
Author URI: https://noxnaier.com
Description: A dark gothic/fantasy theme for the book website "Nox Naier - La Tragedia del Parque de las Cuatro Estaciones". Features a two-column layout with fixed navigation sidebar, medieval typography, and animated hero section.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nox-naier
Tags: dark, gothic, fantasy, book, two-columns, custom-menu
*/

/* ==========================================================================
   CSS Reset & Base
   ========================================================================== */

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

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

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
}

a:hover,
a:focus {
    color: #9B8B4B;
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', 'Georgia', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.2em;
    font-size: 1.1rem;
}

/* ==========================================================================
   Main Layout - Two Column (70/30)
   ========================================================================== */

.site-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.site-content-area {
    flex: 0 0 70%;
    width: 70%;
    min-height: 100vh;
    position: relative;
}

.site-sidebar-nav {
    flex: 0 0 30%;
    width: 30%;
    min-height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #000000;
    border-left: 1px solid #333333;
}

/* ==========================================================================
   Logo Styles
   ========================================================================== */

.site-logo {
    font-family: 'Cinzel', 'Georgia', serif;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Logo on inner pages - small, top-left */
.site-logo--small {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 50;
    font-size: 1.4rem;
    font-weight: 700;
}

.site-logo--small a {
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

.site-logo--small a:hover {
    color: #9B8B4B;
}

/* Logo on homepage - large, centered */
.hero-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    position: relative;
}

.hero-logo-text {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
}

.hero-logo-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
}

.site-logo-img {
    max-width: 150px;
    width: 100%;
    height: auto;
    display: block;
}

/* WordPress Custom Logo support */
.custom-logo-link {
    display: block;
}

.hero-logo-frame .custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-frame .custom-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
}

.site-logo--small .custom-logo {
    max-width: 150px;
    width: 100%;
    height: auto;
}

/* ==========================================================================
   Sidebar Navigation
   ========================================================================== */

.sidebar-nav-menu {
    width: 100%;
}

.sidebar-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav-menu li {
    border-bottom: 1px solid #333333;
}

.sidebar-nav-menu li:first-child {
    border-top: 1px solid #333333;
}

.sidebar-nav-menu a {
    display: block;
    padding: 20px 30px;
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar-nav-menu a:hover {
    background-color: rgba(155, 139, 75, 0.3);
    color: #FFFFFF;
}

.sidebar-nav-menu li.current-menu-item > a,
.sidebar-nav-menu li.current_page_item > a,
.sidebar-nav-menu li.current-menu-ancestor > a {
    background-color: #9B8B4B;
    color: #FFFFFF;
}

/* ==========================================================================
   Hamburger Menu (Mobile)
   ========================================================================== */

.hamburger-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 200;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 50px;
    height: 50px;
}

.hamburger-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #FFFFFF;
    margin: 6px auto;
    transition: all 0.3s ease;
}

.hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

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

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 40px;
    text-align: center;
}

.hero-animated-text {
    margin-top: 50px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    opacity: 0;
    transition: opacity 1s ease;
    text-align: center;
    line-height: 1.4;
}

.hero-subtitle.visible {
    opacity: 1;
}

.hero-keywords {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-keywords.visible {
    opacity: 1;
}

.hero-keyword {
    font-family: 'Cinzel', 'Georgia', serif;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-keyword.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-keyword--poder {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.hero-keyword--misterios {
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.1em;
}

.hero-keyword--enganos {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.hero-keyword--guerras {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-keyword--aliados {
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.hero-keyword--final {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    margin-top: 20px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Page Content Sections
   ========================================================================== */

.page-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 60px;
    text-align: center;
}

.page-section--conectate {
    gap: 40px;
}

/* ==========================================================================
   Conectate - Social Icons
   ========================================================================== */

.social-icons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    color: #FFFFFF;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon-link:hover {
    color: #9B8B4B;
    transform: scale(1.15);
}

.social-icon-link svg {
    width: 50px;
    height: 50px;
    fill: currentColor;
}

/* ==========================================================================
   Consigue tu libro - Purchase Links
   ========================================================================== */

.purchase-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.purchase-link {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    position: relative;
}

.purchase-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #9B8B4B;
    transition: width 0.3s ease;
}

.purchase-link:hover {
    color: #9B8B4B;
    letter-spacing: 0.2em;
}

.purchase-link:hover::after {
    width: 100%;
}

.purchase-link--disabled {
    color: rgba(255, 255, 255, 0.4);
    cursor: default;
}

.purchase-link--disabled:hover {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
}

.purchase-link--disabled:hover::after {
    width: 0;
}

/* ==========================================================================
   Merchandising - Under Construction
   ========================================================================== */

.under-construction-text {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Los Personajes - Characters Grid
   ========================================================================== */

.characters-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.characters-row {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.character-name {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.character-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #9B8B4B;
    transition: width 0.3s ease;
}

.character-name:hover {
    color: #9B8B4B;
    transform: scale(1.05);
}

.character-name:hover::after {
    width: 80%;
}

.character-name--protagonist {
    font-size: 3rem;
    font-weight: 700;
}

/* ==========================================================================
   Character Detail Pages
   ========================================================================== */

.page-section--personajes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 0 0 0;
    background-color: #000000;
}

/* Diamond Name Layout */
.characters-diamond {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    gap: 30px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.characters-diamond--hidden {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

.characters-diamond__row {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.characters-diamond__name {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 2.125rem;
    font-variant: small-caps;
    letter-spacing: 0.12em;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.characters-diamond__name:hover {
    color: #9B8B4B;
}

.characters-diamond__name--protagonist {
    font-size: 3.2rem;
    font-weight: 700;
}

/* Character Detail Panels */
.character-detail {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 80vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.character-detail--active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.character-detail__image-wrap {
    width: 45%;
    min-height: 80vh;
    overflow: hidden;
}

.character-detail__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.character-detail__info {
    width: 55%;
    background-color: #9B8B4B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    text-align: center;
}

.character-detail__name {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 3rem;
    font-weight: 700;
    font-variant: small-caps;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.character-detail__desc {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.7;
    color: #1a1a1a;
    text-align: center;
    max-width: 500px;
}

/* Character Navigation Bar */
.character-nav {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 25px 20px;
    flex-wrap: wrap;
    background-color: #000000;
    width: 100%;
}

.character-nav--visible {
    display: flex;
}

.character-nav__link {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 2.125rem;
    font-variant: small-caps;
    letter-spacing: 0.12em;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.character-nav__link:hover {
    color: #9B8B4B;
}

.character-nav__link--active {
    color: #9B8B4B;
}

/* ==========================================================================
   Lugares - Locations
   ========================================================================== */

/* Page section override */
.page-section--lugares {
    padding: 100px 0 0 0;
    background-color: #000000;
}

/* Locations List (vertical name list - initial view) */
.locations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    gap: 30px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.locations-list--hidden {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

.locations-list__name {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 2.125rem;
    font-variant: small-caps;
    letter-spacing: 0.12em;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.locations-list__name:hover {
    color: #9B8B4B;
}

/* Location Detail Panels */
.location-detail {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.location-detail--active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.location-detail__image-wrap {
    width: 50%;
    display: flex;
    align-items: center;
    background-color: #000000;
}

.location-detail__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.location-detail__info {
    width: 50%;
    background-color: #9B8B4B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    text-align: center;
}

.location-detail__subtitle {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-variant: small-caps;
    letter-spacing: 0.12em;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.location-detail__name {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 3rem;
    font-weight: 700;
    font-variant: small-caps;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.location-detail__desc {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.7;
    color: #1a1a1a;
    text-align: center;
    max-width: 500px;
}

/* Location Navigation Bar */
.location-nav {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 25px 20px;
    flex-wrap: wrap;
    background-color: #000000;
    width: 100%;
}

.location-nav--visible {
    display: flex;
}

.location-nav__link {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 1.5rem;
    font-variant: small-caps;
    letter-spacing: 0.10em;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.location-nav__link:hover {
    color: #9B8B4B;
}

.location-nav__link--active {
    color: #9B8B4B;
}

/* ==========================================================================
   El Autor - Author
   ========================================================================== */

.author-section {
    padding: 100px 0 0 0;
    text-align: left;
    background: #000;
}

.author-panel {
    background-color: #9B8B4B;
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    text-align: center;
}

.author-name {
    font-family: 'Cinzel', 'Georgia', serif;
    font-variant: small-caps;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.author-bio {
    max-width: 700px;
    text-align: left;
}

.author-bio p {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 1.5em;
}

/* ==========================================================================
   Generic Page Content (for wp editor content)
   ========================================================================== */

.entry-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
}

.entry-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5em;
}

.entry-content a {
    color: #9B8B4B;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.entry-content a:hover {
    border-bottom-color: #9B8B4B;
}

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

.site-footer {
    padding: 30px 40px;
    text-align: center;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #000;
    clip: auto !important;
    clip-path: none;
    color: #fff;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media screen and (max-width: 1024px) {
    .site-content-area {
        flex: 0 0 100%;
        width: 100%;
    }

    .site-sidebar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.97);
        transition: right 0.4s ease;
        z-index: 150;
    }

    .site-sidebar-nav.active {
        right: 0;
    }

    .hamburger-toggle {
        display: block;
    }

    .hero-logo-text {
        font-size: 2.8rem;
    }

    .hero-logo-img {
        max-width: 350px;
    }

    .hero-logo-frame {
        padding: 40px 50px;
    }

    .site-logo-img {
        max-width: 120px;
    }

    .hero-logo-frame .custom-logo {
        max-width: 350px;
    }

    .site-logo--small .custom-logo {
        max-width: 120px;
    }

    .page-section {
        padding: 60px 30px;
    }

    .character-name {
        font-size: 1.8rem;
    }

    .character-name--protagonist {
        font-size: 2.2rem;
    }

    .characters-row {
        gap: 40px;
    }

    .purchase-link {
        font-size: 2.2rem;
    }

    .author-name {
        font-size: 2.5rem;
    }

    .author-panel {
        padding: 40px 30px;
    }

    .site-logo--small {
        top: 20px;
        left: 20px;
        font-size: 1.1rem;
    }

    .social-icon-link {
        width: 55px;
        height: 55px;
    }

    .social-icon-link svg {
        width: 40px;
        height: 40px;
    }

    .social-icons-row {
        gap: 30px;
    }

    /* Diamond Layout - Tablet */
    .characters-diamond__name {
        font-size: 1.6rem;
    }

    .characters-diamond__name--protagonist {
        font-size: 2.4rem;
    }

    .characters-diamond__row {
        gap: 40px;
    }

    /* Character Detail - Tablet */
    .character-detail {
        flex-direction: column;
    }

    .character-detail__image-wrap {
        width: 100%;
        min-height: auto;
        max-height: 50vh;
    }

    .character-detail__info {
        width: 100%;
        padding: 40px 30px;
    }

    .character-detail__name {
        font-size: 2.4rem;
    }

    .character-nav__link {
        font-size: 0.75rem;
    }

    /* Location Detail - Tablet */
    .locations-list__name {
        font-size: 1.6rem;
    }
    .location-detail {
        flex-direction: column;
    }
    .location-detail__image-wrap {
        width: 100%;
    }
    .location-detail__info {
        width: 100%;
        padding: 40px 30px;
    }
    .location-detail__name {
        font-size: 2.4rem;
    }
    .location-nav__link {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 600px) {
    .hero-logo-text {
        font-size: 1.8rem;
        letter-spacing: 0.1em;
    }

    .hero-logo-img {
        max-width: 260px;
    }

    .hero-logo-frame {
        padding: 30px 35px;
    }

    .site-logo-img {
        max-width: 100px;
    }

    .hero-logo-frame .custom-logo {
        max-width: 260px;
    }

    .site-logo--small .custom-logo {
        max-width: 100px;
    }

    .hero-keyword--poder {
        font-size: 1.6rem;
    }

    .hero-keyword--misterios {
        font-size: 1.2rem;
    }

    .hero-keyword--enganos {
        font-size: 1.4rem;
    }

    .hero-keyword--guerras {
        font-size: 1rem;
    }

    .hero-keyword--aliados {
        font-size: 1.3rem;
    }

    .hero-keyword--final {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .page-section {
        padding: 40px 20px;
    }

    .character-name {
        font-size: 1.4rem;
    }

    .character-name--protagonist {
        font-size: 1.8rem;
    }

    .characters-row {
        gap: 30px;
    }

    .purchase-link {
        font-size: 1.6rem;
    }

    .author-name {
        font-size: 2rem;
    }

    .author-panel {
        padding: 30px 20px;
    }

    .author-bio p {
        font-size: 1rem;
    }

    .social-icon-link {
        width: 45px;
        height: 45px;
    }

    .social-icon-link svg {
        width: 32px;
        height: 32px;
    }

    .social-icons-row {
        gap: 20px;
    }

    .sidebar-nav-menu a {
        padding: 18px 25px;
        font-size: 0.8rem;
    }

    .under-construction-text {
        font-size: 1.3rem;
    }

    /* Diamond Layout - Mobile */
    .characters-diamond__name {
        font-size: 1.2rem;
    }

    .characters-diamond__name--protagonist {
        font-size: 2rem;
    }

    .characters-diamond__row {
        gap: 25px;
    }

    .characters-diamond {
        gap: 20px;
    }

    /* Character Detail - Mobile */
    .character-detail__name {
        font-size: 2rem;
    }

    .character-detail__desc {
        font-size: 1rem;
    }

    .character-detail__info {
        padding: 30px 20px;
    }

    .character-nav {
        gap: 15px;
        padding: 20px 15px;
    }

    .character-nav__link {
        font-size: 0.7rem;
        padding: 6px 8px;
    }

    /* Location Detail - Mobile */
    .locations-list__name {
        font-size: 1.2rem;
    }
    .locations-list {
        gap: 20px;
    }
    .location-detail__name {
        font-size: 2rem;
    }
    .location-detail__desc {
        font-size: 1rem;
    }
    .location-detail__info {
        padding: 30px 20px;
    }
    .location-nav {
        gap: 15px;
        padding: 20px 15px;
    }
    .location-nav__link {
        font-size: 0.7rem;
        padding: 6px 8px;
    }
}
