/* Smooth Scrolling */
* {
    scroll-behavior: smooth;
}

/* Custom Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Navigation Link Hover Effect */
.nav-link {
    position: relative;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d97706;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Card Hover Effects */
.feature-card,
.service-card,
.room-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.room-card:hover {
    transform: translateY(-5px);
}

/* Form Input Focus */
input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

/* Button Transitions */
button,
a[class*="bg-"] {
    transition: all 0.3s ease;
}

/* Hero Section Background */
.hero-section {
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 50%, #fef3c7 100%);
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
}

