/* ==========================================================================
   Berlin Crown Resort - Premium Styles
   ========================================================================== */

:root {
    --bcr-bg: #141311;
    --bcr-bg-alt: #1a1815;
    --bcr-card: #25221e;
    --bcr-card-hover: #2a2723;
    --bcr-gold: #cca560;
    --bcr-ruby: #7a2626;
    --bcr-text: #d4cfc5;
    --bcr-text-muted: #9e9a93;
    --bcr-white: #ffffff;
    
    --bcr-font-heading: 'Cormorant Garamond', serif;
    --bcr-font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body.bcr-body {
    background-color: var(--bcr-bg);
    color: var(--bcr-text);
    font-family: var(--bcr-font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.bcr-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.bcr-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(20, 19, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(204, 165, 96, 0.1);
}

.bcr-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.bcr-logo {
    font-family: var(--bcr-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bcr-white);
    letter-spacing: 2px;
}

.bcr-logo-accent {
    color: var(--bcr-gold);
}

.bcr-nav {
    display: flex;
    gap: 30px;
}

.bcr-nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.bcr-nav-link:hover {
    color: var(--bcr-gold);
}

.bcr-age-badge {
    width: 40px;
    height: 40px;
    border: 2px solid var(--bcr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bcr-gold);
    font-size: 0.9rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.bcr-hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #1f1d1a 0%, var(--bcr-bg) 100%);
    padding-top: 80px;
}

.bcr-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bcr-hero-subtitle {
    display: block;
    color: var(--bcr-ruby);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.bcr-hero-title {
    font-family: var(--bcr-font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--bcr-gold);
    margin-bottom: 30px;
}

.bcr-hero-text {
    font-size: 1.1rem;
    color: var(--bcr-text);
    margin-bottom: 40px;
    max-width: 90%;
}

.bcr-hero-actions {
    display: flex;
    gap: 20px;
}

.bcr-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.bcr-btn-gold {
    background-color: var(--bcr-gold);
    color: var(--bcr-bg);
}

.bcr-btn-gold:hover {
    background-color: #dfb975;
}

.bcr-btn-outline {
    background-color: transparent;
    color: var(--bcr-white);
    border: 1px solid var(--bcr-white);
}

.bcr-btn-outline:hover {
    border-color: var(--bcr-gold);
    color: var(--bcr-gold);
}

.bcr-btn-full {
    width: 100%;
}

.bcr-hero-visual {
    position: relative;
    height: 70vh;
}

.bcr-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.bcr-square {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.bcr-square-dark {
    width: 70%;
    height: 70%;
    background-color: var(--bcr-bg-alt);
    top: 0;
    right: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.bcr-square-ruby {
    width: 50%;
    height: 50%;
    background-color: var(--bcr-ruby);
    bottom: 10%;
    left: 10%;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.bcr-emoji-large {
    font-size: 6rem;
    line-height: 1;
}

/* ==========================================================================
   Sections & Typography
   ========================================================================== */
.bcr-section {
    padding: 100px 0;
}

.bcr-bg-alt {
    background-color: var(--bcr-bg-alt);
}

.bcr-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.bcr-section-title {
    font-family: var(--bcr-font-heading);
    font-size: 3rem;
    color: var(--bcr-gold);
    margin-bottom: 15px;
}

.bcr-section-subtitle {
    font-size: 1.1rem;
    color: var(--bcr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.bcr-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.bcr-card {
    background-color: var(--bcr-card);
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.bcr-card:hover {
    transform: translateY(-10px);
    border-color: var(--bcr-gold);
    background-color: var(--bcr-card-hover);
}

.bcr-card-signature {
    border-color: rgba(204, 165, 96, 0.3);
}

.bcr-signature-label {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bcr-gold);
    font-weight: 600;
}

.bcr-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bcr-card-title {
    font-family: var(--bcr-font-heading);
    font-size: 1.8rem;
    color: var(--bcr-white);
    margin-bottom: 15px;
}

.bcr-card-desc {
    color: var(--bcr-text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.bcr-card-features {
    margin-bottom: 25px;
}

.bcr-card-features li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.bcr-card-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--bcr-gold);
}

.bcr-card-price {
    font-style: italic;
    color: var(--bcr-gold);
    font-size: 0.95rem;
}

.bcr-card-strict {
    text-align: center;
    padding: 50px 30px;
}

/* ==========================================================================
   Responsible Play
   ========================================================================== */
.bcr-responsible-play {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(204, 165, 96, 0.1);
}

.bcr-rp-title {
    font-family: var(--bcr-font-heading);
    font-size: 2.2rem;
    color: var(--bcr-white);
    text-align: center;
    margin-bottom: 40px;
}

.bcr-card-rp {
    padding: 30px;
}

.bcr-rp-card-title {
    font-size: 1.2rem;
    color: var(--bcr-gold);
    margin-bottom: 10px;
}

.bcr-rp-card-desc {
    font-size: 0.9rem;
    color: var(--bcr-text-muted);
}

/* ==========================================================================
   Gastronomy
   ========================================================================== */
.bcr-hours {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--bcr-ruby);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.bcr-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.bcr-contact-info .bcr-section-title {
    text-align: left;
}

.bcr-contact-info .bcr-section-subtitle {
    text-align: left;
    margin: 0 0 40px 0;
}

.bcr-contact-item {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.bcr-contact-item strong {
    color: var(--bcr-gold);
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.bcr-contact-form-wrap {
    background-color: #201e1b;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bcr-form-group {
    margin-bottom: 20px;
}

.bcr-form-input {
    width: 100%;
    padding: 15px;
    background-color: var(--bcr-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--bcr-white);
    font-family: var(--bcr-font-body);
    font-size: 0.95rem;
}

.bcr-form-input:focus {
    outline: none;
    border-color: var(--bcr-gold);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.bcr-footer {
    background-color: var(--bcr-bg);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bcr-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.bcr-footer-logo {
    font-family: var(--bcr-font-heading);
    font-size: 1.5rem;
    color: var(--bcr-white);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.bcr-footer-desc {
    color: var(--bcr-text-muted);
    font-size: 0.95rem;
    max-width: 300px;
}

.bcr-footer-heading {
    color: var(--bcr-gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.bcr-footer-link {
    display: block;
    color: var(--bcr-text-muted);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.bcr-footer-link:hover {
    color: var(--bcr-white);
}

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

.bcr-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.bcr-compliance-notice {
    font-family: var(--bcr-font-heading);
    font-size: 1.2rem;
    color: var(--bcr-ruby);
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-align: center;
}

.bcr-copyright {
    color: #666;
    font-size: 0.85rem;
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.bcr-cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(32, 30, 27, 0.98);
    border: 1px solid var(--bcr-gold);
    padding: 25px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bcr-cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.bcr-cookie-content p {
    font-size: 0.9rem;
    color: var(--bcr-text);
}

.bcr-cookie-buttons {
    display: flex;
    gap: 15px;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .bcr-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bcr-hero-title {
        font-size: 3.5rem;
    }
    
    .bcr-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bcr-hero-grid, .bcr-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .bcr-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .bcr-nav {
        display: none;
    }
    
    .bcr-hero {
        text-align: center;
        padding-top: 120px;
    }
    
    .bcr-hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .bcr-hero-visual {
        display: none;
    }
    
    .bcr-cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .bcr-cookie-buttons button {
        width: 100%;
    }
}
