/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: #000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #FFD700;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FFD700;
}

.btn-book {
    background-color: #FFD700;
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.btn-book:hover {
    background-color: #FFC700;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 60px;
}

.hero-content {
    z-index: 2;
}

.logo-overlay {
    margin-bottom: 30px;
}

.logo-overlay img {
    max-width: 200px;
    height: auto;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 30px;
    color: #fff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* CTA Buttons */
.cta-buttons {
    background-color: #f8f9fa;
    padding: 30px 0;
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cta-call {
    background-color: #007bff;
    color: #fff;
}

.cta-email {
    background-color: #FFD700;
    color: #000;
}

.cta-book {
    background-color: #FFD700;
    color: #000;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background-color: #fff;
}

.main-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
}

.main-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.info-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid #FFD700;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box li {
    padding: 10px 0;
    font-size: 18px;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #fff;
}

.features-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Accommodation Section */
.accommodation-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.accommodation-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #000;
}

.accommodation-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Testimonial Section */
.testimonial-section {
    padding: 60px 0;
    background-color: #FFD700;
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
}

.stars {
    color: #000;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-box blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #000;
}

.testimonial-box cite {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

/* Final CTA */
.final-cta {
    padding: 60px 0;
    background-color: #000;
    text-align: center;
    color: #fff;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #FFD700;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
}

/* Related Links */
.related-links {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.related-links h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.related-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.related-links a {
    color: #007bff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.related-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #000;
        padding: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .cta-row {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}