@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@800&family=Poppins:wght@600&display=swap');

:root {
    /* Color System */
    --primary: #6C2BD9;
    --accent: #9F6BFF;
    --secondary: #050507;
    --card-bg: #12121A;
    --highlight: #FFD700;
    --glow: #A855F7;
    --text-light: #F3F4F6;
    --text-muted: #9CA3AF;
    --glass-border: rgba(255, 255, 255, 0.05);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-sub: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-family: var(--font-sub); font-size: 1.5rem; text-transform: none; margin-bottom: 1rem; color: var(--highlight); }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

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

a:hover {
    color: var(--highlight);
}

/* Layout Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* Grid System */
.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-sub);
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.8);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--highlight);
    border: 2px solid var(--highlight);
}

.btn-outline:hover {
    background: var(--highlight);
    color: var(--secondary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand span {
    color: var(--highlight);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    font-family: var(--font-sub);
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5, 5, 7, 0.9) 0%, rgba(5, 5, 7, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtext {
    font-family: var(--font-sub);
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Cards & UI Blocks */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(168, 85, 247, 0.3);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--highlight);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Hotel Page Specifics */
.hotel-header {
    background: linear-gradient(to bottom, rgba(108, 43, 217, 0.2), var(--secondary));
    padding-top: 10rem;
    padding-bottom: 4rem;
    text-align: center;
}

.featured-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.featured-image {
    flex: 1;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.featured-content {
    flex: 1;
    padding: 3rem 4rem 3rem 0;
}

.icon-list {
    list-style: none;
    margin-top: 1.5rem;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-sub);
    color: var(--text-light);
}

.icon-list i {
    color: var(--accent);
    font-size: 1.2rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tag {
    background: rgba(108, 43, 217, 0.1);
    border: 1px solid rgba(108, 43, 217, 0.3);
    color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-sub);
    font-size: 0.9rem;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Page Header (Generic) */
.page-header {
    padding: 10rem 0 5rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(5,5,7,0), var(--secondary)), url('images/futuristic-background-pattern.jpg');
    background-size: cover;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: #020203;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

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

.footer-col h4 {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--highlight);
    padding-left: 5px;
}

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

/* Utilities */
.social-disclaimer {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--highlight);
    color: var(--highlight);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-family: var(--font-sub);
    margin-bottom: 2rem;
}

.seo-block {
    display: none;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .featured-split { flex-direction: column; }
    .featured-content { padding: 2rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; left: -100%; width: 100%; height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active { left: 0; }
    .mobile-toggle { display: block; z-index: 1000; position: relative; }
    
    .grid-2, .grid-4, .grid-3 { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-links a:hover { padding-left: 0; }
}