/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Top Bar Styles */
.top-bar {
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .social-links a {
    transition: color 0.3s ease;
}

.top-bar .social-links a:hover {
    color: #ffd700 !important;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.5rem;
    color: #fff;
}

.navbar-brand img {
    transition: transform 0.3s ease;
    border-radius: 50%;
    padding: 2px;
    height: 35px;
    width: 35px;
    object-fit: cover;
}

.navbar-brand span {
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.navbar-brand:hover span {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                 0 0 20px rgba(255, 255, 255, 0.3),
                 0 0 30px rgba(255, 255, 255, 0.1);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff !important;
    text-shadow: none;
}

.navbar .btn-primary {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #1a1a1a;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Sticky Navbar Animation */
.navbar.sticky-top {
    background-color: rgba(26, 26, 26, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #1a1a1a;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .navbar .btn-primary {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Header Styles */
header {
    background-color: #1a1a1a;
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
}

/* Navigation */
nav {
    background-color: #1a1a1a;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: transparent;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid #ffd700;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffd700;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 10%;
    background-color: white;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Rooms Section */
.rooms-section {
    padding: 4rem 10%;
    background-color: #f8f9fa;
}

.rooms-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.room-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
}

.room-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
}

.room-info {
    padding: 2rem;
}

.room-features {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.book-now-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background-color: #ffd700;
    color: #1a1a1a;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 10%;
    background-color: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.rating {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.guest-name {
    margin-top: 1rem;
    font-weight: 600;
    color: #666;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .features-section {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .features-section {
        grid-template-columns: 1fr;
    }
    
    nav a {
        display: block;
        margin: 0.5rem 0;
    }
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
}

/* Navigation Styles */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #ffffff;
    text-shadow: none;
}

/* Brand name effect */
.navbar-dark .navbar-brand span {
    transition: all 0.3s ease;
}

.navbar-dark .navbar-brand:hover span {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Keep buttons clean without glow */
.navbar .btn {
    transition: all 0.3s ease;
    border-width: 2px;
}

.navbar .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: none;
    text-shadow: none;
}

.navbar .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.navbar .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    box-shadow: none;
    text-shadow: none;
}

/* Dropdown styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Footer Styles */
footer {
    background-color: #212529;
}

footer .social-links a {
    transition: all 0.3s ease;
    opacity: 0.8;
}

footer .social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

footer .quick-links a {
    transition: all 0.3s ease;
    opacity: 0.8;
}

footer .quick-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Table Styles */
.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Badge Styles */
.badge {
    padding: 0.5em 0.8em;
}

/* Form Controls */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-color: #86b7fe;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
