:root {
    --primary-color: #FF5A5F;
    --text-color: #222222;
    --secondary-text: #717171;
    --background-color: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition-timing: 0.3s ease;
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

.header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.airbnb-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.airbnb-logo {
    width: 32px;
    height: 32px;
}

.welcome-text {
    text-align: left;
    font-size: 42px;
    margin: 2rem 2rem 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #222222;
    line-height: 1.2;
}

.villas-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.villa-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

.villa-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.villa-image-container:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
                0 0 60px rgba(255, 255, 255, 0.1);
}

.villa-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-timing);
    cursor: pointer;
}

.villa-image-container:hover .villa-image {
    transform: scale(1.02);
}

.favorite-button {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.favorite-button svg {
    width: 24px;
    height: 24px;
    fill: rgba(0, 0, 0, 0.5);
    stroke: #fff;
    stroke-width: 2;
}

.guest-favorite {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.villa-details {
    padding: 12px 0;
}

.villa-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.villa-header h2 {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    color: var(--text-color);
    cursor: pointer;
    max-width: calc(100% - 80px);
}

.villa-header h2:hover {
    text-decoration: underline;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.star {
    color: var(--text-color);
}

.location, .dates {
    font-size: 14px;
    color: var(--secondary-text);
    margin: 0;
}

.price {
    margin-top: 0;
    font-size: 14px;
    color: var(--text-color);
}

.price span {
    font-weight: 600;
}

.price-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.instagram-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
    object-fit: contain;
}

.instagram-link:hover .instagram-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .welcome-text {
        font-size: 32px;
        padding: 0 1rem;
        margin: 0.75rem 1rem 0.25rem;
    }

    .villas-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 1rem;
    }

    .villa-image-container {
        padding-bottom: 55%;
    }

    .villa-details {
        padding: 6px 4px;
    }

    .villa-header {
        margin-bottom: 1px;
    }

    .location {
        font-size: 13px;
        line-height: 1.2;
        margin-top: 1px;
    }

    .price-social {
        margin-top: 1px;
    }
}

@media (max-width: 360px) {
    .welcome-text {
        margin: 0.5rem 0.75rem 0.25rem;
    }

    .villas-container {
        padding: 0 0.75rem;
    }
}

/* Add image carousel dots */
.image-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: white;
}

footer {
    margin-top: 4rem;
    padding: 2rem 0;
    background-color: #ffffff;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.social-link {
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    padding: 6px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.social-icon.instagram {
    fill: #E4405F;
}

.social-icon.gmail {
    fill: #EA4335;
}

.social-icon.whatsapp {
    fill: #25D366;
}

.footer-text {
    color: #000000;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .social-icon {
        width: 14px;
        height: 14px;
    }
    
    .social-links {
        gap: 1.5rem;
    }
}

.logo-container {
    text-align: center;
    margin-bottom: 15px;
}

.logo {
    width: 80%;
    max-width: 160px;
    height: auto;
} 