
:root {
    --background-light: #F3E9DC;
    --background-dark: #D6CFC2;
    --text-light: #3A2E1F;
    --text-dark: #1E1810;
    --primary-light: #7A5F3D;
    --primary-dark: #5C4425;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
    
    body {
        background-color: var(--background-light);
        color: var(--text-dark);
        line-height: 1.6;
    }
    
    
    .hero {
        height: 100dvh;
        background: url('/api/placeholder/1600/900') center/cover no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: var(--background-light);
        position: relative;
        
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }
    
    .hero-content {
        z-index: 1;
        max-width: 800px;
        padding: 0 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        display: inline-block;
        background-color: var(--primary-light);
        color: var(--background-light);
        padding: 0.8rem 2rem;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s ease;
    }
    
    .btn:hover {
        background-color: var(--primary-dark);
        transform: translateY(-3px);
    }
    
    .section {
        padding: 5rem 10%;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
        color: var(--text-dark);
        position: relative;
        padding-bottom: 1rem;
    }
    
    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background-color: var(--primary-light);
    }
    
    .highlights {
        background-color: var(--background-dark);
    }
    
    .highlights-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .highlight-card {
        background-color: var(--background-light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease;
    }
    
    .highlight-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    
    .highlight-img {
        height: 200px;
        overflow: hidden;
    }
    
    .highlight-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s ease;
    }
    
    .highlight-card:hover .highlight-img img {
        transform: scale(1.1);
    }
    
    .highlight-content {
        padding: 1.5rem;
    }
    
    .highlight-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }
    
    .highlight-content p {
        color: var(--text-light);
        margin-bottom: 1rem;
    }
    
    .attractions {
        background-color: var(--background-light);
    }
    
    .attractions-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .attraction-card {
        position: relative;
        height: 350px;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .attraction-img {
        width: 100%;
        height: 100%;
    }
    
    .attraction-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .attraction-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 2rem 1.5rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        color: var(--background-light);
        transform: translateY(70%);
        transition: 0.5s ease;
    }
    
    .attraction-card:hover .attraction-overlay {
        transform: translateY(0);
    }
    
    .attraction-overlay h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--primary-light);
    }
    
    .attraction-overlay p {
        margin-bottom: 1rem;
        opacity: 0;
        transition: 0.5s 0.2s ease;
        color: var(--background-light);
    }
    
    .attraction-card:hover .attraction-overlay p {
        opacity: 1;
    }
    
    .map-section {
        background-color: var(--background-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        padding-bottom: 6rem;
    }
    
    .map-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        opacity: 0.05;
        pointer-events: none;
    }
    
    .map-container {
        width: 100%;
        height: 500px;
        margin-top: 2rem;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border: 3px solid var(--primary-light);
    }
    
    .map-section p {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 1rem;
        font-size: 1.1rem;
    }
    
    /* Responsive adjustments for the map */
    @media (max-width: 768px) {
        .map-container {
            height: 400px;
        }
    }
    
    .map-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .testimonials {
        background-color: var(--background-light);
    }
    
    .testimonials-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .testimonial-card {
        background-color: var(--background-dark);
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-text {
        font-style: italic;
        margin-bottom: 1.5rem;
        color: var(--text-light);
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .author-img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 1rem;
    }
    
    .author-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
        color: var(--text-dark);
    }
    
    .author-info p {
        font-size: 0.9rem;
        color: var(--text-light);
    }
    
    .stars {
        color: var(--primary-light);
        margin-top: 0.5rem;
    }
    
    .cta {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1600/900') center/cover no-repeat;
        color: var(--background-light);
        text-align: center;
    }
    
    .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--primary-light);
    }
    
    .cta p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 2rem;
        color: var(--background-light);
    }
    
    footer {
        background-color: var(--primary-dark);
        color: var(--background-light);
        padding: 4rem 10% 2rem;
    }
    
    .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .footer-col h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 0.5rem;
        color: var(--background-light);
    }
    
    .footer-col h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--primary-light);
    }
    
    .footer-col ul {
        list-style: none;
    }
    
    .footer-col ul li {
        margin-bottom: 0.8rem;
    }
    
    .footer-col ul li a {
        color: var(--background-dark);
        text-decoration: none;
        transition: 0.3s ease;
    }
    
    .footer-col ul li a:hover {
        color: var(--primary-light);
        padding-left: 5px;
    }
    
    .social-links {
        display: flex;
        margin-top: 1rem;
    }
    
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background-color: #444;
        color: #fff;
        border-radius: 50%;
        margin-right: 0.8rem;
        transition: 0.3s ease;
    }
    
    .social-links a:hover {
        background-color: #ffb100;
        transform: translateY(-3px);
    }
    
    .copyright {
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #444;
        color: #ccc;
    }
    
    @media (max-width: 768px) {
        .hero {
            height: 60vh;
        }
        
        .hero h1 {
            font-size: 2rem;
        }
        
        .section {
            padding: 3rem 5%;
        }
        
        .section-title h2 {
            font-size: 2rem;
        }
    }
