/*
Theme Name: Santal 33
Theme URI: https://santal33.es
Author: Santal 33
Author URI: https://santal33.es
Description: A luxury editorial WordPress theme inspired by artisanal perfumery. Warm neutrals, asymmetric layouts, and typographic sophistication.
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: santal-33
Tags: editorial, luxury, minimalist, blog, custom-menu, featured-images
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* Editorial Shadow */
.editorial-shadow {
    box-shadow: 0 20px 40px rgba(55, 56, 49, 0.04);
}

/* Editorial Grid for Blog */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

/* Post Editorial Grid */
.post-editorial-grid {
    display: grid;
    grid-template-columns: 1fr minmax(0, 640px) 1fr;
}
.post-editorial-grid > * {
    grid-column: 2;
}
.post-editorial-grid > .full-bleed {
    grid-column: 1 / -1;
}

/* Serif Drop Cap */
.serif-dropcap::first-letter {
    float: left;
    font-family: 'Noto Serif';
    font-size: 5rem;
    line-height: 0.8;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    color: #5f5e5e;
}

/* Glass Header */
.glass-header {
    background: rgba(255, 252, 247, 0.7);
    backdrop-filter: blur(24px);
}

/* WordPress Core Alignment */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.alignfull {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.aligncenter {
    text-align: center;
}

/* WordPress Gallery */
.wp-block-gallery {
    gap: 1rem;
}

/* WordPress Navigation Menu */
.nav-menu li {
    display: inline-block;
}

/* Screen reader text */
.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;
}

/* Pagination */
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #716155;
    border: 1px solid rgba(186, 186, 176, 0.3);
    transition: all 0.3s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background-color: #373831;
    color: #fffcf7;
}

/* Comment Form */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(186, 186, 176, 0.4);
    padding: 1rem 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5f5e5e;
    transition: border-color 0.3s;
}
.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #5f5e5e;
}
.comment-form .submit {
    background-color: #5f5e5e;
    color: #faf7f6;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    padding: 1rem 3rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}
.comment-form .submit:hover {
    background-color: #535252;
}

/* Mobile Bottom Nav */
@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* Mobile menu overlay */
#mobile-menu {
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
}
#mobile-menu.active {
    transform: translateX(0);
}
