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

:root {
    --primary: #f43f5e;
    --primary-light: #fb7185;
    --secondary: #14b8a6;
    --dark: #18181b;
    --dark-light: #27272a;
    --gray: #71717a;
    --gray-light: #a1a1aa;
    --light: #f4f4f5;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 12px;
}

.btn-search {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.accent {
    color: var(--primary);
}

.hero > .container > p,
.hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.search-box {
    background: var(--white);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-input {
    flex: 1;
    text-align: left;
}

.search-input label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.search-input input,
.search-input select {
    width: 100%;
    border: none;
    font-size: 1rem;
    color: var(--gray);
    background: transparent;
}

.search-input input:focus,
.search-input select:focus {
    outline: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.destinations {
    padding: 80px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.destination-card {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: scale(1.02);
}

.destination-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.destination-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.destination-image.beach { background: linear-gradient(135deg, #38bdf8, #0ea5e9); }
.destination-image.mountain { background: linear-gradient(135deg, #86efac, #22c55e); }
.destination-image.lake { background: linear-gradient(135deg, #67e8f9, #06b6d4); }
.destination-image.city { background: linear-gradient(135deg, #c4b5fd, #8b5cf6); }
.destination-image.cabin { background: linear-gradient(135deg, #fed7aa, #f97316); }

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--white);
}

.destination-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.destination-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.properties {
    padding: 80px 0;
    background: var(--light);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.property-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    position: relative;
    height: 200px;
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--white);
    color: var(--dark);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 2;
}

.property-placeholder {
    width: 100%;
    height: 100%;
}

.property-placeholder.beach { background: linear-gradient(135deg, #fed7aa, #fdba74); }
.property-placeholder.mountain { background: linear-gradient(135deg, #bbf7d0, #86efac); }
.property-placeholder.lake { background: linear-gradient(135deg, #a5f3fc, #67e8f9); }
.property-placeholder.city { background: linear-gradient(135deg, #e9d5ff, #d8b4fe); }

.property-info {
    padding: 16px;
}

.property-rating {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.property-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.property-location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.property-details {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--gray);
}

.property-price .price {
    font-size: 1.25rem;
    font-weight: 700;
}

.property-price .per-night {
    color: var(--gray);
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

.experiences {
    padding: 80px 0;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.experience-card {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-image {
    height: 180px;
    border-radius: 16px;
}

.experience-image.surf { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.experience-image.hike { background: linear-gradient(135deg, #86efac, #16a34a); }
.experience-image.cooking { background: linear-gradient(135deg, #fde047, #eab308); }
.experience-image.wine { background: linear-gradient(135deg, #fca5a5, #dc2626); }

.experience-info {
    padding: 16px 0;
}

.experience-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.experience-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.experience-price {
    font-weight: 700;
    color: var(--dark);
}

.guarantees {
    padding: 60px 0;
    background: var(--light);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.guarantee h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.guarantee p {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--light);
    border-radius: 16px;
    padding: 32px;
}

.testimonial-rating {
    color: var(--primary);
    margin-bottom: 16px;
}

.testimonial p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--primary);
    font-size: 0.9rem;
}

.host-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    text-align: center;
    color: var(--white);
}

.host-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.host-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.host-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.footer {
    padding: 60px 0 32px;
    background: var(--dark);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: var(--white);
}

.footer-brand p {
    color: var(--gray);
    margin-top: 16px;
}

.footer-links h4 {
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .search-box {
        flex-wrap: wrap;
    }

    .search-input {
        flex: 1 1 45%;
    }

    .btn-search {
        width: 100%;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .destination-card.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 250px;
    }

    .destination-card {
        height: 200px;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-card.large {
        grid-column: span 1;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
