:root {
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --card-bg: #1e293b;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.nav-logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: var(--darker-bg);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #f3e5ab, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features */
.features {
    padding: 5rem 4rem;
    background: var(--darker-bg);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.feature-card h3 {
    color: var(--text-light);
    margin-top: 0;
}

.feature-card p {
    color: var(--text-muted);
}

/* Pricing Page */
.pricing-container {
    padding-top: 120px;
    padding-bottom: 5rem;
    text-align: center;
    min-height: 100vh;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.plan-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 300px;
    position: relative;
    overflow: hidden;
}

.plan-card.popular {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.plan-card.popular::before {
    content: "MOST POPULAR";
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold);
    color: var(--darker-bg);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 3rem;
    color: var(--gold);
    font-weight: bold;
    margin: 1rem 0;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 2rem 0;
}

.features-list li {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.features-list li::before {
    content: "✓";
    color: var(--gold);
    margin-right: 10px;
}

/* Auth Forms */
.auth-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/static/uploads/hotel_bg.jpg') no-repeat center center/cover;
}

.auth-box {
    background: rgba(15, 23, 42, 0.95);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--gold);
    width: 400px;
    text-align: center;
}

.auth-logo {
    width: 80px;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: var(--gold);
    outline: none;
}

.btn-full {
    width: 100%;
}

.auth-footer {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--gold);
}