/* Premium Hotel Styling */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #d4af37; /* Gold */
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: white;
    line-height: 1.6;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary-color);
    margin: 0 20px;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-book {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.btn-book:hover {
    background-color: #bfa030;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 50px 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p, .footer-col a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #888;
    font-size: 14px;
}

/* Custom Blocks (GrapesJS compatibility) */
.gjs-block-section h1 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 48px;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-5 { margin-top: 50px; }
.mb-5 { margin-bottom: 50px; }
