/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px; /* Total height */
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 2.5px 1rem; 
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 65px; 
}

.nav-links a:hover {
    color: #48bb78;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: white;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        gap: 0;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        line-height: normal;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -5px);
    }
}

/* Hero Section */
.hero {
    padding-top: 120px; /* Account for fixed navbar */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-logo {
    width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

/* Feature Sections */
.feature {
    padding: 4rem 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-image {
    flex: 1;
}

.feature-text {
    flex: 1;
}

.feature h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.placeholder-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
    background-color: #f7fafc;
    text-align: center;
    padding: 4rem 0;
}

.trust-elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #2d3748;
}

.trust-label {
    font-size: 0.9rem;
    color: #718096;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #48bb78;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #38a169;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.footer h3 {
    color: #48bb78;
    margin-bottom: 1rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #48bb78;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: #48bb78;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.designer-credit {
    font-size: 0.9rem;
}

.designer-credit a {
    color: #48bb78;
    text-decoration: none;
    transition: color 0.3s ease;
}

.designer-credit a:hover {
    color: #38a169;
    text-decoration: underline;
}

/* Responsive Footer */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .feature-content {
        flex-direction: row;
        align-items: center;
    }

    .feature-right .feature-content {
        flex-direction: row-reverse;
    }

    .feature-image,
    .feature-text {
        flex: 0 0 48%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .feature, .cta {
    animation: fadeIn 1s ease-out;
}

/* Sub Hero Sections */
.sub-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0 4rem;
}

/* Attractions */
.attractions {
    padding: 4rem 0;
}

.attraction-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.attraction-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.attraction-content {
    padding: 2rem;
}

.attraction-content h2 {
    margin-bottom: 1rem;
}

/* Activities */
.activities {
    background: #f7fafc;
    padding: 4rem 0;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.activity-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.activity-item i {
    font-size: 2.5rem;
    color: #48bb78;
    margin-bottom: 1rem;
}

/* Rooms */
.rooms {
    padding: 4rem 0;
}

.room-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.room-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.room-content {
    padding: 2rem;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: #48bb78;
}

.room-amenities {
    margin: 2rem 0;
}

.room-amenities ul {
    list-style: none;
    margin-top: 1rem;
}

.room-amenities li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.room-amenities li:before {
    content: "✓";
    color: #48bb78;
    position: absolute;
    left: 0;
}

/* Contact */
.contact-info {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 2.5rem;
    color: #48bb78;
    margin-bottom: 1rem;
}

.contact-link {
    display: block;
    color: #48bb78;
    text-decoration: none;
    margin-top: 0.5rem;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.location {
    background: #f7fafc;
    padding: 4rem 0;
}

.address-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 2rem auto 0;
}

.address-card h3 {
    color: #48bb78;
    margin-bottom: 1rem;
}

.address-card p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .attraction-card {
        display: flex;
        align-items: center;
    }

    .attraction-card img {
        width: 50%;
        height: 400px;
    }

    .attraction-content {
        width: 50%;
    }

    .room-card {
        display: flex;
        align-items: stretch;
    }

    .room-card img {
        width: 50%;
        height: auto;
    }

    .room-content {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* Hotel Overview */
.hotel-overview {
    padding: 6rem 0;
    background-color: #fff;
}

.overview-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-text {
    flex: 1;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.overview-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.overview-image {
    flex: 1;
}

.hotel-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #48bb78;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.text-link:hover {
    gap: 0.8rem;
    color: #38a169;
}

@media (min-width: 768px) {
    .overview-content {
        flex-direction: row;
        align-items: center;
    }

    .overview-text {
        padding-right: 3rem;
    }
}

/* Map Section */
.map-section {
    padding: 4rem 0;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Transport Section */
.transport-section {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.transport-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.transport-card i {
    font-size: 2.5rem;
    color: #48bb78;
    margin-bottom: 1rem;
}

.transport-card h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

/* Weather Section */
.weather-section {
    padding: 4rem 0;
}

.weather-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.season-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.season-card h3 {
    color: #48bb78;
    margin-bottom: 1rem;
}

.weather-tips {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.weather-tips h3 {
    color: #48bb78;
    margin-bottom: 1rem;
}

.weather-tips ul {
    list-style: none;
}

.weather-tips li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.weather-tips li:before {
    content: "•";
    color: #48bb78;
    position: absolute;
    left: 0;
    font-weight: bold;
} 