:root {
    --primary-bg: #fffbfb; /* Soft pinkish white */
    --secondary-bg: #fcefed; /* Soft pastel pink */
    --text-color: #4a4a4a; /* Dark Grey */
    --text-muted: #6c6c6c; /* Muted Grey */
    --accent-color: #c58f8f; /* Dusty Rose */
    --accent-gradient: linear-gradient(135deg, #c58f8f 0%, #a86e6e 100%);
    --card-bg: rgba(255, 255, 255, 0.6);
    --card-border: rgba(197, 143, 143, 0.3);
    --card-hover: rgba(255, 255, 255, 0.8);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --radius-l: 24px;
    --radius-m: 16px;
    --radius-s: 8px;
}

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

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Utilities */
.section {
    padding: 6rem 0;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-8 { grid-column: span 8; }
.bento-col-12 { grid-column: span 12; }

@media (max-width: 900px) {
    .bento-col-4, .bento-col-6, .bento-col-8 {
        grid-column: span 12;
    }
}

/* Bento Card Style */
.bento-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-l);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(197, 143, 143, 0.1);
    border-color: rgba(197, 143, 143, 0.5);
    background: var(--card-hover);
}

/* Navigation */
.navbar {
    background: rgba(255, 251, 251, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    color: var(--text-color);
}

.nav-links li a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.btn-nav {
    border: 1px solid var(--accent-color);
    color: var(--accent-color) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--accent-color);
    color: #fff !important;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
}

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

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 15s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }

@keyframes slideShow {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 0.4; }
    33% { opacity: 0.4; }
    43% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 251, 251, 0.7), rgba(252, 239, 237, 0.8));
    z-index: -1;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
}

.hero-content .slogan {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-style: italic;
    font-weight: 300;
    opacity: 0.9;
    font-family: var(--font-heading);
    color: var(--text-color);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(197, 143, 143, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 143, 143, 0.5);
}

/* Section Titles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    opacity: 0.8;
}

/* About Bento */
.about-text {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.7;
    color: var(--text-muted);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-m);
}

/* Services */
.service-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    background: rgba(197, 143, 143, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(74, 74, 74, 0.1);
    align-items: center;
}

.service-list li:last-child {
    border-bottom: none;
}

.price-tag {
    font-weight: 600;
    color: var(--accent-color);
}

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

.gallery-card {
    border-radius: var(--radius-l);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
}

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

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

.insta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-card:hover .insta-overlay {
    opacity: 1;
}

.insta-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Rules / Infos */
.info-card {
    text-align: center;
    align-items: center;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Booking */
.booking-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    color: var(--text-color);
    border-radius: var(--radius-l);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

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

select, input {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    border-radius: var(--radius-s);
    padding: 0.8rem;
    width: 100%;
}

select option {
    background: #fff;
    color: var(--text-color);
}

select:focus, input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 2px rgba(197, 143, 143, 0.2);
}

.btn-pay {
    background: var(--accent-gradient);
    color: #fff;
    border-radius: var(--radius-s);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-pay:hover {
    box-shadow: 0 5px 15px rgba(197, 143, 143, 0.3);
    transform: translateY(-2px);
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--text-muted);
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

#booking-summary {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(197, 143, 143, 0.2) !important;
    color: var(--text-color) !important;
    padding: 1.5rem;
    border-radius: var(--radius-m);
}

#booking-summary h3 {
    color: var(--accent-color) !important;
    margin-bottom: 1rem;
}

#booking-summary hr {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

#booking-summary .total-price {
    color: var(--accent-color) !important;
    font-size: 1.2rem;
    font-weight: bold;
}
