/* style.css */
:root {
    --ghl-primary: #D4AF37; /* Gold */
    --ghl-primary-hover: #b5952f;
    --ghl-bg-dark: #062118; /* Deep Emerald */
    --ghl-bg-darker: #03120d;
    --ghl-bg-card: #0a2d21;
    --ghl-text-main: #f8fafc;
    --ghl-text-muted: #cbd5e1;
    --ghl-font-head: 'Playfair Display', serif;
    --ghl-font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ghl-font-body);
    background-color: var(--ghl-bg-darker);
    color: var(--ghl-text-main);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ghl-font-head);
    font-weight: 600;
    color: var(--ghl-primary);
}

a {
    color: var(--ghl-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--ghl-text-main);
}

/* Header */
.ghl-header {
    background-color: rgba(3, 18, 13, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.ghl-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ghl-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ghl-logo-abbr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ghl-primary), #8a701d);
    color: var(--ghl-bg-darker);
    font-family: var(--ghl-font-head);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 4px;
}

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

.ghl-brand-name {
    font-family: var(--ghl-font-head);
    font-size: 1.5rem;
    color: var(--ghl-text-main);
    line-height: 1.1;
    letter-spacing: 1px;
}

.ghl-brand-sub {
    font-size: 0.8rem;
    color: var(--ghl-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ghl-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ghl-badge-18 {
    width: 44px;
    height: 44px;
    border: 2px solid var(--ghl-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--ghl-primary);
    font-size: 1.1rem;
}

.ghl-btn-primary {
    background-color: var(--ghl-primary);
    color: var(--ghl-bg-darker);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.ghl-btn-primary:hover {
    background-color: var(--ghl-text-main);
    color: var(--ghl-bg-darker);
}

.ghl-btn-secondary {
    background-color: transparent;
    color: var(--ghl-primary);
    border: 1px solid var(--ghl-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ghl-btn-secondary:hover {
    background-color: var(--ghl-primary);
    color: var(--ghl-bg-darker);
}

/* Main content */
.ghl-main-content {
    min-height: 100vh;
}

/* Hero */
.ghl-hero {
    padding: 8rem 2rem;
    background: radial-gradient(circle at center, var(--ghl-bg-card) 0%, var(--ghl-bg-darker) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Add an elegant CSS pattern for premium feel instead of image */
.ghl-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.ghl-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ghl-hero-kicker {
    display: block;
    color: var(--ghl-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.ghl-hero-title {
    font-size: 4.5rem;
    color: var(--ghl-text-main);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.ghl-hero-desc {
    font-size: 1.25rem;
    color: var(--ghl-text-muted);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.ghl-hero-card {
    background: rgba(10, 45, 33, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.ghl-hc-title {
    display: block;
    font-family: var(--ghl-font-head);
    color: var(--ghl-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.ghl-hc-text {
    font-size: 0.95rem;
}

/* Sections */
.ghl-section {
    padding: 6rem 2rem;
}

.ghl-wellbeing {
    background-color: var(--ghl-bg-dark);
}

.ghl-gaming {
    background-color: var(--ghl-bg-darker);
}

.ghl-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ghl-sec-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.ghl-sec-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--ghl-text-muted);
    font-size: 1.1rem;
}

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

.ghl-feature-box {
    background: var(--ghl-bg-card);
    padding: 3rem 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--ghl-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ghl-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ghl-fb-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ghl-primary);
    display: block;
    margin-bottom: 0.5rem;
}

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

.ghl-fb-text {
    color: var(--ghl-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.ghl-fb-list {
    list-style: none;
}

.ghl-fb-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.ghl-fb-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ghl-primary);
}

/* Footer */
.ghl-footer {
    background-color: #020d09;
    padding: 5rem 2rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.ghl-footer-top {
    text-align: center;
    margin-bottom: 4rem;
}

.ghl-footer-slogan {
    font-size: 3rem;
    opacity: 0.8;
}

.ghl-footer-cols {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.ghl-fc-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ghl-fc-text {
    color: var(--ghl-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.ghl-address {
    font-style: normal;
    color: var(--ghl-text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.ghl-address strong {
    color: var(--ghl-primary);
}

.ghl-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ghl-footer-nav {
    display: flex;
    gap: 2rem;
}

.ghl-footer-nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ghl-copyright {
    color: var(--ghl-text-muted);
    font-size: 0.85rem;
}

/* Cookie Banner */
.ghl-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ghl-bg-card);
    border: 1px solid var(--ghl-primary);
    padding: 1.5rem;
    border-radius: 8px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    max-width: 90%;
    width: 600px;
}

.ghl-cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
    width: 100%;
}

.ghl-cookie-content p {
    font-size: 0.9rem;
    margin: 0;
}

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

@media (max-width: 768px) {
    .ghl-hero-title {
        font-size: 3rem;
    }
    
    .ghl-hero-grid, .ghl-grid-3, .ghl-footer-cols {
        grid-template-columns: 1fr;
    }
    
    .ghl-header-inner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ghl-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .ghl-cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
