/* Gartermerea Resort & Casino - Stylesheet */

:root {
    --grmr-color-bg: #050b14;
    --grmr-color-surface: #0a1128;
    --grmr-color-surface-alt: #131c3b;
    --grmr-color-accent: #c5a880;
    --grmr-color-accent-hover: #e0c8a6;
    --grmr-color-text-main: #f0f2f5;
    --grmr-color-text-muted: #9ba1b0;
    
    --grmr-font-heading: 'Playfair Display', serif;
    --grmr-font-body: 'Lato', sans-serif;
    
    --grmr-radius-sm: 4px;
    --grmr-radius-md: 8px;
    --grmr-radius-lg: 16px;
    
    --grmr-shadow-glow: 0 0 20px rgba(197, 168, 128, 0.15);
    --grmr-shadow-card: 0 8px 30px rgba(0, 0, 0, 0.5);
    
    --grmr-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--grmr-color-bg);
    color: var(--grmr-color-text-main);
    font-family: var(--grmr-font-body);
    font-size: 16px;
    line-height: 1.6;
}

body {
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--grmr-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--grmr-color-text-main);
    margin-bottom: 1rem;
}

a {
    color: var(--grmr-color-accent);
    text-decoration: none;
    transition: var(--grmr-transition);
}

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

/* Layout */
.grmr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.grmr-top-header {
    background-color: rgba(5, 11, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.grmr-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grmr-brand-zone {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.grmr-logo-text {
    font-family: var(--grmr-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--grmr-color-accent);
    letter-spacing: 2px;
    border: 2px solid var(--grmr-color-accent);
    padding: 0.25rem 0.5rem;
    border-radius: var(--grmr-radius-sm);
}

.grmr-brand-details {
    display: flex;
    flex-direction: column;
}

.grmr-brand-name {
    font-family: var(--grmr-font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

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

.grmr-top-nav {
    display: flex;
    gap: 2rem;
}

.grmr-nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grmr-color-text-main);
    position: relative;
}

.grmr-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--grmr-color-accent);
    transition: var(--grmr-transition);
}

.grmr-nav-link:hover::after {
    width: 100%;
}

.grmr-badge-area {
    display: flex;
    align-items: center;
}

.grmr-age-badge {
    border: 1px solid var(--grmr-color-accent);
    color: var(--grmr-color-accent);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

/* Hero Section */
.grmr-main-content {
    padding-top: 80px; /* offset for fixed header */
}

.grmr-hero-showcase {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem;
    background: radial-gradient(circle at center, var(--grmr-color-surface-alt) 0%, var(--grmr-color-bg) 100%);
}

.grmr-hero-showcase::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(45deg, rgba(10, 17, 40, 0.8) 0%, rgba(5, 11, 20, 0.9) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(197, 168, 128, 0.03) 10px, rgba(197, 168, 128, 0.03) 20px);
    z-index: 1;
}

.grmr-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.grmr-hero-kicker {
    display: inline-block;
    color: var(--grmr-color-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--grmr-color-accent);
    padding-bottom: 0.5rem;
}

.grmr-hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

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

.grmr-hero-card {
    background: rgba(10, 17, 40, 0.6);
    border: 1px solid rgba(197, 168, 128, 0.1);
    padding: 2rem;
    border-radius: var(--grmr-radius-md);
    backdrop-filter: blur(5px);
    transition: var(--grmr-transition);
}

.grmr-hero-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: var(--grmr-shadow-glow);
}

.grmr-hero-card-title {
    color: var(--grmr-color-accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.grmr-hero-card-text {
    font-size: 0.9rem;
    color: var(--grmr-color-text-muted);
}

/* Generic Sections */
.grmr-section-block {
    padding: 6rem 0;
}

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

.grmr-section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.grmr-section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--grmr-color-accent);
    margin: 1rem auto 0 auto;
}

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

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

.grmr-info-box {
    background-color: var(--grmr-color-surface-alt);
    border-radius: var(--grmr-radius-lg);
    padding: 3rem 2rem;
    border-top: 3px solid transparent;
    transition: var(--grmr-transition);
    box-shadow: var(--grmr-shadow-card);
}

.grmr-info-box:hover {
    border-top-color: var(--grmr-color-accent);
    transform: translateY(-10px);
}

.grmr-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grmr-color-accent);
    display: block;
    margin-bottom: 0.5rem;
}

.grmr-box-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.grmr-box-list {
    list-style: none;
}

.grmr-box-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--grmr-color-text-main);
}

.grmr-box-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--grmr-color-accent);
    font-size: 0.8rem;
}

/* Footer */
.grmr-bottom-footer {
    background-color: #03060a;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.grmr-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grmr-footer-header {
    text-align: center;
    margin-bottom: 4rem;
}

.grmr-footer-slogan {
    font-size: 2rem;
    color: var(--grmr-color-accent);
    font-style: italic;
}

.grmr-footer-columns {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.grmr-footer-col-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grmr-color-text-main);
}

.grmr-footer-text {
    color: var(--grmr-color-text-muted);
    font-size: 0.9rem;
}

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

.grmr-footer-contact-list li,
.grmr-footer-nav-list li {
    color: var(--grmr-color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.grmr-footer-contact-list strong {
    color: var(--grmr-color-text-main);
}

.grmr-footer-link {
    color: var(--grmr-color-text-muted);
}

.grmr-footer-link:hover {
    color: var(--grmr-color-accent);
    padding-left: 5px;
}

.grmr-footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: var(--grmr-color-text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .grmr-hero-grid,
    .grmr-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grmr-footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grmr-top-nav {
        display: none;
    }
    
    .grmr-hero-title {
        font-size: 3rem;
    }
    
    .grmr-hero-grid,
    .grmr-card-grid {
        grid-template-columns: 1fr;
    }
    
    .grmr-footer-columns {
        grid-template-columns: 1fr;
    }
}
