/* Material Design 3 inspired styles */
:root {
    --mdc-theme-primary: #0288d1; /* Bright blue */
    --mdc-theme-on-primary: #ffffff; /* White text */
    --mdc-theme-surface: #f5f7fa; /* Light gray-blue background */
    --mdc-theme-on-surface: #1a237e; /* Dark blue text */
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--mdc-theme-surface);
    color: var(--mdc-theme-on-surface);
    line-height: 1.5;
    overflow-x: hidden;
}

.mdc-top-app-bar {
    background-color: var(--mdc-theme-primary);
    color: var(--mdc-theme-on-primary);
    padding: 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.mdc-top-app-bar__title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: 16px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background-color: #ccc;
    display: inline-block;
    margin-left: 16px;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.mdc-layout-grid {
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.mdc-layout-grid__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.content-section {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease forwards 1s;
}

.mdc-typography--headline-large {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

.mdc-typography--body-large {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.mdc-chip-set {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mdc-chip {
    background-color: #e0e0e0;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    opacity: 0;
    animation: fadeInChip 0.5s ease forwards;
    animation-delay: calc(var(--order) * 0.2s);
}

.mdc-chip__text {
    font-size: 0.875rem;
    margin-right: 4px;
}

.subtag {
    font-size: 0.75rem;
    color: #666;
    margin-left: 4px;
    font-weight: bold;
}

.contact-section {
    background-color: #f5f5f5;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease forwards 1.5s;
}

.mdc-typography--headline-small {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.mdc-typography--body-medium {
    font-size: 1rem;
}

a {
    color: var(--mdc-theme-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.mdc-footer {
    text-align: center;
    padding: 16px;
    background-color: #f5f5f5;
    margin-top: 32px;
}

.mdc-typography--body-small {
    font-size: 0.875rem;
    color: #666;
}

/* Animations */
@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInChip {
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 600px) {
    .mdc-typography--headline-large { font-size: 2rem; }
    .mdc-typography--body-large { font-size: 1rem; }
    .mdc-chip__text { font-size: 0.75rem; }
}