:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

/* Topbar Styles */
.topbar {
    background: var(--dark-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.topbar span {
    margin-right: 20px;
}

.topbar i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white !important;
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Slider Styles */
.slider-section {
    position: relative;
}

.carousel-item {
    height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
    bottom: 100px;
}

.carousel-caption h3 {
    font-size: 36px;
    margin-bottom: 15px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* Room Card Styles */
.room-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.room-card img {
    height: 250px;
    object-fit: cover;
}

.room-specs li {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.room-specs i {
    width: 25px;
    color: var(--primary-color);
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.price small {
    font-size: 14px;
    font-weight: normal;
    color: var(--secondary-color);
}

/* Attraction Card Styles */
.attraction-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.attraction-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.attraction-info {
    background: white;
}

/* Testimonial Card Styles */
.testimonial-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial-card .card-footer {
    border-top: 1px solid #eee;
}

/* Contact Form Styles */
.contact-info {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info i {
    width: 30px;
    color: var(--primary-color);
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Map Container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Footer Styles */
.footer-section {
    background: var(--dark-color);
    color: white;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section hr {
    border-color: rgba(255,255,255,0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        padding: 15px;
        bottom: 50px;
    }
    
    .carousel-caption h3 {
        font-size: 24px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 1s ease-out;
}

/* Book Now Button Pulse Effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,123,255,0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0,123,255,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,123,255,0);
    }
}

.btn-primary {
    animation: pulse 2s infinite;
}