/* Base styling */
body {
    background: #f4f7fb; /* soft white background */
    font-family: 'Roboto', sans-serif; /* clean modern font */
    margin: 0;
    padding: 0;
    color: #0d1b2a; /* dark navy text */
}

/* Navigation styling */
header nav {
    display: flex;
    gap: 15px;
    background: #4169e1; /* royal blue */
    padding: 15px 30px;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    border-bottom: 3px solid #c0c0c0; /* silver */
}

header nav a {
    text-decoration: none;
    color: #ffffff; /* white text */
    background: #27408b; /* darker royal blue for links */
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    transition: transform 0.1s, background 0.2s;
    font-weight: 500;
    position: relative;
}

/* Subtle Asian brush stroke effect on hover */
header nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #c0c0c0; /* silver underline */
    left: 0;
    bottom: -4px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

header nav a:hover::after {
    transform: scaleX(1);
}

/* Main content */
main {
    padding: 40px 30px;
    max-width: 1200px;
    margin: auto;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero img {
    width: 350px;
    border: 3px solid #c0c0c0; /* silver frame */
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    margin-top: 20px;
    border-radius: 8px;
}

/* Hero headings with subtle brush stroke style */
.hero h1 {
    font-size: 2.5rem;
    color: #0d1b2a;
    text-shadow: 1px 1px #4169e1; /* subtle royal blue shadow */
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: #333;
}

/* Cards for events, recaps, etc. */
.card {
    background: #ffffff;
    padding: 20px;
    border-left: 5px solid #4169e1; /* royal blue accent */
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
}

.card h2 {
    margin-top: 0;
    color: #0d1b2a;
}

.card p {
    color: #333;
}

/* Section highlights */
.highlights {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #4169e1; /* royal blue footer */
    color: #ffffff;
    font-size: 0.9rem;
    border-top: 3px solid #c0c0c0; /* silver accent */
}
