/* Custom Orange and Black Theme for Powell High School */
:root {
    --phs-orange: #ff6600;
    --phs-black: #1a1a1a;
}

/* stylelint-disable-next-line */
@font-face {
  font-family: 'HeaderFont'; /* You can name this whatever you want */
  src: url('Gugi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

body {
    font-family: 'HeaderFont';
}

/* Navigation */
.navbar-custom {
    background-color: var(--phs-black);
}
.navbar-custom .navbar-brand {
    color: var(--phs-orange);
    font-weight: bold;
    font-size: 1.5rem;
}
.navbar-custom .nav-link {
    color: white;
    text-transform: uppercase;
    font-weight: 500;
}
.navbar-custom .nav-link:hover {
    color: var(--phs-orange);
}

/* Hero Section */
.hero-section {
    background-color: var(--phs-orange);
    color: var(--phs-black);
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px solid var(--phs-black);
}
.hero-section h1 {
    font-weight: 800;
    text-transform: uppercase;
}

/* Section Headers */
.section-header {
    color: var(--phs-orange);
    border-bottom: 3px solid var(--phs-black);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Footer */
.footer-custom {
    background-color: var(--phs-black);
    color: white;
    padding: 20px 0;
    text-align: center;
    border-top: 5px solid var(--phs-orange);
}
