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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Filson', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0px 0px;
    background-color: #fff;
}

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

    .banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        filter: brightness(0.8);
    }

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 275px;
}

/* Logo */
.logo {
    width: 200px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

    .logo:hover {
        transform: scale(1.05);
    }

    .logo img {
        width: 175px;
        height: auto;
    }

/* Banner Buttons */
.banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: flex-end;
}

.content-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 10px 10px;
    border-radius: 25px;
    font-family: 'DIN Bold Italic 2014', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 220px;
    text-align: center;
    height: 60px;
}

    .content-btn:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .content-btn.active {
        background: #e74c3c;
        color: white;
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    }

        .content-btn.active:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 30px;
}

.content-section {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    animation: fadeIn 0.5s ease-in-out;
}

    .content-section.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section h2 {
    color: #2c3e50;
    font-family: 'Filson Medium', 'Inter', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

    .content-section h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #e74c3c, #f39c12);
        border-radius: 2px;
    }

.content-section h3 {
    color: #34495e;
    font-family: 'Filson Pro Bold Italic', 'Inter', sans-serif;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
}

.content-section p {
    font-family: 'Filson', 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section li {
    font-family: 'Filson', 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.content-section a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .content-section a:hover {
        color: #c0392b;
        text-decoration: underline;
    }

/* Table Styles */
.table-container {
    margin: 30px 0;
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .info-table th {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
        color: white;
        padding: 15px;
        text-align: left;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .info-table td {
        padding: 15px;
        border-bottom: 1px solid #ecf0f1;
        font-size: 1rem;
        line-height: 1.6;
    }

    .info-table tr:last-child td {
        border-bottom: none;
    }

    .info-table tr:hover {
        background-color: #f8f9fa;
    }

.content-section h4 {
    color: #34495e;
    font-family: 'Filson Pro Bold Italic', 'Inter', sans-serif;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
}

.content-section h5 {
    color: #2c3e50;
    font-family: 'Filson Pro Bold Italic', 'Inter', sans-serif;
    font-size: 1.1rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

/* Travel Around Buttons */
.travel-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.travel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e74c3c;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'DIN Bold Italic 2014', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    text-align: center;
}

    .travel-btn:hover {
        background: rgba(231, 76, 60, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.2);
    }

    .travel-btn.active {
        background: #e74c3c;
        color: white;
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    }

        .travel-btn.active:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }

/* Travel Content */
.travel-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

    .travel-content.active {
        display: block;
    }

.content-section h4 {
    color: #34495e;
    font-family: 'Filson Pro Bold Italic', 'Inter', sans-serif;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Banner Mobile */
    .banner {
        height: 300px;
    }

    .banner-overlay {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        width: 150px;
        padding: 20px;
    }

        .logo img {
            width: 150px;
        }

    .banner-buttons {
        align-items: center;
        gap: 10px;
    }

    .content-btn {
        min-width: 140px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .content-container {
        padding: 0 20px;
    }

    .content-section {
        padding: 30px 20px;
        margin: 30px 0 20px 0;
    }

        .content-section h2 {
            font-size: 2rem;
        }

        .content-section p {
            font-size: 1rem;
        }
}

@media (max-width: 480px) {
    .banner {
        height: 250px;
    }

    .banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .content-btn {
        width: 100%;
        min-width: auto;
    }
}
