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

/* Global Styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-repeat: no-repeat;
    background-size: 50% 50%;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

header h1 {
    margin: 0;
    font-size: 2em;
    color: #0070f3;
}

/* Main Content Styles */
main {
    max-width: 800px;
    margin: 60px auto 40px auto; /* Added top margin to offset sticky header */
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Package List Styles */
#packages {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.package-card {
    border: 1px solid rgba(224, 224, 224, 0.8);
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.package-title {
    font-size: 1.5em;
    color: #0070f3;
    margin: 0;
}

.package-description {
    font-size: 1em;
    color: #555;
    margin: 10px 0;
}

.package-stats {
    display: flex;
    gap: 20px;
    font-size: 0.9em;
    color: #555;
}

.package-link {
    text-decoration: none;
    color: inherit;
}

.package-link:hover .package-title {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: rgba(255, 255, 255, 0.95);
    border-top: 1px solid #e0e0e0;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    position: relative;
    z-index: 10;
}

footer a {
    color: #0070f3;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    .package-stats {
        flex-direction: column;
        gap: 10px;
    }
}
