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

:root {
    --bg-dark-purple: #1A0033;
    --bg-electric-blue: #001F5B;
    --bg-neon-pink: #FF007A;
    
    --neon-pink: #FF007A;
    --electric-blue: #00D4FF;
    --lime-pop: #C6FF00;
    --vivid-orange: #FF6A00;
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);
    
    --text-white: #FFFFFF;
    --text-pastel: #E0EFFF;
    
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --nav-height: 90px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-white);
    background: linear-gradient(135deg, var(--bg-dark-purple), var(--bg-electric-blue), var(--bg-neon-pink));
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Background Blobs */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: floatBlob 10s infinite alternate;
}

.blob-1 { width: 400px; height: 400px; background: var(--neon-pink); top: -10%; left: -10%; }
.blob-2 { width: 500px; height: 500px; background: var(--electric-blue); bottom: -20%; right: -10%; animation-duration: 12s; }
.blob-3 { width: 300px; height: 300px; background: var(--lime-pop); top: 40%; left: 50%; animation-duration: 15s; }

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    line-height: 1.6;
    color: var(--text-pastel);
    margin-bottom: 1rem;
}

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

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.neon-text-pink { color: var(--neon-pink); text-shadow: 0 0 10px var(--neon-pink); }
.neon-text-blue { color: var(--electric-blue); text-shadow: 0 0 10px var(--electric-blue); }
.neon-text-lime { color: var(--lime-pop); text-shadow: 0 0 10px var(--lime-pop); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink), inset 0 0 10px var(--neon-pink);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: var(--neon-pink);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--neon-pink), inset 0 0 20px var(--neon-pink);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--electric-blue);
    color: var(--bg-dark-purple);
    box-shadow: 0 0 15px var(--electric-blue);
}

.btn-secondary:hover {
    box-shadow: 0 0 30px var(--electric-blue);
    transform: translateY(-3px) scale(1.05);
}

/* Header */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(26, 0, 51, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-white);
    text-shadow: 0 0 5px var(--electric-blue);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    font-size: 0.8rem;
    color: var(--neon-pink);
    letter-spacing: 4px;
}

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

.nav-links li a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--electric-blue);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--lime-pop);
    box-shadow: 0 0 10px var(--lime-pop);
    transition: width 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
    text-shadow: 0 0 15px var(--neon-pink);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-height);
    background: url('images/levellanch247-finland-city-skyline-night-bg.jpg') center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(26,0,51,0.4), rgba(255,0,122,0.6));
    z-index: 1;
}

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

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 2px 2px 0px var(--neon-pink);
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

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

/* Rooms Preview (Asymmetrical) */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.room-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.room-card:nth-child(2) {
    transform: translateY(40px);
}

.room-card:nth-child(3) {
    transform: translateY(-20px) rotate(2deg);
}

.room-card:hover {
    transform: translateY(-10px) scale(1.02) rotate(0);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    border-color: var(--electric-blue);
}

.room-img-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.room-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img-wrapper img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    top: 10px; right: 10px;
    background: var(--lime-pop);
    color: var(--bg-dark-purple);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-head);
    font-weight: bold;
    box-shadow: 0 0 10px var(--lime-pop);
}

.room-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.room-features {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.room-features li {
    font-size: 0.8rem;
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    color: var(--electric-blue);
}

/* Split Section (City View & About) */
.split-section {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-content, .split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.4);
    border: 2px solid var(--vivid-orange);
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.amenity-card {
    text-align: center;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    border-color: var(--lime-pop);
    box-shadow: 0 0 20px rgba(198, 255, 0, 0.2);
    transform: translateY(-5px);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
}

/* Gallery Masonry */
.gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 0, 122, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: var(--font-head); font-size: 1.5rem; text-shadow: 0 0 10px white; }

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-head);
    font-size: 0.9rem;
    color: var(--electric-blue);
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 122, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

/* Reviews */
.reviews-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-pink) var(--glass-bg);
}

.review-card {
    min-width: 300px;
    border-color: rgba(198, 255, 0, 0.3);
}

.stars { color: var(--lime-pop); margin-bottom: 1rem; font-size: 1.2rem; }

/* Footer */
footer {
    background: #0D001A;
    border-top: 2px solid var(--neon-pink);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { transition: color 0.3s, text-shadow 0.3s; }
.footer-col ul li a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 8px var(--neon-pink);
}

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

/* Animations Class */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .room-card:nth-child(2), .room-card:nth-child(3) { transform: none; }
    .split-section { flex-direction: column; }
    .gallery-grid { column-count: 2; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height); left: -100%;
        width: 100%; height: calc(100vh - var(--nav-height));
        background: rgba(26, 0, 51, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.4s ease;
    }
    .nav-links.active { left: 0; }
    .mobile-menu-btn { display: block; }
    
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .rooms-grid { grid-template-columns: 1fr; }
    .gallery-grid { column-count: 1; }
}