/* Color Palette */
:root {
    --bg-color: rgb(255, 234, 200);
    --color-pink: rgb(230, 145, 144);
    --color-green: rgb(22, 159, 41);
    --color-red: rgb(223, 48, 16);
    --color-yellow: rgb(237, 178, 14);
    --color-blue: rgb(40, 130, 186);
    --color-dark: rgb(20, 20, 20);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--color-dark);
    line-height: 1.6;
}

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

/* Header/Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-yellow) 100%);
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.info-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.info-box h2 {
    color: var(--color-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    gap: 15px;
}

.contact-item {
    background: var(--bg-color);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--color-green);
}

.contact-item .label {
    font-weight: 600;
    color: var(--color-dark);
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--color-blue);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-red);
}

/* Main Content */
main {
    padding: 40px 20px;
}

.section {
    margin-bottom: 60px;
}

.section-header {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-green) 100%);
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-header h2 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.content-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-card h3 {
    color: var(--color-red);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.route-info {
    background: var(--bg-color);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--color-yellow);
}

.instructions {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.recommendation {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-blue) 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.company-card {
    background: var(--bg-color);
    padding: 25px;
    border-radius: 15px;
    border: 3px solid var(--color-pink);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.company-card h4 {
    color: var(--color-red);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.phone-list {
    margin-bottom: 10px;
}

.phone-list a {
    color: var(--color-blue);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-list a:hover {
    color: var(--color-green);
}

.phone-label {
    color: var(--color-dark);
    font-size: 0.9rem;
    margin-left: 8px;
    opacity: 0.7;
}

/* Accommodation Section */
.accommodation-category {
    margin-bottom: 50px;
}

.category-title {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-red) 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 700;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.place-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--color-yellow);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--color-blue);
}

.place-card h4 {
    color: var(--color-blue);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.place-card .address {
    color: var(--color-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.place-card .phone {
    color: var(--color-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.place-card .phone:hover {
    color: var(--color-red);
}

/* Footer */
footer {
    background: var(--color-dark);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}

footer p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .companies-grid,
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .info-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .content-card {
        padding: 20px;
    }
}
