/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #74b9ff 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 185, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(52, 73, 94, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #3498db;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.logo span {
    display: block;
    font-size: 0.7rem;
    color: #ecf0f1;
    font-weight: 300;
    margin-top: -3px;
}

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

.nav-menu a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.4), transparent);
    transition: left 0.5s;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #3498db;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background-image: url('images/lp/lpb.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 70%, rgba(74, 185, 255, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(116, 185, 255, 0.3) 0%, transparent 60%),
        linear-gradient(180deg, transparent 0%, rgba(30, 60, 114, 0.1) 50%, rgba(52, 152, 219, 0.2) 100%);
    animation: oceanWave 8s ease-in-out infinite;
}

@keyframes oceanWave {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) scale(1.02);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hotel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(116, 185, 255, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(116, 185, 255, 0.15);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.star-rating {
    display: flex;
    gap: 0.2rem;
}

.silver-star {
       color: #fbbf24;

    font-size: 1rem;
    filter: drop-shadow(0 0 3px rgba(116, 185, 255, 0.3));
}

.hotel-class {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(116, 185, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.2s both;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.4s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.feature-item svg {
    color: #3498db;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-cta {
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn-booking-redirect {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-booking-redirect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-booking-redirect:hover::before {
    left: 100%;
}

.btn-booking-redirect:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: 
        linear-gradient(135deg, rgba(236, 240, 241, 0.95) 0%, rgba(189, 195, 199, 0.9) 100%),
        linear-gradient(45deg, rgba(116, 185, 255, 0.1) 0%, rgba(74, 185, 255, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(116, 185, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(74, 185, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.about-images {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.room-image {
    position: relative;
    width: 100%;
    max-width: 250px;
    flex: 1;
    min-width: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
}

.room-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
}

.room-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-image:hover img {
    transform: scale(1.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(52, 73, 94, 0.9), transparent);
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

/* Rooms Section */
.rooms {
    padding: 5rem 0;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
}

.rooms h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.rooms h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 2px;
}

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

.room-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

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

.room-card:hover img {
    transform: scale(1.05);
}

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.room-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.room-info ul {
    list-style: none;
}

.room-info li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.room-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

/* Amenities Section */
.amenities {
    padding: 5rem 0;
    background: 
        linear-gradient(135deg, rgba(240, 248, 255, 0.95) 0%, rgba(173, 216, 230, 0.9) 100%),
        linear-gradient(45deg, rgba(135, 206, 235, 0.1) 0%, rgba(176, 224, 230, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 85%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(176, 224, 230, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.amenities .container {
    position: relative;
    z-index: 2;
}

.amenities h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.amenities h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 2px;
}

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

.amenity-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
    border-color: #3498db;
}

.amenity-item svg {
    color: #3498db;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.amenity-item:hover svg {
    transform: scale(1.1);
}

.amenity-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.amenity-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.contact-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.nearby-attractions h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.nearby-attractions ul {
    list-style: none;
}

.nearby-attractions li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.9;
}

.nearby-attractions li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.map-container {
    margin-top: 2rem;
}

.map-container h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.map-container iframe {
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.map-container iframe:hover {
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(30, 60, 114, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s ease forwards;
    }

    .nav-menu.active li {
        animation-delay: calc(0.1s * var(--i, 0));
    }

    .nav {
        padding: 0.3rem 0;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo span {
        font-size: 0.6rem;
    }

    .nav-menu a {
        font-size: 1.5rem;
        padding: 1rem;
    }

    .hero {
        background-attachment: scroll;
        background-size: cover;
        min-height: 80vh;
    }

    .hero-content {
        padding: 1.5rem;
    }

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

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-images {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 480px) {
    .header {
        padding: 0.3rem 1rem;
    }

    .nav {
        padding: 0.2rem 0;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .logo span {
        font-size: 0.5rem;
        margin-top: -2px;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: 70vh;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        padding: 1rem;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    .about-images {
        overflow-x: auto;
        flex-direction: row;
        padding: 1rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .room-image {
        min-width: 200px;
        scroll-snap-align: center;
        max-width: 100%;
        min-width: auto;
    }

    .room-image img {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
    }

    .room-image:hover img {
        transform: none;
    }

    .image-caption {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu a {
        font-size: 1.3rem;
    }
}