/* Luxury Spa & Hotel Design - Modern Premium Styling */

:root {
    --luxury-gold: #C9A961;
    --luxury-cream: #F7EFD0;
    --luxury-charcoal: #2C2C2C;
    --luxury-black: #1A1A1A;
    --luxury-white: #FFFFFF;
    --luxury-beige: #F5F3F0;
    --luxury-taupe: #E8E5E0;
    --luxury-accent: #D4B87A;
    --spa-green: #8B9A7F;
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--luxury-charcoal);
    background: var(--luxury-white);
    line-height: 1.8;
}

/* Luxury Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-link {
    color: var(--luxury-charcoal) !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--luxury-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--luxury-gold) !important;
}

.btn[style*="background: rgb(0,0,0)"] {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-accent) 100%) !important;
    border: none !important;
    color: var(--luxury-white) !important;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn[style*="background: rgb(0,0,0)"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

/* Hero Section - Luxury Parallax */
.parallax {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7) contrast(1.1);
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(201, 169, 97, 0.2) 100%);
    z-index: 0;
}

.parallax > .row {
    position: relative;
    z-index: 1;
}

/* Luxury Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--luxury-charcoal);
}

.display-3, .display-5 {
    color: var(--luxury-charcoal);
}

/* Luxury Section Styling */
section {
    background: var(--luxury-white);
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

/* Luxury Card Styling */
.card {
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s ease;
    background: var(--luxury-white);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
}

.card video {
    border-radius: 12px 12px 0 0;
}

/* Luxury Button Styling */
.btn-primary[style*="background: rgb(247,239,208)"] {
    background: linear-gradient(135deg, var(--luxury-cream) 0%, var(--luxury-taupe) 100%) !important;
    color: var(--luxury-charcoal) !important;
    border: 2px solid var(--luxury-gold) !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary[style*="background: rgb(247,239,208)"]:hover {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-accent) 100%) !important;
    color: var(--luxury-white) !important;
    border-color: var(--luxury-gold) !important;
    transform: translateY(-2px);
}

/* Luxury Footer */
footer {
    background: linear-gradient(135deg, var(--luxury-charcoal) 0%, var(--luxury-black) 100%) !important;
    color: var(--luxury-white);
    padding: 4rem 0 2rem;
}

footer .container-fluid {
    background: transparent !important;
}

footer h3, footer h6 {
    color: var(--luxury-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--luxury-gold);
    padding-left: 5px;
}

/* Luxury Accent Elements */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    margin: 3rem auto;
    width: 100px;
}

/* Why Choose Us Section */
.container[style*="background: #f7efd0"] {
    background: linear-gradient(135deg, var(--luxury-cream) 0%, var(--luxury-taupe) 100%) !important;
    padding: 5rem 2rem !important;
    position: relative;
}

.container[style*="background: #f7efd0"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(201,169,97,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

/* Luxury Spacing */
.py-4.py-xl-5 {
    padding: 4rem 0 !important;
}

@media (min-width: 1200px) {
    .py-4.py-xl-5 {
        padding: 6rem 0 !important;
    }
}

/* Hotel-Style Welcome Section */
section[style*="border-radius: 41%"] {
    background: var(--luxury-white) !important;
    border-radius: 0 !important;
    padding: 5rem 2rem !important;
    margin-top: -80px !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

section[style*="border-radius: 41%"]::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    opacity: 0.3;
}

/* Luxury Logo Styling */
img[src*="Jamjuree.jpeg"] {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--luxury-gold);
    padding: 0.5rem;
}

/* Accordion Luxury Styling */
.accordion-button {
    background: var(--luxury-beige) !important;
    color: var(--luxury-charcoal) !important;
    font-weight: 600;
    border: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--luxury-gold) !important;
    color: var(--luxury-white) !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(201, 169, 97, 0.25) !important;
}

/* Luxury Video Containers */
video {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--luxury-gold);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Luxury Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    animation: fadeInUp 0.8s ease-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .parallax {
        min-height: 70vh;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    section[style*="border-radius: 41%"] {
        padding: 3rem 1.5rem !important;
    }
}

/* Hotel Concierge Badge */
.hotel-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-accent) 100%);
    color: var(--luxury-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

/* Luxury Text Styling */
.text-center p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

/* Refined Shadows */
.shadow-luxury {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.shadow-luxury-strong {
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
}

