@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --color-forest: #2E4632;
    --color-beige: #F5F5DC;
    --color-gold: #C5A059;
    --color-gold-hover: #b08d4b;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-beige);
    color: var(--color-forest);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Custom Utilities */
.text-balance {
    text-wrap: balance;
}

.text-gold {
    color: var(--color-gold);
}

.bg-forest {
    background-color: var(--color-forest);
}

.btn-gold {
    background-color: var(--color-gold);
    color: white;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(46, 70, 50, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Animation Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 100ms;
}

.stagger-2 {
    transition-delay: 200ms;
}

.stagger-3 {
    transition-delay: 300ms;
}

.stagger-4 {
    transition-delay: 400ms;
}

/* Parallax Backgrounds */
.bg-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Utilities */
.input-elegant {
    background: transparent;
    border-bottom: 1px solid rgba(46, 70, 50, 0.2);
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
    color: var(--color-forest);
    transition: border-color 0.3s ease;
}

.input-elegant:focus {
    outline: none;
    border-bottom-color: var(--color-gold);
}

/* Hide scrollbar for clean look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media screen and (max-width: 479px) {
    .mobile-img {
        height: 400px !important;
        object-fit: cover;
    }
}

@media screen and (max-width: 767px) {
    .hide-on-mobile {
        display: none !important;
    }
}

/* Lightbox Utilities */
.gallery-item {
    cursor: zoom-in;
}

#lightbox.active {
    opacity: 1;
}

#lightbox.active img {
    transform: scale(1);
}

/* Utilities for Logos */
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    /* Equivalent to text-2xl */
    font-weight: 700;
    /* Bold */
    color: white;
    transition: color 0.3s ease;
    white-space: nowrap;
}

#navbar.glass-nav .logo-text {
    color: var(--color-forest);
}

/* Footer specific logo text override if needed, or inline class */
footer .logo-text {
    color: #9ca3af;
    /* gray-400 to match footer text */
    font-size: 1.25rem;
}