/* Variables */
:root {
    --primary-color: #2196f3;
    --primary-dark: #1976d2;
    --secondary-color: #ffc107;
    --text-color: #333;
    --text-light: #666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --success: #28a745;
    --border-radius: 8px;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.9rem;
}

.navbar-custom {
    background-color: var(--white);
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 40px;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hotel Hero Section */
.hotel-hero {
    position: relative;
    overflow: hidden;
}

.hotel-gallery {
    margin-bottom: -5px;
}

.hotel-gallery img {
    transition: var(--transition);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hotel-gallery .main-image {
    position: relative;
    overflow: hidden;
    max-height: 500px;
}

.hotel-gallery .main-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%);
}

.hotel-gallery img:hover {
    transform: scale(1.05);
}

/* Hotel Info Section */
.hotel-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.hotel-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.hotel-meta {
    font-size: 1.1rem;
}

.hotel-category {
    background: var(--secondary-color);
    color: var(--black);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-rating i {
    color: var(--secondary-color);
}

.hotel-location {
    color: var(--text-light);
}

/* Description */
.hotel-description {
    font-size: 1.1rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--primary-dark);
    font-weight: 500;
}

/* Highlights */
.highlight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Services */
.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--background-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-item:hover {
    background: var(--white);
    box-shadow: var(--box-shadow);
    transform: translateX(5px);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Booking Sidebar */
.booking-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
}

.booking-form label {
    font-weight: 500;
    color: var(--text-color);
}

.form-control, .form-select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.booking-features {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    color: var(--text-light);
}

.feature-item i {
    color: var(--success);
}

/* Location Section */
.hotel-location {
    background: var(--background-light);
}

.location-info ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.location-info ul li:hover {
    transform: translateX(5px);
    box-shadow: var(--box-shadow);
}

.location-info i {
    color: var(--primary-color);
}

.location-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hotel-header,
.hotel-description,
.hotel-highlights,
.included-services,
.booking-card {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .booking-card {
        position: static;
        margin-top: 2rem;
    }

    .hotel-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hotel-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hotel-gallery .col-md-4 {
        display: none;
    }

    .service-item {
        margin-bottom: 1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .booking-card,
    .btn {
        display: none !important;
    }

    .hotel-gallery {
        page-break-after: avoid;
    }

    .hotel-info {
        page-break-before: always;
    }
}