@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --dark-maroon: #19050C;
    --gold: #E7C793;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-maroon);
    color: var(--gold);
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--dark-maroon);
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background-color: var(--gold);
    color: var(--dark-maroon);
}

.card {
    background-color: rgba(25, 5, 12, 0.8);
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(231, 199, 147, 0.2);
}

.team-member {
    transition: all 0.3s ease;
}
.team-member:hover {
    transform: translateY(-5px);
}
.team-member img {
    filter: sepia(20%);
    transition: all 0.3s ease;
}
.team-member:hover img {
    filter: sepia(0%);
}

.social-icon {
    transition: all 0.3s ease;
}
.social-icon:hover {
    transform: translateY(-3px);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-maroon);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d4b683;
}

.nav-link.active {
    border-bottom: 2px solid var(--gold);
}

/* Floating Jasmine Animation */
@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, 15px) rotate(10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}
.floating { animation: float 8s ease-in-out infinite; }
.floating-delay-1 { animation: float 8s ease-in-out 2s infinite; }
.floating-delay-2 { animation: float 8s ease-in-out 4s infinite; }
.floating-delay-3 { animation: float 8s ease-in-out 6s infinite; }

/* Background flower stream */
.flower-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.jasmine {
    position: absolute;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
    will-change: transform;
}
.scroll-content {
    min-height: 100vh;
}
