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

:root {
    --arctic-black: #0a0510;
    --ice-gray: #130a1c;
    --frost-white: #f9fafb;
    --nordic-blue: #8b5cf6;
    --soft-cyan: #10b981;
    --platinum: #e2e8f0;
    --frost-flow: linear-gradient(135deg, #0a0510, #3b0764, #022c22);
    --ice-glow: linear-gradient(135deg, #8b5cf6, #10b981);
    --glass-bg: rgba(20, 10, 30, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--arctic-black);
    color: var(--platinum);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--frost-white);
    font-weight: 500;
    line-height: 1.2;
}

a {
    color: var(--platinum);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--soft-cyan);
}

ul {
    list-style: none;
}

/* Typography Utilities */
.text-cyan { color: var(--soft-cyan); }
.text-white { color: var(--frost-white); }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; font-weight: 600; }
.section-subtitle { font-size: 1.1rem; color: var(--platinum); margin-bottom: 3rem; font-weight: 300; }

/* Buttons - Updated for a more fluid, modern feel */
.btn-primary {
    display: inline-block;
    background: var(--ice-glow);
    color: var(--frost-white) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--frost-white) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 1px solid var(--soft-cyan);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--frost-white);
}

/* Header - Floating Fluid Pill to Full Width Morphing Style */
.glass-header {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1000;
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 10, 30, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-header.shrink {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    background: rgba(10, 5, 16, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 1rem 5%;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--frost-white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Hero Section - Added padding-top to prevent header overlap */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--frost-flow);
    opacity: 0.85;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    padding: 2rem 5%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Page Header (Internal Pages) */
.page-header {
    padding: 12rem 5% 6rem;
    background: var(--ice-gray);
    position: relative;
    text-align: center;
}

/* Editorial Sections */
.editorial-section {
    padding: 8rem 5%;
}

.editorial-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.editorial-row:nth-child(even) {
    flex-direction: row-reverse;
}

.editorial-img-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.editorial-img-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.editorial-content {
    flex: 1;
    padding: 2rem 0;
}

.editorial-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--soft-cyan);
}

.editorial-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--platinum);
}

.features-list {
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list li::before {
    content: "✦";
    color: var(--soft-cyan);
}

/* Hotel Details Page - Fixed header overlap */
.hotel-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    padding-top: 100px;
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 5%;
}

.hotel-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hotel-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding: 6rem 5%;
}

@media (max-width: 992px) {
    .hotel-grid { grid-template-columns: 1fr; }
}

.hotel-info h3 {
    font-size: 1.8rem;
    margin: 3rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-grid img:first-child {
    grid-column: 1 / -1;
    height: 400px;
}

/* Glass Form / Sidebar */
.glass-card {
    background: linear-gradient(135deg, rgba(20, 10, 30, 0.6), rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    position: sticky;
    top: 120px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--platinum);
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    color: var(--frost-white);
    font-family: 'Inter', sans-serif;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--soft-cyan);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

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

.glass-card .btn-primary {
    width: 100%;
    text-align: center;
}

/* Text Pages (About, Legal) */
.text-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 5%;
}

.text-page-content h2 { margin: 2rem 0 1rem; color: var(--soft-cyan); }
.text-page-content p { margin-bottom: 1.5rem; }

/* Footer */
.main-footer {
    background: var(--ice-gray);
    padding: 6rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--platinum);
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 992px) {
    .editorial-row, .editorial-row:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .glass-header {
        top: 15px;
        width: 95%;
        padding: 1rem 1.5rem;
        border-radius: 30px;
    }
    .glass-header.shrink {
        padding: 0.8rem 5%;
    }
    .glass-header .logo {
        font-size: 1.2rem;
    }
    .glass-header .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
}