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

:root {
    --bg-primary: #0B1A13;
    --bg-secondary: #132821;
    --accent-primary: #39FF14;
    --accent-secondary: #7CFF4F;
    --glow-effect: #66FF66;
    --extra-accent: #1FAF9A;
    --text-primary: #FFFFFF;
    --text-secondary: #A8C1B4;
    --glass-bg: rgba(19, 40, 33, 0.6);
    --glass-border: rgba(57, 255, 20, 0.2);
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 1px;
}

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

ul {
    list-style: none;
}

/* Glassmorphism & Neon */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.neon-text {
    color: var(--accent-primary);
    text-shadow: 0 0 10px var(--glow-effect);
}

.neon-border {
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 10px var(--glow-effect);
}

.btn-neon {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(11, 26, 19, 0.8);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    font-family: var(--font-head);
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 0 5px var(--glow-effect) inset, 0 0 5px var(--glow-effect);
    cursor: pointer;
    text-align: center;
}

.btn-neon:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--glow-effect) inset, 0 0 20px var(--glow-effect);
}

.btn-solid {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 0 15px var(--glow-effect);
    transition: 0.4s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-solid:hover {
    background: var(--text-primary);
    box-shadow: 0 0 25px var(--text-primary);
}

/* Header */
header.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 26, 19, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-primary);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.2);
    transition: 0.3s ease;
}

header.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(11, 26, 19, 0.95);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.4);
}

.logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent-primary);
    text-shadow: 0 0 8px var(--glow-effect);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.nav-links li a:hover {
    color: var(--accent-primary);
    text-shadow: 0 0 8px var(--glow-effect);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-primary);
    box-shadow: 0 0 5px var(--glow-effect);
    transition: 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--accent-primary);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('images/photo-1441974231531-c6227db76b6e-hero-hero-section.png') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11,26,19,0.7) 0%, rgba(19,40,33,0.5) 50%, var(--bg-primary) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Page Headers */
.page-header {
    padding: 150px 5% 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(11,26,19,0.9) 0%, var(--bg-primary) 100%), url('images/photo-1437422061949-f6efbde0a471-page-header-page-header.png') center/cover no-repeat;
    border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--accent-primary);
    text-shadow: 0 0 15px var(--glow-effect);
    margin-bottom: 15px;
}

/* Sections */
section {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.section-title span {
    color: var(--accent-primary);
}

/* Stays Cards */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.stay-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    position: relative;
}

.stay-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
}

.stay-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--glass-border);
    transition: 0.5s ease;
}

.stay-card:hover .stay-img {
    filter: brightness(1.2);
}

.stay-info {
    padding: 25px;
}

.stay-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.stay-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.stay-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.price {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-secondary);
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.split-layout .image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.split-layout h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.split-layout p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '⚡';
    color: var(--accent-primary);
    text-shadow: 0 0 5px var(--glow-effect);
}

/* Icons Section */
.icon-card {
    text-align: center;
    padding: 40px 20px;
    transition: 0.4s ease;
}

.icon-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    background: rgba(57, 255, 20, 0.05);
}

.icon-card i, .icon-card .emoji-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px var(--glow-effect));
}

.icon-card h3 {
    margin-bottom: 15px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 26, 19, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--accent-primary);
    font-family: var(--font-head);
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--glow-effect);
}

/* Forms */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-weight: 600;
}

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

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 30px;
}

.stars {
    color: var(--accent-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-shadow: 0 0 5px var(--glow-effect);
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.reviewer {
    font-weight: 600;
    font-family: var(--font-head);
}

/* Map */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(120%);
}

/* Footer */
footer {
    background: #050d09;
    border-top: 2px solid var(--accent-primary);
    box-shadow: 0 -5px 20px rgba(57, 255, 20, 0.1);
    padding: 60px 5% 30px;
}

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

.footer-col h4 {
    color: var(--accent-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-shadow: 0 0 5px var(--glow-effect);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
}

.footer-col ul li a:hover {
    color: var(--accent-secondary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Standard Content Pages */
.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.text-content h2 {
    margin: 40px 0 20px;
    color: var(--accent-primary);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(11, 26, 19, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        border-left: 1px solid var(--accent-primary);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .split-layout {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}