:root {
    --cream: #FAF8F5;
    --charcoal: #2C2C2C;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.6;
}

.font-serif {
    font-family: var(--font-serif);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--charcoal);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a1a1a;
}

/* Navigation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--charcoal);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Gallery */
.gallery-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-filter.active {
    color: var(--charcoal);
    border-color: var(--charcoal);
}

/* Package cards */
.package-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.package-card:hover {
    transform: translateY(-8px);
}

/* Form inputs */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

select option {
    background-color: var(--charcoal);
    color: var(--cream);
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Section transitions */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonial hover effect */
.testimonial-item {
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-4px);
}

/* Image loading placeholder */
.gallery-item img {
    background-color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .package-card {
        padding: 2rem;
    }
    
    .package-card:hover {
        transform: translateY(-4px);
    }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--charcoal);
    outline-offset: 4px;
}

/* Smooth image reveal */
.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.gallery-item:nth-child(1) img { animation-delay: 0.1s; }
.gallery-item:nth-child(2) img { animation-delay: 0.15s; }
.gallery-item:nth-child(3) img { animation-delay: 0.2s; }
.gallery-item:nth-child(4) img { animation-delay: 0.25s; }
.gallery-item:nth-child(5) img { animation-delay: 0.3s; }
.gallery-item:nth-child(6) img { animation-delay: 0.35s; }
.gallery-item:nth-child(7) img { animation-delay: 0.4s; }
.gallery-item:nth-child(8) img { animation-delay: 0.45s; }
.gallery-item:nth-child(9) img { animation-delay: 0.5s; }
.gallery-item:nth-child(10) img { animation-delay: 0.55s; }
.gallery-item:nth-child(11) img { animation-delay: 0.6s; }
.gallery-item:nth-child(12) img { animation-delay: 0.65s; }
