:root {
    --dark: #121212;
    --darker: #000000;
    --gold: #ffb300;
    --gold-dim: #c78d00;
    --white: #e0e0e0;
    --grey: #424242;
}

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

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

.bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/dark-wood.png');
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.logo {
    font-family: 'Rye', cursive;
    font-size: 1.5rem;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 179, 0, 0.5);
}

.btn-book {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.3s;
}

.btn-book:hover {
    background: var(--gold);
    color: var(--darker);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, transparent 0%, var(--darker) 100%), url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover;
}

.hero-content h1 {
    font-family: 'Rye', cursive;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.neon-text {
    color: var(--white);
    text-shadow: 0 0 5px var(--gold), 0 0 10px var(--gold), 0 0 20px var(--gold);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #bdbdbd;
    font-weight: 300;
}

.btn-main {
    background: #25d366;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Services */
.section {
    padding: 80px 0;
}

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

.section-title {
    font-family: 'Rye', cursive;
    text-align: center;
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.service-item.highlight {
    border: 1px solid var(--gold);
    padding: 20px;
    margin: 20px -20px;
    background: rgba(255, 179, 0, 0.05);
}

.svc-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.svc-info p {
    color: #757575;
    font-weight: 300;
}

.svc-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s;
}

.gallery-img img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
    z-index: 2;
    position: relative;
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.floating-wa a {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.floating-wa a:hover {
    transform: translateY(-5px);
}

footer {
    text-align: center;
    padding: 40px 0;
    color: #757575;
    background: #000;
}

.socials {
    margin-top: 10px;
}

.socials a {
    color: var(--white);
    margin: 0 10px;
    font-size: 1.2rem;
}

/* Animation */
[data-scroll] {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}
[data-scroll="fade-up"] { transform: translateY(30px); }
[data-scroll="fade-left"] { transform: translateX(30px); }
[data-scroll="zoom-in"] { transform: scale(0.9); }
[data-scroll].scrolled { opacity: 1; transform: translate(0) scale(1); }

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 { font-size: 3rem; }
}
