/* GHF Custom Styles */
:root {
    --ghf-bg: #0b132b;
    --ghf-surface: #1c2541;
    --ghf-surface-light: #283350;
    --ghf-accent-bronze: #d4af37;
    --ghf-accent-orange: #ff6b35;
    --ghf-text-main: #f4f4f9;
    --ghf-text-muted: #b8c1d3;
    --ghf-font-head: 'Cinzel', serif;
    --ghf-font-body: 'Lora', serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Header */
.ghf-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;
    backdrop-filter: blur(10px);
}

.ghf-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ghf-logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ghf-logo-text {
    font-family: var(--ghf-font-head);
    font-size: 2.2rem;
    color: var(--ghf-accent-bronze);
    font-weight: 700;
    letter-spacing: 2px;
}

.ghf-brand-info {
    display: flex;
    flex-direction: column;
}

.ghf-brand-name {
    font-family: var(--ghf-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ghf-brand-sub {
    font-size: 0.85rem;
    color: var(--ghf-text-muted);
}

.ghf-age-badge {
    background: transparent;
    border: 1px solid var(--ghf-accent-orange);
    color: var(--ghf-accent-orange);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.ghf-hero {
    padding: 100px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, var(--ghf-surface) 0%, var(--ghf-bg) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative elements instead of images */
.ghf-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
}

.ghf-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%);
}

.ghf-hero-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ghf-hero-kicker {
    display: inline-block;
    color: var(--ghf-accent-orange);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.ghf-hero-title {
    font-family: var(--ghf-font-head);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--ghf-accent-bronze);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

.ghf-hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ghf-feature-card {
    background: rgba(28, 37, 65, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 220px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ghf-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.ghf-feature-card strong {
    color: var(--ghf-accent-bronze);
    font-family: var(--ghf-font-head);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.ghf-feature-card span {
    font-size: 0.9rem;
    color: var(--ghf-text-muted);
}

/* Sections General */
.ghf-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ghf-section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ghf-section-title {
    font-family: var(--ghf-font-head);
    font-size: 2.8rem;
    color: var(--ghf-accent-bronze);
    margin-bottom: 20px;
}

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

.ghf-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Info Box */
.ghf-info-box {
    background-color: var(--ghf-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ghf-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ghf-accent-bronze), var(--ghf-accent-orange));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ghf-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background-color: var(--ghf-surface-light);
}

.ghf-info-box:hover::before {
    opacity: 1;
}

.ghf-box-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ghf-accent-orange);
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.ghf-box-title {
    font-family: var(--ghf-font-head);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.ghf-box-text {
    color: var(--ghf-text-muted);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.ghf-box-list {
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.ghf-box-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--ghf-text-main);
}

.ghf-box-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ghf-accent-bronze);
    font-size: 0.9rem;
}

/* Alternating section background */
.ghf-gaming-section {
    position: relative;
}
.ghf-gaming-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: -1;
}

/* Footer */
.ghf-footer {
    background-color: #050914;
    padding: 80px 20px 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    margin-top: 50px;
}

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

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

.ghf-footer-slogan {
    font-family: var(--ghf-font-head);
    font-size: 2.2rem;
    color: var(--ghf-accent-bronze);
    font-weight: 500;
}

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

.ghf-f-title {
    font-family: var(--ghf-font-head);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.ghf-f-text {
    color: var(--ghf-text-muted);
    font-size: 0.95rem;
}

.ghf-f-contact-list,
.ghf-f-nav {
    list-style: none;
}

.ghf-f-contact-list li {
    color: var(--ghf-text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
}

.ghf-f-nav li {
    margin-bottom: 12px;
}

.ghf-f-nav a {
    color: var(--ghf-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.ghf-f-nav a:hover {
    color: var(--ghf-accent-bronze);
}

.ghf-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .ghf-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .ghf-header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .ghf-hero {
        padding: 60px 20px;
    }
    
    .ghf-hero-title {
        font-size: 2.8rem;
    }
    
    .ghf-section-title {
        font-size: 2.2rem;
    }
    
    .ghf-footer-slogan {
        font-size: 1.8rem;
    }
}
