:root {
    --hclr-bg-main: #0B132B;
    --hclr-bg-sec: #1C2541;
    --hclr-accent: #D4AF37;
    --hclr-text-light: #F5F5F5;
    --hclr-text-muted: #B0B5C1;
    --hclr-font-heading: 'Playfair Display', serif;
    --hclr-font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--hclr-font-body);
    background-color: var(--hclr-bg-main);
    color: var(--hclr-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--hclr-accent);
}

.hclr-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.hclr-header {
    background-color: rgba(11, 19, 43, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
    backdrop-filter: blur(10px);
}

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

.hclr-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hclr-logo-abbr {
    font-family: var(--hclr-font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--hclr-accent);
    border: 2px solid var(--hclr-accent);
    padding: 5px 10px;
    border-radius: 4px;
}

.hclr-logo-text {
    display: flex;
    flex-direction: column;
}

.hclr-brand {
    font-family: var(--hclr-font-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hclr-subbrand {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--hclr-text-muted);
}

.hclr-header-badge {
    background-color: var(--hclr-accent);
    color: var(--hclr-bg-main);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hclr-hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, var(--hclr-bg-sec) 0%, var(--hclr-bg-main) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.hclr-hero-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.hclr-hero-label {
    display: inline-block;
    color: var(--hclr-accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hclr-hero-title {
    font-family: var(--hclr-font-heading);
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #fff;
}

.hclr-hero-desc {
    font-size: 18px;
    color: var(--hclr-text-muted);
    line-height: 1.8;
}

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

.hclr-hero-card {
    background: rgba(28, 37, 65, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hclr-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--hclr-accent);
}

.hclr-card-title {
    font-family: var(--hclr-font-heading);
    font-size: 22px;
    color: var(--hclr-accent);
    margin-bottom: 15px;
}

.hclr-card-text {
    font-size: 15px;
    color: var(--hclr-text-muted);
}

/* Common Grid Sections */
.hclr-wellness-section,
.hclr-entertainment-section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hclr-entertainment-section {
    background-color: var(--hclr-bg-sec);
}

.hclr-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.hclr-section-title {
    font-family: var(--hclr-font-heading);
    font-size: 42px;
    margin-bottom: 20px;
}

.hclr-section-intro {
    font-size: 16px;
    color: var(--hclr-text-muted);
}

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

.hclr-grid-card {
    background: var(--hclr-bg-main);
    border-left: 3px solid var(--hclr-accent);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hclr-dark-card {
    background: var(--hclr-bg-main);
    border-left: none;
    border-top: 3px solid var(--hclr-accent);
}

.hclr-kicker {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--hclr-accent);
    margin-bottom: 15px;
}

.hclr-h3-title {
    font-family: var(--hclr-font-heading);
    font-size: 24px;
    margin-bottom: 15px;
}

.hclr-card-desc {
    font-size: 15px;
    color: var(--hclr-text-muted);
    margin-bottom: 25px;
}

.hclr-card-list {
    list-style: none;
}

.hclr-card-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--hclr-text-light);
}

.hclr-card-list li::before {
    content: "•";
    color: var(--hclr-accent);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 1;
}

/* Footer */
.hclr-footer {
    background-color: #050914;
    padding: 80px 0 30px;
}

.hclr-footer-slogan {
    text-align: center;
    margin-bottom: 60px;
}

.hclr-footer-slogan h2 {
    font-family: var(--hclr-font-heading);
    font-size: 32px;
    color: var(--hclr-accent);
    font-style: italic;
}

.hclr-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.hclr-footer-title {
    font-family: var(--hclr-font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.hclr-footer-text {
    font-size: 14px;
    color: var(--hclr-text-muted);
    line-height: 1.8;
}

.hclr-footer-nav,
.hclr-footer-contact {
    list-style: none;
}

.hclr-footer-nav li,
.hclr-footer-contact li {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--hclr-text-muted);
}

.hclr-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: var(--hclr-text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .hclr-hero-cards,
    .hclr-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hclr-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hclr-hero-title {
        font-size: 40px;
    }
    
    .hclr-header-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .hclr-hero-cards,
    .hclr-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .hclr-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hclr-card-list li::before {
        left: 0;
    }
}
