* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color, #ff6b35) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color, #ff6b35) !important;
}

.social-links a {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color, #ff6b35);
}

.book-btn {
    background: linear-gradient(135deg, var(--primary-color, #ff6b35), var(--secondary-color, #f39c12));
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.book-btn:hover {
    transform: translateY(-2px);
    color: white;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-btn {
    background: linear-gradient(135deg, var(--primary-color, #ff6b35), var(--secondary-color, #f39c12));
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.hero-btn:hover {
    transform: translateY(-3px);
    color: white;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary-color, #ff6b35);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
}

/* Offers Section */
.offers-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.offer-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.offer-card-body {
    padding: 25px;
}

.offer-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.offer-card p {
    color: #666;
    margin-bottom: 20px;
}

.price-tag {
    background: linear-gradient(135deg, var(--primary-color, #ff6b35), var(--secondary-color, #f39c12));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

/* Rooms Section */
.rooms-section {
    padding: 100px 0;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-card-body {
    padding: 25px;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.room-features li {
    color: #666;
    margin-bottom: 8px;
}

.room-features i {
    color: var(--primary-color, #ff6b35);
    margin-right: 10px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.contact-info h4 {
    color: #333;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color, #ff6b35);
    margin-right: 10px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color, #ff6b35);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color, #ff6b35), var(--secondary-color, #f39c12));
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: var(--primary-color, #ff6b35);
    margin-bottom: 20px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color, #ff6b35);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #ccc;
}

/* Popup Form Styles */
.mfp-bg {
    background: rgba(0, 0, 0, 0.8);
}

.popup-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.popup-form h3 {
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

/* Gallery Section */
.gallery-section .gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-section .gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-section .gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-section .gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-section .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Video Section */
.video-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

/* Team Section */
.team-card {
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    margin: 0 auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color, #ff6b35);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f39c12;
    --text-color: #333333;
    --background-color: #ffffff;
    --button-radius: 25px;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 10px;
}

/* Offers Section */
.offers-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.offer-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.offer-card-body {
    padding: 25px;
}

.offer-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.offer-card p {
    color: #666;
    margin-bottom: 20px;
}

.price-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

/* Rooms Section */
.rooms-section {
    padding: 100px 0;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-card-body {
    padding: 25px;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.room-features li {
    color: #666;
    margin-bottom: 8px;
}

.room-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.contact-info h4 {
    color: var(--text-color);
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

/* Popup Form Styles */
.popup-form h3 {
    color: var(--text-color);
    margin-bottom: 25px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .btn-primary, .hero-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: var(--button-radius);
    }
    
    .offer-card, .room-card {
        box-shadow: var(--box-shadow);
    }
}

/* Simple Header Styles */
.navbar {
    padding: 15px 0;
    background: #fff !important;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    padding: 8px 12px !important;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #0d6efd !important;
}

.social-links a {
    transition: all 0.2s ease;
}

.social-links a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 15px;
    }
    
    .social-links {
        margin: 15px 0;
        justify-content: center;
    }
}