:root {
    --primary: #183466;
    --accent: #2d5ba7;
    --background: #121212;
    --card: #1e1e1e;
    --text: #f0f0f0;
    --muted: #bbbbbb;
}

@font-face {
    font-family: 'Formula1 bold';
    src: url('/fonts/Formula1-Bold.woff2') format('woff2'),
         url('/fonts/Formula1-Bold.woff') format('woff');
    font-display: swap;

    
    font-family: 'Formula1';
    src: url('/fonts/Formula1-Regular.woff2') format('woff2'),
         url('/fonts/Formula1-Regular.woff') format('woff');
    font-display: swap;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Formula1', Arial, Helvetica, sans-serif;
}

body,
html {
    font-family: Arial, sans-serif;
    background: var(--background);
    color: var(--text);
    height: 100%;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: var(--primary);
    padding: 2em 1em;
    text-align: center;
}

header h1 {
    font-size: 2.8em;
    margin-bottom: 0.3em;
}

header p {
    color: var(--muted);
    font-size: 1.2em;
}

main {
    flex: 1;
    padding: 2em 1em;
    max-width: 1000px;
    margin: 0 auto;
}

section#about {
    background: var(--card);
    padding: 1.5em;
    border-radius: 8px;
    margin-bottom: 2em;
}

section#about h2 {
    color: var(--accent);
    margin-bottom: 0.5em;
}

section#videos {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
}

.video {
    background: var(--card);
    border-radius: 8px;
    padding: 0.5em;
    max-width: 360px;
    flex: 1 1 300px;
}

.video p {
    font-size: 0.95em;
    color: var(--muted);
    margin-top: 0.5em;
}

iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 5px;
}

footer {
    background: #000;
    padding: 1.2em 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5em;
}

footer a {
    color: var(--accent);
    margin: 0 0.7em;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 0.75em 1.5em;
    background-color: #183466;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .btn:hover {
    background-color: #2450a3; /* slightly lighter blue for hover */
    transform: translateY(-2px);
    text-decoration: none;
  }
  
  .btn:active {
    transform: scale(0.98);
  }

  .center {
    display: flex;
    justify-content: center;
    align-items: center;
  }

#scheduale-btn {
    margin-top: 40px;
}
  