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

:root {
    --primary-color: #5C3D2E;
    --primary-rgb: 92, 61, 46;
    --secondary-color: #A6754F;
    --secondary-rgb: 166, 117, 79;
    --accent-color: #C7A17A;
    --accent-rgb: 199, 161, 122;
    --light-bg: #FDFBF7;
    --card-bg: #ffffff;
    --text-color: #2D2420;
    --text-muted: #6B5B52;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(45, 36, 32, 0.04);
    --shadow-md: 0 8px 24px rgba(45, 36, 32, 0.08);
    --shadow-lg: 0 16px 40px rgba(45, 36, 32, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.section-padding { padding: 100px 0; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

header.scrolled .logo-img {
    height: 40px;
}

.fusion-logo-img-large {
    height: 180px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

/* Header states: transparent when at top (not scrolled), styled when scrolled */
header:not(.scrolled) .logo-text {
    color: var(--white);
}

header:not(.scrolled) .logo-subtext {
    color: var(--accent-color);
}

header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

header:not(.scrolled) .nav-link::after {
    background-color: var(--accent-color);
}

header:not(.scrolled) .nav-link:hover,
header:not(.scrolled) .nav-link.active {
    color: var(--accent-color);
}

header:not(.scrolled) .hamburger .bar {
    background-color: var(--white);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
}

.logo-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--secondary-color);
    margin-top: -3px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(92, 61, 46, 0.2);
}

.btn-nav:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(166, 117, 79, 0.3);
}

.btn-nav::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(92, 61, 46, 0.25);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(166, 117, 79, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Experience Section */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
}

.experience-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(199, 161, 122, 0.08);
    display: flex;
    flex-direction: column;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.experience-img-container {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.experience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.experience-card:hover .experience-img {
    transform: scale(1.05);
}

.experience-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.experience-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(166, 117, 79, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.experience-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.experience-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Section */
footer {
    background-color: #1E1714;
    color: #DFD7D3;
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
}

footer h3 {
    color: var(--accent-color);
    margin-bottom: 24px;
    font-size: 1.4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-desc {
    line-height: 1.7;
    color: #B5A8A2;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #B5A8A2;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 6px;
}

.footer-contact p {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #B5A8A2;
}

.footer-contact p strong {
    color: var(--white);
}

.footer-contact a {
    color: #B5A8A2;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #2D2421;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
    border: 1px solid #3E322D;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-schedule p {
    margin-bottom: 12px;
    color: #B5A8A2;
}

.footer-schedule p strong {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #2D2421;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #8C7D77;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

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

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

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.fade-in {
    animation: fadeIn 1.2s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .section-padding {
        padding: 80px 0;
    }
    .experience-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: var(--light-bg);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.4s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 16px 0;
        width: 100%;
    }

    .nav-link {
        font-size: 1.15rem;
        display: inline-block;
    }
    
    .btn-nav {
        margin-top: 10px;
        display: inline-block;
    }

    header.scrolled {
        top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Always keep mobile nav links dark on light mobile dropdown menu background */
    header .nav-menu .nav-link {
        color: var(--text-color) !important;
    }
    header .nav-menu .nav-link::after {
        background-color: var(--secondary-color) !important;
    }
    header .nav-menu .nav-link:hover,
    header .nav-menu .nav-link.active {
        color: var(--secondary-color) !important;
    }
}

/* Floating Reservation Button */
.floating-booking-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(92, 61, 46, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-booking-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(166, 117, 79, 0.4);
    color: var(--white);
}

.floating-booking-btn .btn-icon {
    transition: var(--transition);
}

.floating-booking-btn:hover .btn-icon {
    transform: rotate(-10deg) scale(1.1);
}

/* Adjust for mobile screens: show only icon to keep it clean */
@media (max-width: 576px) {
    .floating-booking-btn {
        bottom: 20px;
        right: 20px;
        padding: 16px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }
    .floating-booking-btn .btn-text {
        display: none;
    }
}

