/* Rotterdam Palace Plaza Styles */
:root {
    --rpp-bg-base: #0a0a0a;
    --rpp-bg-surface: #121212;
    --rpp-bg-card: #1c1c1c;
    --rpp-accent: #c49a45;
    --rpp-accent-hover: #dfb35a;
    --rpp-text-main: #f5f5f5;
    --rpp-text-muted: #a3a3a3;
    --rpp-border: #2a2a2a;
    
    --rpp-font-head: 'Playfair Display', serif;
    --rpp-font-body: 'Inter', sans-serif;
    
    --rpp-radius: 8px;
    --rpp-trans: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body.rpp-body {
    background-color: var(--rpp-bg-base);
    color: var(--rpp-text-main);
    font-family: var(--rpp-font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.rpp-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--rpp-font-head);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--rpp-trans);
}

/* Header */
.rpp-top-bar {
    background-color: var(--rpp-bg-surface);
    border-bottom: 1px solid var(--rpp-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.rpp-top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.rpp-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rpp-logo-abbr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--rpp-accent);
    color: var(--rpp-bg-base);
    font-family: var(--rpp-font-head);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 4px;
}

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

.rpp-brand-name {
    font-family: var(--rpp-font-head);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.rpp-brand-sub {
    font-size: 0.8rem;
    color: var(--rpp-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rpp-badge-age {
    border: 1px solid var(--rpp-accent);
    color: var(--rpp-accent);
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Showcase */
.rpp-showcase {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--rpp-bg-surface) 0%, var(--rpp-bg-base) 100%);
    text-align: center;
}

.rpp-showcase-label {
    display: inline-block;
    color: var(--rpp-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(196, 154, 69, 0.3);
    border-radius: 4px;
}

.rpp-showcase-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: #fff;
}

.rpp-showcase-desc {
    font-size: 1.2rem;
    color: var(--rpp-text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Info Grid */
.rpp-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.rpp-info-card {
    background-color: var(--rpp-bg-card);
    padding: 32px;
    border-radius: var(--rpp-radius);
    text-align: left;
    border: 1px solid transparent;
    transition: border-color var(--rpp-trans);
}

.rpp-info-card:hover {
    border-color: rgba(196, 154, 69, 0.3);
}

.rpp-info-dot {
    width: 12px;
    height: 12px;
    background-color: var(--rpp-accent);
    border-radius: 50%;
    margin-bottom: 20px;
}

.rpp-info-head {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.rpp-info-txt {
    color: var(--rpp-text-muted);
    font-size: 0.95rem;
}

/* Sections */
.rpp-section {
    padding: 80px 0;
}

.rpp-section-dark {
    background-color: var(--rpp-bg-surface);
}

.rpp-section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.rpp-heading-h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.rpp-heading-sub {
    color: var(--rpp-text-muted);
    font-size: 1.1rem;
}

/* Feature Grid */
.rpp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rpp-feature-box {
    background-color: var(--rpp-bg-base);
    border: 1px solid var(--rpp-border);
    padding: 40px;
    border-radius: var(--rpp-radius);
    transition: transform var(--rpp-trans);
}

.rpp-section-dark .rpp-feature-box {
    background-color: var(--rpp-bg-card);
}

.rpp-feature-box:hover {
    transform: translateY(-5px);
}

.rpp-feature-kicker {
    display: block;
    color: var(--rpp-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.rpp-feature-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.rpp-feature-desc {
    color: var(--rpp-text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.rpp-feature-list {
    list-style: none;
}

.rpp-feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--rpp-text-main);
    font-size: 0.95rem;
}

.rpp-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--rpp-accent);
    border-radius: 50%;
}

/* Footer */
.rpp-bottom-bar {
    background-color: var(--rpp-bg-surface);
    border-top: 1px solid var(--rpp-border);
    padding: 80px 0 40px;
}

.rpp-footer-slogan {
    font-size: 2rem;
    margin-bottom: 60px;
    color: var(--rpp-accent);
    text-align: center;
}

.rpp-footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.rpp-footer-col-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.rpp-footer-text {
    color: var(--rpp-text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.rpp-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rpp-footer-link {
    color: var(--rpp-text-muted);
    font-size: 0.95rem;
}

.rpp-footer-link:hover {
    color: var(--rpp-accent);
}

.rpp-footer-copy {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--rpp-border);
    color: var(--rpp-text-muted);
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rpp-showcase-title {
        font-size: 2.5rem;
    }
    
    .rpp-heading-h2 {
        font-size: 2rem;
    }
    
    .rpp-feature-box, .rpp-info-card {
        padding: 24px;
    }
    
    .rpp-footer-slogan {
        font-size: 1.5rem;
    }
}
