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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Modern Sticky Navbar */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: linear-gradient(135deg, #0056b3, #003d80);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo img {
    width: 140px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav ul li a {
    position: relative;
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Optional Icon Styling (if you add icons to menu items) */
nav ul li a i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Hero Section with Slider */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background-color: #000;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 45%;
}

.hero-content .welcome-text {
    display: block;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero-content .hotel-name {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-slider {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
    border-radius: 30px 0 0 30px;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideAnimation 15s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 3s; }
.slide:nth-child(3) { animation-delay: 6s; }
.slide:nth-child(4) { animation-delay: 9s; }
.slide:nth-child(5) { animation-delay: 12s; }

@keyframes slideAnimation {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}

/* Modern About Section */
.about {
    display: flex;
    align-items: center;
    padding: 8rem 5%;
    background: linear-gradient(to right, #f8f9fa 50%, #ffffff 50%);
}

.about-content {
    flex: 1;
    padding-right: 5%;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: #2d2d2d;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #0056b3;
    border-radius: 2px;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Modern CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #0056b3, #003d80);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
    background: linear-gradient(135deg, #00408f, #003166);
}

.cta-btn:active {
    transform: scale(0.98);
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 150%; }
}

.cta-btn span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(3px);
}

/* Featured Rooms Section */
.rooms {
    padding: 6rem 5%;
    background: #ffffff;
}

.rooms h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2d2d2d;
}

.rooms-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

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

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

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d2d2d;
}

.room-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.2rem;
}

/* Banquet Hall Section */
.banquet {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.banquet-header h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    color: #000000;
}

.banquet-header p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.banquet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.banquet-img-card {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.banquet-img-card:hover {
    transform: scale(1.03);
}

.banquet-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Footer */
footer {
    background: #2d2d2d;
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    margin-bottom: 1rem;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0056b3;
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f9fa, #e6f0ff);
    animation: fadeIn 1s ease-in;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover, .contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 86, 179, 0.15);
}

.contact-info h2, .contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #003366;
    font-family: 'Playfair Display', serif;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease;
}

.info-item i {
    font-size: 1.5rem;
    color: #0073e6;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.info-item:hover i {
    color: #0056b3;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.info-item p {
    color: #444;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0073e6;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0073e6;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    font-size: 1rem;
    background-color: #fefefe;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0073e6;
    box-shadow: 0 0 0 4px rgba(0, 115, 230, 0.1);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: 0 0.5rem;
    background: #fff;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.6rem;
    font-size: 0.8rem;
    color: #0073e6;
    background: #fff;
}

.cta-btn {
    background: #0073e6;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.cta-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    height: 500px;
    width: 100%;
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        height: auto;
        padding: 6rem 5%;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-slider {
        position: relative;
        width: 100%;
        height: 500px;
        margin-top: 3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 3%;
    }

    .hero-content .hotel-name {
        font-size: 2.5rem;
    }

    .about {
        flex-direction: column;
        padding: 5rem 5%;
        background: #f8f9fa;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .about-image {
        width: 100%;
    }

    nav ul {
        gap: 1rem;
    }

    nav ul li a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .logo img {
        width: 120px;
    }

    .contact-section {
        padding: 4rem 2rem;
    }

    .contact-info, .contact-form {
        padding: 2rem;
    }

    .contact-info h2, .contact-form h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content .hotel-name {
        font-size: 2rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .rooms-gallery {
        grid-template-columns: 1fr;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .info-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .map-section {
        height: 300px;
    }
}