* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
 
/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) blur(4px);
    transform: scale(1.1);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.hero:hover .hero-image img {
    transform: scale(1);
    filter: brightness(0.8) blur(2px);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2)
    );
    z-index: 2;
    padding: 0 0 80px 60px;
}

.hero-text {
    max-width: 500px;
    text-align: left;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-in;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background-color: #FF5A5F;
    margin: 15px 0 25px;
    animation: fadeIn 1.2s ease-in;
}

.hero-subtitle {
    font-size: 1.8rem;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-in;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Spotlight Section */
.spotlight {
    padding: 100px 0;
    background-color: white;
}

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

.spotlight h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.spotlight-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.spotlight-image {
    margin: 40px 0;
}

.spotlight-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.amenities {
    margin: 40px 0;
    text-align: center;
}

.amenities h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.amenities ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.amenities li {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.author {
    font-weight: bold;
    color: #2c3e50;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

/* Buttons */
.cta-button, .airbnb-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: #FF5A5F;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    animation: fadeIn 2s ease-in;
}

.cta-button:hover, .airbnb-button:hover {
    background-color: #e04e52;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }

    .hero-image img {
        content: url('tent3.avif');
        filter: brightness(0.7) blur(2px);
    }

    .hero-content {
        padding: 0 0 30px 20px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }

    .hero-divider {
        width: 30px;
        height: 2px;
        margin: 8px 0 12px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .features h2,
    .spotlight h2,
    .testimonials h2,
    .cta h2 {
        font-size: 2.2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 65vh;
    }

    .hero-content {
        padding: 0 0 25px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-divider {
        width: 30px;
        margin: 8px 0 12px;
    }
}

/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-align: left;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #FF5A5F;
}

.footer-section p {
    margin-bottom: 10px;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF5A5F;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
}

.social-link {
    display: inline-block;
    padding: 8px 0;
    transition: transform 0.3s ease;
    color: #ecf0f1;
    text-decoration: none;
    text-align: left;
    width: 100%;
}

.social-link:hover {
    transform: translateX(5px);
    color: #FF5A5F;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Update responsive design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        align-items: center;
    }
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.booking-section.reverse {
    background-color: #ffffff;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.booking-image:hover {
    transform: translateY(-10px);
}

.booking-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.booking-text {
    padding: 40px;
}

.booking-text h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.booking-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.booking-text .cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: #FF5A5F;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.booking-text .cta-button:hover {
    background-color: #e04e52;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .booking-text {
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .booking-section {
        padding: 60px 0;
    }

    .booking-text h2 {
        font-size: 2.2rem;
    }

    .booking-text p {
        font-size: 1.1rem;
    }

    .booking-text .cta-button {
        width: 100%;
        text-align: center;
    }
}

.host-image {
    margin: 20px auto;
    width: 250px;
    height: 250px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 3px solid #FF5A5F;
}

.host-image:hover {
    transform: scale(1.05);
}

.host-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.email-link {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.email-link:hover {
    color: #FF5A5F;
    text-decoration: underline;
}

.address-link {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.address-link:hover {
    color: #FF5A5F;
    text-decoration: underline;
} 