@charset "utf-8";
/* CSS Document */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo .logo {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-menu a:hover {
    color: #D63384;
}

.book-now-btn {
    background: linear-gradient(135deg, #D63384, #E91E63);
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 60px 40px;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.8rem;
    color: #D63384;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #D63384, #E91E63);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
}

.hero-image {
    flex: 1;
    height: 500px;
    background: linear-gradient(45deg, #D63384, #E91E63);
    margin: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/*
.hero-image::after {
    content: "Hero Image Placeholder";
    opacity: 0.8;
}
*/

/* What to Expect Section */
.what-to-expect {
    padding: 80px 0;
    background: #fff;
}

.what-to-expect h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-weight: bold;
}

.intro-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    font-size: 1.3rem;
    color: #D63384;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

.tagline {
    text-align: center;
    margin-top: 60px;
}

.tagline h3 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 300;
    font-style: italic;
}

/* Accommodation Section */
.accommodation {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.accommodation h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-weight: bold;
}

.section-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.8;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.suite-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.suite-images .image-placeholder:first-child {
    grid-column: 1 / -1;
    height: 250px;
}

.image-placeholder {
    background: linear-gradient(45deg, #D63384, #E91E63);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    height: 150px;
    opacity: 0.8;
}

.suite-details h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.suite-details ul {
    list-style: none;
}

.suite-details li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.suite-details li:before {
    content: "✓";
    color: #D63384;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* See & Do Section */
.see-do {
    padding: 80px 0;
    background: #fff;
}

.see-do h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    color: #D63384;
    margin-bottom: 50px;
    font-style: italic;
}

.see-do-content {
    max-width: 1000px;
    margin: 0 auto;
}

.see-do-text {
    text-align: center;
    margin-bottom: 60px;
}

.see-do-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.memories {
    font-size: 1.3rem;
    color: #D63384;
    font-weight: 600;
    font-style: italic;
}

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

.activity {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.activity:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.activity h4 {
    font-size: 1.3rem;
    color: #D63384;
    margin-bottom: 15px;
    font-weight: 600;
}

.activity p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    font-weight: bold;
}

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

.faq-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Guest Review Section */
.guest-review {
    padding: 80px 0;
    background: linear-gradient(135deg, #D63384, #E91E63);
    color: white;
    text-align: center;
}

.guest-review h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
}

.review-content {

    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    font-weight: bold;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-item h4 {
    font-size: 1.3rem;
    color: #D63384;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Book Now Section */
.book-now {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.book-now h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.book-now p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.book-button {
    display: inline-block;
    background: linear-gradient(135deg, #D63384, #E91E63);
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(214, 51, 132, 0.3);
    margin-bottom: 20px;
}

.book-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 51, 132, 0.4);
}

.booking-note {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #333;
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo .logo {
    height: 100px;
    width: auto;
/*    filter: brightness(0) invert(1);*/
}

.footer-text p {
    margin: 5px 0;
    color: #ccc;
}

 .buzztech-credit {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 40px;
    padding: 10px 0;
  }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin: 20px;
        height: 300px;
    }
    
    .accommodation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .suite-images {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .activities-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo .logo {
        height: 50px;
    }
}d: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 60px 40px;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero h2 {
    font-size