:root { --primary-color: #ffffff; --secondary-color: #f0f0f0; --accent-color: #ff69b4; --featured-color: #9f70fa; --glass-bg: rgba(255, 255, 255, 0.1); --glass-border: rgba(255, 255, 255, 0.2); --font-family: 'Poppins', sans-serif; }
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: var(--font-family); color: var(--primary-color); line-height: 1.6; overflow-x: hidden; background-color: #111; }
.background-container { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-image: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?q=80&w=2787&auto=format&fit=crop'); background-size: cover; background-position: center; background-attachment: fixed; z-index: -1; filter: blur(8px) brightness(0.7); transform: scale(1.1); }
header { position: fixed; width: 100%; top: 0; padding: 1rem 5%; z-index: 10; transition: background-color 0.3s ease; }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 2rem; }
.nav-links a { text-decoration: none; color: var(--primary-color); font-weight: 500; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--accent-color); }
.hamburger { display: none; cursor: pointer; }
.hamburger .line { width: 25px; height: 3px; background-color: var(--primary-color); margin: 5px 0; transition: all 0.3s ease; }
main { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
section { padding: 8rem 0; min-height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
#hero { min-height: 100vh; }
h1 { font-size: 3.5rem; margin-bottom: 1rem; font-weight: 700; }
h2 { font-size: 2.5rem; margin-bottom: 3rem; font-weight: 700; }
.hero-buttons { display: flex; gap: 1rem; margin-top: 2rem; }
.cta-button { display: inline-block; padding: 0.8rem 2rem; background: var(--accent-color); color: var(--primary-color); text-decoration: none; border-radius: 50px; font-weight: 500; transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s; border: 2px solid transparent; cursor: pointer; font-size: 1rem; }
.cta-button:hover { transform: scale(1.05); background-color: #ff85c1; }
.cta-button.secondary { background: transparent; border-color: var(--accent-color); }
.cta-button.secondary:hover { background-color: var(--accent-color); }
.glass { background: var(--glass-bg); border-radius: 16px; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-border); padding: 3rem; }
.hero-card { max-width: 700px; }
.about-card { max-width: 800px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; width: 100%; }
.gallery-item { padding: 1rem; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.pricing-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; width: 100%; }
.pricing-card { display: flex; flex-direction: column; text-align: center; }
.pricing-card.featured { transform: scale(1.05); border-color: var(--featured-color); position: relative; }
.featured-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--featured-color); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 500; }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.price { font-size: 3rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--accent-color); }
.pricing-card.featured .price { color: var(--featured-color); }
.pricing-card ul { list-style: none; margin-bottom: 2rem; text-align: left; }
.pricing-card ul li { margin-bottom: 0.8rem; }
.pricing-card .cta-button { margin-top: auto; }
.testimonial-carousel { max-width: 700px; width:100%; overflow: hidden; position: relative; padding: 2rem; }
.testimonial-track { display: flex; transition: transform 0.5s ease-in-out; }
.testimonial-card { flex: 0 0 100%; width: 100%; padding: 0 2rem; }
.testimonial-card p { font-size: 1.1rem; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-card h4 { font-size: 1rem; font-weight: 500; color: var(--secondary-color); }
.carousel-nav { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); }
.carousel-btn { background: none; border: 1px solid var(--glass-border); color: var(--primary-color); font-size: 1.5rem; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; margin: 0 10px; transition: background-color 0.3s; }
.carousel-btn:hover { background-color: var(--glass-bg); }
.instagram-feed-container { width: 100%; max-width: 1000px; min-height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; }
.booking-container { width: 100%; max-width: 800px; min-height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; }
.booking-confirmation-message { color: var(--primary-color); font-size: 1.2rem; margin-bottom: 1rem; transition: opacity 0.3s ease; opacity: 0; max-height: 0; }
.booking-confirmation-message.visible { opacity: 1; max-height: 100px; }
footer { text-align: center; padding: 3rem 1rem 2rem 1rem; }
.social-links { margin-bottom: 1rem; }
.social-links a { color: var(--primary-color); font-size: 1.5rem; margin: 0 1rem; transition: color 0.3s, transform 0.3s; display: inline-block; }
.social-links a:hover { color: var(--accent-color); transform: scale(1.2); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; width: 100%; padding-top: 5rem;}
.post-card { text-align: left; overflow: hidden; }
.post-card img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover img { transform: scale(1.05); }
.post-content { padding: 1.5rem; }
.post-content h3 { margin-bottom: 0.5rem; }
.post-content .post-meta { font-size: 0.8rem; color: var(--secondary-color); margin-bottom: 1rem; }
.post-content a { color: var(--accent-color); text-decoration: none; font-weight: 500; }
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; } h2 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 60%; height: 100vh; background-color: rgba(0, 0, 0, 0.8); backdrop-filter: blur(10px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transition: right 0.5s ease-in-out; }
    .nav-links.nav-active { right: 0; }
    .hamburger { display: block; }
    .toggle .line:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line:nth-child(2) { opacity: 0; }
    .toggle .line:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
}