* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    min-height: 100vh;
    padding: 40px 20px;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.search-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.search-box {
    display: flex;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

#locationInput {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

#locationInput:focus {
    border-color: #87ceeb;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

#searchBtn {
    padding: 16px 40px;
    background: #87ceeb;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#searchBtn:hover {
    background: #6bb6d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

#searchBtn:active {
    transform: translateY(0);
}

.results-section {
    display: none;
}

.results-section.active {
    display: block;
}

#resultsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.result-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.card-icon {
    font-size: 32px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.card-category {
    display: inline-block;
    padding: 6px 14px;
    background: #e8f4f8;
    color: #4a90a4;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.card-highlights {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.card-highlights h4 {
    font-size: 14px;
    color: #87ceeb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-highlights ul {
    list-style: none;
    padding: 0;
}

.card-highlights li {
    padding: 6px 0;
    color: #666;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.card-highlights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #87ceeb;
    font-weight: bold;
    font-size: 18px;
}

.location-header {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    text-align: center;
}

.location-name {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.location-tagline {
    font-size: 16px;
    color: #7f8c8d;
}

.newsletter-section {
    margin: 60px auto;
    max-width: 1100px;
}

.newsletter-box {
    background: linear-gradient(135deg, #87ceeb 0%, #6bb6d6 100%);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 30px rgba(135, 206, 235, 0.3);
}

.newsletter-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.newsletter-box p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: 16px 35px;
    background: white;
    color: #87ceeb;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.affiliate-badge {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
    text-transform: uppercase;
}

.booking-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #87ceeb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.booking-link:hover {
    background: #6bb6d6;
    transform: translateY(-2px);
}

footer {
    background: #2c3e50;
    color: white;
    margin-top: 80px;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #87ceeb;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #87ceeb;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #bdc3c7;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    .search-box {
        flex-direction: column;
    }

    #resultsGrid {
        grid-template-columns: 1fr;
    }

    .location-name {
        font-size: 28px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-box {
        padding: 40px 25px;
    }
    
    .newsletter-box h2 {
        font-size: 24px;
    }
}