/* Custom styles for Lewegri Hotel */
:root {
    --hotel-red: #dc3545;      /* Red */
    --hotel-blue: #0d6efd;     /* Blue */
    --hotel-white: #ffffff;    /* White */
    --hotel-light-gray: #f8f9fa; /* Light gray */
    --hotel-dark: #212529;     /* Dark for contrast */
}

/* Apply hotel colors to main elements */
.bg-primary {
    background-color: var(--hotel-red) !important;
}

.bg-secondary {
    background-color: var(--hotel-blue) !important;
}

.text-primary {
    color: var(--hotel-red) !important;
}

.text-secondary {
    color: var(--hotel-blue) !important;
}

/* Header styling */
header {
    background-color: var(--hotel-red);
    color: var(--hotel-white);
}

/* Navigation styling */
.navbar {
    background-color: var(--hotel-white);
}

.navbar-brand {
    color: var(--hotel-red) !important;
    font-weight: bold;
}

.nav-link {
    color: var(--hotel-dark) !important;
}

.nav-link:hover {
    color: var(--hotel-red) !important;
}

/* Footer styling */
footer {
    background-color: var(--hotel-light-gray);
    color: var(--hotel-dark);
    border-top: 1px solid var(--hotel-blue);
}

/* Button styling */
.btn-primary {
    background-color: var(--hotel-red);
    border-color: var(--hotel-red);
}

.btn-primary:hover {
    background-color: #bd2130;
    border-color: #b21f2d;
}

.btn-outline-primary {
    color: var(--hotel-red);
    border-color: var(--hotel-red);
}

.btn-outline-primary:hover {
    background-color: var(--hotel-red);
    border-color: var(--hotel-red);
}

/* Card styling */
.card {
    border: 1px solid var(--hotel-light-gray);
    box-shadow: 0 0.125rem 0.25rem rgba(220, 53, 69, 0.1);
}

.card-header {
    background-color: var(--hotel-light-gray);
    border-bottom: 1px solid var(--hotel-red);
}

/* Room card styling */
.room-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(220, 53, 69, 0.15);
}

/* Top bar styling */
.top-bar {
    background-color: var(--hotel-dark);
    color: var(--hotel-white);
}

/* Reservation form styling */
.reservation-form {
    background-color: var(--hotel-light-gray);
    border-radius: 0.375rem;
    padding: 1.5rem;
}

/* Featured rooms section */
.featured-rooms {
    background-color: var(--hotel-white);
    padding: 3rem 0;
}

/* About section */
.about-section {
    background-color: var(--hotel-light-gray);
}

/* Footer links */
.footer-link {
    color: var(--hotel-dark);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--hotel-red);
    text-decoration: underline;
}

/* WhatsApp button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button a {
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Breadcrumb styling */
.breadcrumb {
    background-color: var(--hotel-light-gray);
}

/* Form controls */
.form-control:focus {
    border-color: var(--hotel-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Alert styling */
.alert-info {
    background-color: var(--hotel-light-gray);
    border-color: var(--hotel-blue);
    color: var(--hotel-dark);
}

/* Table styling */
.table th {
    border-top: none;
    color: var(--hotel-dark);
}

/* Badge styling */
.badge.bg-primary {
    background-color: var(--hotel-blue);
}

.badge.bg-warning {
    background-color: var(--hotel-red);
}

/* Social links */
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--hotel-dark);
    color: var(--hotel-white);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--hotel-red);
    color: var(--hotel-white);
    text-decoration: none;
}

/* Carousel styling */
.carousel-item img {
    border-radius: 0.375rem;
}