:root {
    --honey-gold: #FFD700;
    --hive-black: #121212;
    --graphite: #2C2C2C;
    --text-white: #EDEDED;
    --grid-bg: #1a1a1a;
    
    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--hive-black);
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.6;
    background-image: radial-gradient(var(--graphite) 1px, transparent 1px);
    background-size: 30px 30px;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.hive-header { background: rgba(18, 18, 18, 0.95); padding: 20px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--honey-gold); backdrop-filter: blur(10px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--text-white); display: flex; align-items: center; gap: 8px; letter-spacing: 1px; }
.gold { color: var(--honey-gold); }
.hex-icon { font-size: 1.8rem; color: var(--honey-gold); }

.club-nav a { margin-left: 25px; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: #888; text-transform: uppercase; }
.club-nav a:hover, .club-nav a.active { color: var(--honey-gold); }

.btn-hex { background: transparent; border: 2px solid var(--honey-gold); color: var(--honey-gold) !important; padding: 10px 25px; font-weight: 700; clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); transition: 0.3s; }
.btn-hex:hover { background: var(--honey-gold); color: var(--hive-black) !important; }

/* Mobile Menu */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-toggle span { width: 30px; height: 3px; background: var(--honey-gold); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--graphite); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; border-left: 3px solid var(--honey-gold); }
.mobile-menu.open { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--honey-gold); cursor: pointer; }
.mobile-menu a { font-family: var(--font-heading); font-size: 2rem; margin: 15px 0; color: var(--text-white); }

/* Hero */
.hero-hive { height: 90vh; background-size: cover; background-position: center; position: relative; }
.hex-overlay { width: 100%; height: 100%; background: rgba(18, 18, 18, 0.85); background-image: repeating-linear-gradient(60deg, transparent, transparent 10px, #1a1a1a 10px, #1a1a1a 11px), repeating-linear-gradient(120deg, transparent, transparent 10px, #1a1a1a 10px, #1a1a1a 11px); display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { max-width: 800px; padding: 40px; border: 1px solid var(--honey-gold); position: relative; }
.hero-content::before, .hero-content::after { content: '⬢'; position: absolute; color: var(--honey-gold); font-size: 2rem; }
.hero-content::before { top: -20px; left: -20px; }
.hero-content::after { bottom: -20px; right: -20px; }

.membership-tag { color: var(--honey-gold); font-family: var(--font-heading); font-weight: 600; letter-spacing: 3px; display: block; margin-bottom: 15px; font-size: 0.9rem; }
.hero-content h1 { font-family: var(--font-heading); font-size: 4.5rem; line-height: 1; margin-bottom: 20px; color: var(--text-white); }
.hero-content p { font-size: 1.2rem; color: #ccc; margin-bottom: 40px; }

.cta-hex { display: flex; justify-content: center; gap: 20px; }
.btn-primary { background: var(--honey-gold); color: var(--hive-black); padding: 15px 35px; font-weight: 700; clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); font-family: var(--font-heading); }
.btn-primary:hover { background: #fff; }
.btn-secondary { background: transparent; border: 2px solid var(--text-white); color: var(--text-white); padding: 13px 35px; font-weight: 700; clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); font-family: var(--font-heading); }
.btn-secondary:hover { background: var(--text-white); color: var(--hive-black); }

/* Features */
.hive-features { background: var(--graphite); padding: 50px 0; border-bottom: 1px solid #444; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.f-card { background: var(--hive-black); padding: 30px; text-align: center; border: 1px solid #333; transition: 0.3s; }
.f-card:hover { border-color: var(--honey-gold); transform: translateY(-10px); }
.f-card.highlight { border-top: 4px solid var(--honey-gold); }
.f-icon { font-size: 3rem; margin-bottom: 15px; }
.f-card h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-white); margin-bottom: 10px; }
.f-card p { color: #aaa; }

/* Services */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-heading); font-size: 3rem; color: var(--honey-gold); margin-bottom: 10px; }
.gold-hex-line { width: 100px; height: 3px; background: var(--honey-gold); margin: 0 auto; position: relative; }
.gold-hex-line::after { content: '⬢'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--hive-black); padding: 0 10px; color: var(--honey-gold); }
.gold-hex-line.left { margin: 20px 0; }

.pricing-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.price-hex { background: var(--hive-black); border: 1px solid #444; padding: 40px 20px; text-align: center; position: relative; clip-path: polygon(0% 5%, 5% 0%, 95% 0%, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0% 95%); transition: 0.3s; }
.price-hex:hover { border-color: var(--honey-gold); box-shadow: 0 0 20px rgba(255, 215, 0, 0.1); }
.price-hex.active { background: #1a1a1a; border: 2px solid var(--honey-gold); transform: scale(1.05); }
.badge { position: absolute; top: 10px; right: 10px; background: var(--honey-gold); color: var(--hive-black); padding: 3px 10px; font-weight: 700; font-size: 0.8rem; border-radius: 2px; }
.p-head h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 10px; color: var(--text-white); }
.price { font-size: 2.5rem; color: var(--honey-gold); font-weight: 700; font-family: var(--font-heading); }
.price small { font-size: 1rem; color: #888; }
.p-list { list-style: none; margin: 30px 0; text-align: left; padding: 0 20px; }
.p-list li { padding: 10px 0; border-bottom: 1px dashed #444; color: #ccc; }
.p-list li::before { content: '⬢'; color: var(--honey-gold); margin-right: 10px; font-size: 0.8rem; }
.btn-select { display: block; border: 1px solid #555; color: #fff; padding: 12px; font-family: var(--font-heading); font-weight: 700; transition: 0.3s; }
.btn-select:hover { background: #fff; color: #000; }
.btn-select.gold { background: var(--honey-gold); border: none; color: #000; }
.btn-select.gold:hover { background: #fff; }

/* Gallery */
.hex-gallery { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.hex-item { width: 300px; height: 340px; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); background: var(--honey-gold); padding: 2px; }
.hex-content { width: 100%; height: 100%; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); background: #000; position: relative; overflow: hidden; }
.hex-content img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: grayscale(50%); }
.hex-content:hover img { transform: scale(1.1); filter: grayscale(0%); }
.overlay { position: absolute; bottom: 20%; left: 0; width: 100%; text-align: center; background: rgba(0,0,0,0.7); padding: 10px 0; opacity: 0; transition: 0.3s; }
.hex-content:hover .overlay { opacity: 1; bottom: 25%; }
.overlay h4 { font-family: var(--font-heading); color: var(--honey-gold); margin: 0; }
.overlay span { font-size: 0.8rem; color: #fff; }

/* Contact */
.join-hive { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--graphite); padding: 50px; border: 1px solid #444; }
.join-info h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--honey-gold); margin-bottom: 20px; }
.benefit-list { list-style: none; margin-top: 30px; font-size: 1.1rem; }
.benefit-list li { margin-bottom: 10px; color: #ddd; }

.honey-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.honey-form input { width: 100%; padding: 15px; background: var(--hive-black); border: 1px solid #444; color: var(--text-white); font-family: var(--font-body); outline: none; transition: 0.3s; }
.honey-form input:focus { border-color: var(--honey-gold); }
.form-group label { display: block; margin-bottom: 10px; font-weight: 700; color: var(--honey-gold); }
.radio-group { display: flex; gap: 20px; background: var(--hive-black); padding: 15px; border: 1px solid #444; }
.radio-group label { color: #fff; cursor: pointer; display: flex; align-items: center; gap: 5px; margin: 0; }
.btn-submit { width: 100%; background: var(--honey-gold); color: var(--hive-black); border: none; padding: 15px; font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; cursor: pointer; margin-top: 20px; transition: 0.3s; }
.btn-submit:hover { background: #fff; }

/* Legal */
.club-rules { max-width: 800px; margin: 0 auto; background: var(--graphite); padding: 50px; border: 1px solid #444; }
.club-rules h1 { font-family: var(--font-heading); color: var(--honey-gold); }
.club-rules h3 { color: #fff; margin-top: 30px; font-family: var(--font-heading); }

/* Footer */
.hive-footer { background: #0a0a0a; padding: 60px 0 20px; border-top: 3px solid var(--honey-gold); margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 30px; margin-bottom: 20px; }
.f-col h4 { font-family: var(--font-heading); font-size: 2rem; color: var(--text-white); margin-bottom: 5px; }
.f-links a { color: #888; margin-left: 20px; font-weight: 600; }
.f-links a:hover { color: var(--honey-gold); }
.copyright { text-align: center; font-size: 0.8rem; color: #555; }

/* Cookie */
.cookie-hex { position: fixed; bottom: 20px; left: 20px; background: var(--graphite); border: 2px solid var(--honey-gold); padding: 20px; clip-path: polygon(0% 5%, 5% 0%, 95% 0%, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0% 95%); display: flex; align-items: center; gap: 20px; z-index: 9999; display: none; }
.cookie-hex.active { display: flex; }
.cookie-hex p { margin: 0; color: #fff; font-weight: 600; }
.cookie-hex button { background: var(--honey-gold); color: #000; border: none; padding: 8px 20px; font-weight: 700; cursor: pointer; font-family: var(--font-heading); }

@media (max-width: 900px) {
    .club-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    .feature-grid, .pricing-container, .join-hive, .honey-form .form-row { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}