/* =========================================
   Abolengo Roya | CSS Custom Styles
   ========================================= */

:root {
    --abolro-deep-burgundy: #2b0b12;
    --abolro-crimson: #5c1020;
    --abolro-gold: #cfad6e;
    --abolro-gold-light: #e6cb96;
    --abolro-surface-dark: #121212;
    --abolro-surface-light: #1e1e1e;
    --abolro-text-main: #f5f5f5;
    --abolro-text-muted: #a8a8a8;
    
    --abolro-font-display: 'Cinzel', serif;
    --abolro-font-body: 'Montserrat', sans-serif;
    
    --abolro-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--abolro-surface-dark);
    color: var(--abolro-text-main);
    font-family: var(--abolro-font-body);
    font-size: 16px;
    line-height: 1.6;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--abolro-gold-light);
}

ul {
    list-style: none;
}

.abolro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, .abolro-brand-name {
    font-family: var(--abolro-font-display);
    font-weight: 600;
    line-height: 1.2;
}

/* Header */
.abolro-top-masthead {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(207, 173, 110, 0.2);
    padding: 1rem 0;
}

.abolro-masthead-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.abolro-brand-identity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.abolro-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--abolro-gold), #8f7238);
    color: var(--abolro-deep-burgundy);
    font-family: var(--abolro-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 4px;
}

.abolro-brand-text {
    display: flex;
    flex-direction: column;
}

.abolro-brand-name {
    font-size: 1.5rem;
    color: var(--abolro-text-main);
    letter-spacing: 1px;
}

.abolro-brand-slogan {
    font-size: 0.75rem;
    color: var(--abolro-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.abolro-nav-menu {
    display: flex;
    gap: 2rem;
}

.abolro-nav-link {
    color: var(--abolro-text-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.abolro-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--abolro-gold);
    transition: var(--abolro-transition);
}

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

.abolro-compliance-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--abolro-gold);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

.abolro-age-badge {
    font-weight: 700;
    color: var(--abolro-gold);
}

.abolro-badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--abolro-text-muted);
}

/* Hero Section */
.abolro-grand-presentation {
    padding-top: 150px;
    padding-bottom: 100px;
    background: linear-gradient(to bottom, var(--abolro-deep-burgundy) 0%, var(--abolro-surface-dark) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.abolro-presentation-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.abolro-kicker-label {
    color: var(--abolro-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.abolro-monumental-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--abolro-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.abolro-monumental-desc {
    font-size: 1.2rem;
    color: var(--abolro-text-muted);
    max-width: 700px;
    margin-bottom: 4rem;
}

.abolro-trio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.abolro-mini-perk {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--abolro-transition);
}

.abolro-mini-perk:hover {
    transform: translateY(-5px);
    border-color: rgba(207, 173, 110, 0.3);
    background-color: rgba(255,255,255,0.05);
}

.abolro-perk-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.abolro-perk-title {
    color: var(--abolro-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.abolro-perk-text {
    font-size: 0.9rem;
    color: var(--abolro-text-muted);
}

/* Standard Sections */
.abolro-welfare-zone,
.abolro-leisure-zone {
    padding: 100px 0;
}

.abolro-leisure-zone {
    background-color: var(--abolro-surface-light);
    border-top: 1px solid rgba(207, 173, 110, 0.1);
    border-bottom: 1px solid rgba(207, 173, 110, 0.1);
}

.abolro-zone-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.abolro-section-title {
    font-size: 3rem;
    color: var(--abolro-gold);
    margin-bottom: 1.5rem;
}

.abolro-section-intro {
    font-size: 1.1rem;
    color: var(--abolro-text-muted);
}

.abolro-triple-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.abolro-info-block {
    background-color: var(--abolro-surface-light);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--abolro-transition);
    position: relative;
    overflow: hidden;
}

.abolro-info-block.abolro-dark-variant {
    background-color: var(--abolro-surface-dark);
}

.abolro-info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--abolro-crimson), transparent);
    opacity: 0;
    transition: var(--abolro-transition);
}

.abolro-info-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(207, 173, 110, 0.2);
}

.abolro-info-block:hover::before {
    opacity: 1;
}

.abolro-block-super {
    font-size: 0.8rem;
    color: var(--abolro-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
}

.abolro-block-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--abolro-text-main);
}

.abolro-block-text {
    color: var(--abolro-text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.abolro-block-list {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
}

.abolro-block-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--abolro-text-main);
    font-size: 0.95rem;
}

.abolro-block-list li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: var(--abolro-gold);
    font-size: 0.8rem;
    top: 2px;
}

/* Footer */
.abolro-bottom-anchorage {
    background-color: #0a0a0a;
    padding: 80px 0 30px 0;
    border-top: 2px solid var(--abolro-crimson);
}

.abolro-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.abolro-footer-heading {
    color: var(--abolro-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.abolro-footer-desc {
    color: var(--abolro-text-muted);
    max-width: 400px;
}

.abolro-footer-links li {
    margin-bottom: 0.8rem;
}

.abolro-footer-contact p {
    color: var(--abolro-text-muted);
    margin-bottom: 0.5rem;
}

.abolro-footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.abolro-footer-disclaimer p {
    color: #888;
    font-size: 0.85rem;
    max-width: 900px;
    margin: 0 auto;
}

.abolro-footer-disclaimer strong {
    color: var(--abolro-text-main);
}

.abolro-footer-disclaimer em {
    color: var(--abolro-gold);
    font-style: normal;
}

.abolro-footer-copyright {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .abolro-trio-grid,
    .abolro-triple-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .abolro-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .abolro-monumental-title {
        font-size: 3.5rem;
    }
    .abolro-nav-menu {
        display: none; /* Simplification for mobile */
    }
    .abolro-trio-grid,
    .abolro-triple-cards,
    .abolro-footer-grid {
        grid-template-columns: 1fr;
    }
    .abolro-footer-grid {
        gap: 2rem;
    }
}

/* Cookie Banner */
.abolro-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--abolro-surface-light);
    border-top: 1px solid var(--abolro-gold);
    padding: 1rem;
    text-align: center;
    z-index: 1000;
}

.abolro-cookie-banner p {
    margin: 0;
    font-size: 0.85rem;
}

.abolro-cookie-banner button {
    background-color: var(--abolro-gold);
    color: var(--abolro-deep-burgundy);
    border: none;
    padding: 0.3rem 1rem;
    margin-left: 1rem;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
}
