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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a0033, #000000);
    color: #ffffff;
    line-height: 1.6;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.logo img {
    height: 65px;
    filter: drop-shadow(0 0 15px #ff00ff);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 10px;
}

.book-btn, .cta {
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    color: black;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

/* Gallery Grid Fix */
.content div[style*="grid-template-columns"] {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 25px !important;
}

/* Hero */
.hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.content {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Mobile Improvements */
@media (max-width: 768px) {
    nav ul {
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .logo img {
        height: 55px;
    }
    
    h1 {
        font-size: 2.1rem !important;
    }
    
    .hero {
        height: 50vh;
        min-height: 380px;
    }
}