/* style.css */




/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(120deg, #f5f5f5, #eaeaea);
    color: #333;
    line-height: 1.6;
    font-size: 18px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0.5rem 0;
}

/* Header Styles */
header {
    background: #0a0a23;
    color: white;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: slideDown 1s ease forwards;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.3rem 0;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-image {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.logo h1 {
    font-size: 1.6rem;
    margin: 0;
}

.logo h1 a {
    color: white;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
}

nav a:hover {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

/* Hero Section */
#hero {
    background-image: url('images/Homepage.jpeg');
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    height: 90vh;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    text-align: center;*/
/*    color: #fff;*/
/*    animation: fadeIn 2s ease-in-out forwards;*/

}

/*#hero::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: rgba(0, 0, 0, 0.4);*/
/*    z-index: 1;*/
/*}*/

/*.hero-content {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    max-width: 800px;*/
/*    padding: 2rem;*/
/*}*/

/*.hero-content h2 {*/
/*    font-size: 3.5rem;*/
/*    margin-bottom: 1rem;*/
/*    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);*/
/*}*/

/*.hero-content p {*/
/*    font-size: 1.4rem;*/
/*    margin-bottom: 2rem;*/
/*    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);*/
/*}*/

/*@keyframes fadeIn {*/
/*    from { opacity: 0; }*/
/*    to { opacity: 1; }*/
/*}*/

/* Button Styles */
.btn {
    padding: 1rem 2.5rem;
    background: #ffc107;
    color: #000;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    display: inline-block;
}

.btn:hover {
    background: #e0a800;
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 2px solid #ffc107;
    color: #ffc107;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: bold;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #ffc107;
    color: #000;
    transform: scale(1.05);
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
    animation: fadeInUp 1.5s ease-in-out;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #0a0a23;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    text-align: justify;
    line-height: 1.7;
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Room and Gallery Grids */
.room-grid, .gallery-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card, .gallery-highlight-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.room-card:hover, .gallery-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.room-card h3, .gallery-highlight-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0a0a23;
}

.room-card p, .gallery-highlight-card p {
    font-size: 1.1rem;
    color: #666;
}

/* Room and Gallery Images */
.room-image, .highlight-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* Gallery Highlight Cards */
.gallery-highlight-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-highlight-card-info {
    padding: 1rem 0;
}

.gallery-more-link {
    margin-top: 3rem;
    text-align: center;
}

.gallery-more-link p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #666;
}

/* View More Rooms Link */
.view-more-rooms {
    text-align: center;
    margin-top: 2rem;
}

.view-more-rooms a {
    font-size: 1.2rem;
    color: #0a0a23;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.view-more-rooms a:hover {
    color: #ffc107;
}

/* Contact Section */
#contact {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    padding: 3rem;
}

#contact p {
    text-align: center;
}

#contact a {
    color: #0a0a23;
    text-decoration: none;
}

#contact a:hover {
    color: #ffc107;
}

/* Footer */
footer {
    background: #0a0a23;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

footer p {
    font-size: 1.1rem;
}

/* Floating Buttons - Completely Clean Design */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.fab {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
    /* Removed all background, padding, border-radius properties */
}

.fab img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: block; /* Ensures no extra spacing */
}

.fab:hover {
    transform: scale(1.15);
}

.fab:hover img {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Room Details List Styles (for gallery-rooms.html) */
.room-details-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.room-detail-item {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.room-detail-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.room-detail-item:nth-child(even) .room-detail-image {
    order: 2;
}

.room-detail-item:nth-child(even) .room-detail-content {
    order: 1;
}

.room-detail-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.room-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0a0a23;
}

.room-detail-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.back-to-home {
    margin: 3rem auto;
    text-align: center;
}

/* Mobile responsive updates */
@media (max-width: 768px) {
    .fab img {
        width: 55px;
        height: 55px;
    }
    
    .room-detail-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .room-detail-item:nth-child(even) .room-detail-image {
        order: 1;
    }
    
    .room-detail-item:nth-child(even) .room-detail-content {
        order: 2;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .content-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.5rem 0;
    }
    
    nav ul {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }

    .room-grid, .gallery-highlight-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    #contact {
        margin: 1rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .container {
        width: 95%;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .room-card, .gallery-highlight-card {
        padding: 1rem;
    }
    
    .btn, .btn-secondary {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    #contact {
        padding: 1.5rem;
    }
    
    .fab img {
        width: 50px;
        height: 50px;
    }
}

/* Hero Background Slideshow */
/*.hero-slideshow {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: 0;*/
/*    overflow: hidden;*/
/*}*/

/*.hero-slide {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    opacity: 0;*/
/*    animation: fadeSlide 15s infinite;*/
/*}*/

/*.hero-slide:nth-child(1) {*/
/*    animation-delay: 0s;*/
/*}*/
/*.hero-slide:nth-child(2) {*/
/*    animation-delay: 5s;*/
/*}*/
/*.hero-slide:nth-child(3) {*/
/*    animation-delay: 10s;*/
/*}*/

/*@keyframes fadeSlide {*/
/*    0% { opacity: 0; }*/
/*    10% { opacity: 1; }*/
/*    30% { opacity: 1; }*/
/*    40% { opacity: 0; }*/
/*    100% { opacity: 0; }*/
/*}*/

/* Adjust hero content layering */
/*#hero {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    height: 90vh;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    text-align: center;*/
/*    color: #fff;*/
/*}*/

/*.hero-content {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/
/* =================================== */
/* ADD THIS CSS TO YOUR STYLESHEET    */
/* =================================== */

/* ---------- "Follow Us" Section Styles ---------- */

.follow-us-section {
    background-color: #0a0a23; /* A clean white background */
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05); /* Soft shadow on top */
}

.follow-us-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.follow-us-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #fffbfb;
}

.social-media-links .social-link {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px; /* Vertically centers the icon */
    background-color: #f5f5f5;
    color: #0a0a23; /* Dark icon color */
    border-radius: 50%;
    margin: 0 1rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-media-links .social-link:hover {
    background-color: #010144; /* Dark background on hover */
    color: #ffc107; /* Gold icon color on hover */
    transform: translateY(-5px); /* Nice little lift effect */
}


/* ---------- Footer Social Icon Styles ---------- */

footer .container {
    /* Ensure footer content is stacked */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social {
    margin-bottom: 1rem; /* Space between icons and copyright text */
}

.footer-social a {
    color: white;
    margin: 0 1rem;
    font-size: 1.3rem; /* Slightly smaller icons for the footer */
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ffc107; /* Gold hover effect */
}