@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary-luxury: #25930f; /* Nobre Green */
    --bg-light: #0A0A0A;      /* Pure Black Heritage */
    --bg-dark-luxury: #151515; /* Charcoal Grey */
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --border-soft: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Minimalist Elements */
.luxury-border {
    border-bottom: 1px solid var(--border-soft);
}

.btn-luxury {
    border: 1px solid var(--primary-luxury);
    padding: 0.75rem 2.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--text-main);
}

.btn-luxury:hover {
    background: var(--primary-luxury);
    color: white;
    border-color: var(--primary-luxury);
}

.btn-luxury-dark {
    border: 1px solid white;
    padding: 0.75rem 2.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    transition: all 0.4s ease;
}

.btn-luxury-dark:hover {
    background: white;
    color: black;
}

/* Luxury Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--primary-luxury);
}

/* Image Wrappers */
.img-reveal-wrapper {
    overflow: hidden;
    position: relative;
    background: #000;
}

.img-reveal-wrapper img {
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.img-reveal-wrapper:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Table styling for Schedule (Elegant Dark) */
.schedule-table-luxury {
    width: 100%;
    margin-top: 2rem;
}

.schedule-table-luxury th {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-muted);
    text-align: left;
}

.schedule-table-luxury td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-soft);
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Contact Form Luxury Dark */
.lux-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
    width: 100%;
    transition: border-color 0.3s;
    color: white;
}

.lux-input:focus {
    border-bottom-color: var(--primary-luxury);
    outline: none;
}

/* Scroll Animations (Smooth) */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Overrides */
footer img {
    filter: brightness(0) saturate(100%) invert(38%) sepia(91%) inherit(48%) saturate(1352%) hue-rotate(74deg) brightness(92%) contrast(95%);
}

/* Hero Slider */
.hero-slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slider-item.active {
    opacity: 1;
    z-index: 2;
}

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