/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: #333;
    background: #faf7f2;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #a0abaa;
    border-radius: 5px;
}


/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 50px;
}

.logo {
    transition: transform 0.3s ease;
}

/* WhatsApp Floating Chat Icon */
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1200;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    font-size: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    background: #128c7e;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 1199;
    background: #f39c12;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

#scrollToTopBtn.scroll-top-float.show {
    opacity: 1;
    pointer-events: auto;
}


.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 60px;
    width: auto;
    padding-left: 70px;
    /* filter: brightness(0) invert(1); */
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    filter: none;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

header.scrolled .nav-menu a {
    color: #333;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f39c12;
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s ease;
}

header.scrolled .hamburger span {
    background: #333;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 200px 120px;
    color: #fff;
    animation: fadeInLeft 1s ease-out;
}

.typewriter-title {
    font-size: 56px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.typewriter-title .line1 {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typingLine1 2s steps(16) forwards;
}

.typewriter-title .line2 {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typingLine2 2s steps(11) forwards 2s;
}

/* typing animation for line 1 */
@keyframes typingLine1 {
    from {
        width: 0;
    }
    to {
        width: 16ch;
    }
}

/* typing animation for line 2 */
@keyframes typingLine2 {
    from {
        width: 0;
    }
    to {
        width: 11ch;
    }
}

/* cursor blinking */
@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.fade-in-text {
    opacity: 0;
    animation: fadeInText 2s ease-in-out 3s forwards;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-btn, .book-now-btn {
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-btn {
    background: #d4a93c;
    color: #000;
}

.contact-btn:hover {
    background: #f0c14b;
    transform: translateY(-3px);
}

.book-now-btn {
    background: #fff;
    color: #d4a93c;
}

.book-now-btn:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

/* Rooms Section */
.rooms-section {
    background: #f4f4f4;
    padding: 80px 60px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    color: #8c641e;
    margin-bottom: 30px;
    font-weight: 700;
}

.room-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.room-tabs button {
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    background: #ddd;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.room-tabs button.active,
.room-tabs button:hover {
    background: linear-gradient(45deg, #f5b100, #d49a00);
    color: #000;
}

.rooms-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.room-card {
    width: 350px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
    text-align: left;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.room-image {
    position: relative;
}

.room-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.room-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #222;
    color: #fff;
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
}

.room-price-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 8px;
    border-radius: 30px;
    font-size: 12px;
    color: #333;
}

.room-price-tag .price-row {
    margin: 3px 0;
}

.room-price-tag strong {
    color: #f39c12;
    font-weight: 700;
}

.room-price-right {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 8px;
    border-radius: 30px;
    font-size: 12px;
    color: #333;
}

.room-price-right .price-row {
    margin: 3px 0;
}

.room-price-right strong {
    color: #f39c12;
    font-weight: 700;
}

.room-details {
    padding: 25px;
}

.room-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.room-details p {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
}

.room-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

.amenities ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    list-style: none;
    font-size: 13px;
    margin-bottom: 20px;
    color: #444;
}

.book-room-btn {
    width: 100%;
    padding: 14px;
    border: none;
    background: linear-gradient(45deg,#f39c12,#e67e22);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-room-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 20px rgba(230,126,34,0.4);
}

/* Banquet Section */
.banquet-section {
    background: #fff;
    padding: 80px 60px;
    text-align: center;
}

.banquet-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.banquet-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.banquet-card {
    width: 350px;
    background: #f9f9f9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
    border: 2px solid #e0e0e0;
}

.banquet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.banquet-image {
    position: relative;
}

.banquet-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.banquet-price-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    color: #333;
}

.banquet-price-tag .price-row {
    margin: 3px 0;
}

.banquet-price-tag strong {
    color: #f39c12;
    font-weight: 700;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f39c12;
    color: #fff;
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
}

.banquet-details {
    padding: 25px;
    text-align: left;
}

.banquet-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.banquet-details p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.guest-info {
    font-size: 14px;
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Policy Banner */
.policy-banner {
    background: #f5f5f5;
    padding: 60px 20px;
}

.policy-banner-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: #f5e6d3;
    padding: 50px 60px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.policy-banner-content h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 25px;
    font-weight: 700;
}

#policyText {
    font-size: 14px;
    text-align: left;
    color: #333;
    line-height: 1.8;
    margin-bottom: 35px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.view-details-btn {
    background: #2c3e50;
    color: #fff;
    padding: 16px 50px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.view-details-btn:hover {
    background: #34495e;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand {
    text-align: center;
}

.footer-brand img {
    height: 90px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-brand h3 {
    font-size: 18px;
    color: #f39c12;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 2px solid #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f39c12;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #f39c12;
    color: #fff;
    transform: translateY(-3px);
}

.footer-links {
    text-align: left;
}

.footer-links h4 {
    font-size: 18px;
    color: #f39c12;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}



.footer-links ul li a {
    display: inline-block;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fdfbf8;
    transform: translateX(8px);  /* slight slide effect */
}
.footer-contact {
    text-align: center;
}

.footer-contact h4 {
    font-size: 18px;
    color: #f39c12;
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

.footer-contact a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: #f39c12;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #777;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 0;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.5s;
    overflow: hidden;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #777;
    z-index: 10;
}

.step {
    padding: 25px;
    display: none;
}

.step.active {
    display: block;
}

.step h2 {
    margin-bottom: 20px;
    color: #333;
}

.modal-price {
    background: #fef5e7;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #f39c12;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}

.next-btn, .back-btn, .submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.next-btn {
    background: #f39c12;
    color: #fff;
    margin-top: 10px;
}

.next-btn:hover {
    background: #e67e22;
}

.back-btn {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    margin-right: 10px;
}

.back-btn:hover {
    background: #f5f5f5;
}

.submit-btn {
    background: #27ae60;
    color: #fff;
}

.submit-btn:hover {
    background: #2ecc71;
}

.bookings-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.bookings-summary p {
    margin-bottom: 8px;
    color: #555;
}

.payment-options {
    margin: 20px 0;
}

.payment-options label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: 500;
}

.payment-options > div {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.payment-options > div:hover {
    border-color: #f39c12;
}

.payment-options input[type="radio"] {
    margin-right: 10px;
}

.payment-options label span {
    font-size: 12px;
    color: #666;
}

.modal-buttons {
    display: flex;
    gap: 10px;
}

.modal-buttons button {
    flex: 1;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 40px;
}

.success-message h3 {
    margin-bottom: 15px;
}

.success-message p {
    color: #666;
    margin-bottom: 20px;
}

.close-success {
    padding: 12px 30px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.close-success:hover {
    background: #f5f5f5;
}

/* Enhanced Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pop {
    0% { transform: scale(0.9); opacity: 0; }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 0.8; }
    70% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes slideInFromBottom {
    0% { transform: translateY(100px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromTop {
    0% { transform: translateY(-100px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(243, 156, 18, 0.5); }
    50% { box-shadow: 0 0 20px rgba(243, 156, 18, 0.8), 0 0 30px rgba(243, 156, 18, 0.6); }
    100% { box-shadow: 0 0 5px rgba(243, 156, 18, 0.5); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotateIn {
    0% { transform: rotate(-180deg) scale(0); opacity: 0; }
    100% { transform: rotate(0deg) scale(1); opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Hover Effects */
.room-card, .banquet-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover, .banquet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.banquet-card:hover .banquet-image img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.room-image img {
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .rooms-section, .banquet-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .room-card, .banquet-card {
        width: 100%;
        max-width: 400px;
    }

    .room-info {
        flex-direction: column;
        gap: 5px;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-brand, .footer-links, .footer-contact {
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: #333;
    }
}
.fa-phone-alt {
    transform: rotate(100deg);
    display: inline-block; /* Important for rotation */
}