/* Lake Nona Wave Hotel Styles */

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

:root {
    --wave-blue: #0077BE;
    --tech-purple: #6B46C1;
    --neon-green: #10B981;
    --cyber-gray: #1F2937;
    --light-tech: #F3F4F6;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cyber-gray);
    color: var(--white);
    overflow-x: hidden;
}

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

.navbar {
    position: fixed; top: 0; width: 100%;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000; padding: 1rem 0;
    border-bottom: 1px solid var(--wave-blue);
}

.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
}

.nav-logo .logo-text {
    font-family: 'Rajdhani', sans-serif; font-size: 2rem;
    font-weight: 700; color: var(--wave-blue);
    text-shadow: 0 0 20px var(--wave-blue);
}

.nav-logo .logo-subtext {
    font-size: 0.8rem; color: var(--neon-green);
    font-weight: 500; letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu { display: flex; gap: 2rem; align-items: center; }

.nav-link {
    color: var(--white); text-decoration: none;
    font-weight: 500; transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--wave-blue);
    text-shadow: 0 0 10px var(--wave-blue);
}

.cta-link {
    background: linear-gradient(45deg, var(--wave-blue), var(--tech-purple));
    color: var(--white) !important;
    padding: 10px 25px; border-radius: 25px;
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.hero {
    height: 100vh; position: relative;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}

.hero-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--cyber-gray), var(--wave-blue), var(--tech-purple));
    background-size: 400% 400%;
    animation: techWave 15s ease infinite;
}

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

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

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem; font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--wave-blue), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem; margin-bottom: 2.5rem;
    opacity: 0.9; line-height: 1.6;
}

.btn {
    display: inline-block; padding: 15px 30px;
    text-decoration: none; border-radius: 30px;
    font-weight: 600; transition: all 0.3s ease;
    position: relative; overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--wave-blue), var(--tech-purple));
    color: var(--white); border: 1px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent; color: var(--white);
    border: 2px solid var(--wave-blue);
}

.btn-secondary:hover {
    background: var(--wave-blue);
    box-shadow: 0 0 20px var(--wave-blue);
}

.tech-features {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); display: flex; gap: 2rem; z-index: 2;
}

.tech-feature {
    background: rgba(31, 41, 55, 0.8);
    color: var(--neon-green); padding: 0.5rem 1rem;
    border-radius: 20px; font-size: 0.9rem; font-weight: 600;
    border: 1px solid var(--wave-blue);
    backdrop-filter: blur(10px);
}

.rooms { padding: 100px 0; background: var(--light-tech); color: var(--cyber-gray); }

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem; font-weight: 600;
    text-align: center; margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--wave-blue), var(--tech-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center; margin-bottom: 3rem;
    font-size: 1.1rem; opacity: 0.8;
}

.room-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem; color: var(--wave-blue);
    margin-bottom: 1rem;
}

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

.room-features li {
    padding: 0.5rem 0; position: relative; padding-left: 25px;
}

.room-features li::before {
    content: '⚡'; position: absolute; left: 0;
    color: var(--neon-green);
}

.room-price {
    font-size: 1.5rem; font-weight: 700;
    color: var(--tech-purple);
}

.wellness { padding: 100px 0; background: var(--cyber-gray); }

.wellness-highlight h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem; color: var(--neon-green);
    margin-bottom: 1rem;
}

.wellness-features {
    list-style: none;
}

.wellness-features li {
    padding: 0.8rem 0; position: relative; padding-left: 30px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.wellness-features li::before {
    content: '🧬'; position: absolute; left: 0;
}

.dining { padding: 100px 0; background: var(--light-tech); color: var(--cyber-gray); }

.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.restaurant-card {
    background: var(--white); padding: 2rem;
    border-radius: 15px; text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.restaurant-card:hover {
    border-color: var(--wave-blue);
    box-shadow: 0 0 20px rgba(0, 119, 190, 0.3);
    transform: translateY(-5px);
}

.restaurant-card h3 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--tech-purple); margin-bottom: 1rem;
}

.contact { padding: 100px 0; background: var(--cyber-gray); }

.contact-content {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
}

.contact-info h2 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--wave-blue); margin-bottom: 1.5rem;
}

.contact-details { display: grid; gap: 1.5rem; }

.contact-item strong {
    color: var(--neon-green); display: block; margin-bottom: 0.5rem;
}

.booking-form {
    background: rgba(31, 41, 55, 0.8);
    padding: 2.5rem; border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid var(--wave-blue);
}

.booking-form h3 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--neon-green); margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    display: flex; flex-direction: column; margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem; color: var(--wave-blue); font-weight: 600;
}

.form-group input {
    padding: 12px; border: 1px solid var(--wave-blue);
    border-radius: 8px; background: rgba(255, 255, 255, 0.1);
    color: var(--white); transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none; border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.btn-full { width: 100%; }

.footer {
    background: var(--cyber-gray); color: var(--white);
    padding: 40px 0; text-align: center;
    border-top: 1px solid var(--wave-blue);
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .contact-content { grid-template-columns: 1fr; gap: 2rem; }
    .tech-features { flex-direction: column; gap: 0.5rem; }
}