* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
/*    font-size: 1.8rem;
    font-weight: 700;
    color: #2e8b57;*/
    position: relative;

}

.logo img{
    width: 120px;

}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: #2e8b57;
}


/*.nav-links a.active:after,*/
.nav-links a:hover:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #2e8b57;
    animation:line 2s infinite;

}
@keyframes line{

0%{
    width: 0%;
}

100%{
    width: 100%;
}

}

.book-btn {
    background: #2e8b57;
    color: white !important;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.book-btn:hover {
    background: #246c45;
    transform: translateY(-2px);
}

.pulse {
    animation: pulse 2s infinite;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}



@media (max-width: 768px) {
    .logo img{
        width: 80px;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 1.5rem;
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
        position: relative;
        left: 0px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

     .book-btn {
        margin-top: 1rem;
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .room-cards,
    .event-types {
        flex-direction: column;
        align-items: center;
    }

    .room-card,
    .event-card {
        width: 100%;
        max-width: 350px;
    }
}
























/* Footer Styles */
footer {
    background-color: #2e8b57;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

footer .footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

footer .social-links {
    margin: 10px 0;
}

footer .social-links a {
    margin: 0 15px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #f1c40f;
}

footer .footer-links {
    margin: 20px 0;
}

footer .footer-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

footer .footer-links ul li {
    margin: 0 15px;
}

footer .footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

footer .footer-links ul li a:hover {
    color: #f1c40f;
}

footer .copyright {
    font-size: 16px;
    color: #fff;
}

footer .copyright p {
    margin: 0;
}

/* Mobile styles */
@media (max-width: 768px) {
    footer .footer-links ul {
        flex-direction: column;
        align-items: center;
    }

    footer .footer-links ul li {
        margin: 8px 0;
    }

    footer .social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    footer .social-links a {
        margin: 8px;
    }

    footer .footer-logo {
        font-size: 24px;
    }

    footer .footer-links ul li a {
        font-size: 16px;
    }

    footer {
        padding: 30px 20px;
    }
}


