* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@font-face {
    font-family: 'Regular';
    src: url('../fonts/raleway.medium.ttf');
}

@font-face {
    font-family: 'Medium';
    src: url('../fonts/raleway.bold.ttf');
}

@font-face {
    font-family: 'Bold';
    src: url('../fonts/raleway.heavy.ttf');
}

body {
    font-family: 'Regular';
  
}

header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    color: #282560;
    padding: 0.5em 0;
    transition: background-color 0.3s, position 0.3s;
    z-index: 1000;
}

header.scrolled {
    background-color: white;
    position: fixed;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.logo img {
    width: 23%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #282560;
    font-size: 2em;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    position: relative;
    margin-left: 2.5em;
    padding: 0.5em 0;
    font-family: 'Bold';
    letter-spacing: 0.1em;
}

.nav-links a {
    text-decoration: none;
    color: #282560;
    font-size: 1em;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #DE4935;
    transition: width 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
}

.nav-links a:hover::after {
    width: 100%;
    visibility: visible;
}
.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}
.slide1{
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
}
.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
    background-size: cover;
    background-position: center;
    color: white;
    text-align: left;
    padding-left: 9.5em; 
    
}


.slide h1 {
    font-size: 2.5em;
    margin-bottom: 0.2em;
    font-family: 'Bold';
    width: 50%;
    line-height: 1.2em;
    letter-spacing: 0.08em;
}

.slide p {
    font-size: 0.8em;
    margin-bottom: 2em;
    font-family: 'Regular';
    width: 50%;
    line-height: 1.5em;
    letter-spacing: 0.1em;
}

.slide button {
    background-color: #DE4935;
    color: white;
    border: none;
    padding: 0.75em 1.5em;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Medium';
    letter-spacing: 0.2em;
}

.slide button:hover {
    background-color: #e43923;
}

.hockey-heading {
    width: 100%;
    height: 40vh;
    padding: 20px 0;
    background-color: #f9f9f9; 
    display: flex;
    justify-content: center;
    align-items: center; 
}

.hockey-heading p {
    width: 50%;
    font-size: 2em;
    font-family: 'Medium';
    color: #bababa; 
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.1em;
}


.about-section {
    width: 100%;
    padding: 20px 0;
    background-color: #f9f9f9;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 2em; 
}

.about-photo {
    flex: 1.5;
    text-align: left;
    background-color: #918b8a;
    width: 100%;
    height: 300px;
}


.about-text {
    flex: 2;
    padding-left: 50px; 
}
.about-text h1 {
    font-family: 'Regular';
    font-size: 0.8em;
    color: #bababa; 
    margin-bottom: 0.8em;
    font-weight: 700;
    letter-spacing: 0.5em;
}
.about-text h2 {
    font-family: 'Medium';
    font-size: 1.5em;
    line-height: 1.3em;
    color: #282560; 
    margin-bottom: 0.3em;
}

.about-text p {
    font-size: 1em;
    font-family: 'Regular';
    color: #bababa; 
    line-height: 1.6;
    letter-spacing: 0.1em;
}

.learn-more-btn {
    padding: 0.75em 1.5em;
    background-color: #DE4935; 
    color: white;
    font-size: 1em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease; 
    text-align: center;
    font-family: 'Medium';
    display: inline-block; 
    letter-spacing: 0.2em; 
    margin-top: 20px;
}

.learn-more-btn:hover {
    background-color: #ec371f; 
}

.event-section {
    width: 100%;
    padding: 20px 0;
    background-color: #f9f9f9; 
}

.event-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; 
    margin: auto;
    padding: 4em 2em; 
}

.event-photo {
    flex: 1.5;
    text-align: left;
    background-color: #918b8a;
    width: 100%;
    height: 300px;
}


.event-text {
    flex: 2;
    padding-right: 50px; 
}
.event-text h1 {
    font-family: 'Regular';
    font-size: 0.8em;
    color: #bababa; 
    margin-bottom: 0.8em;
    font-weight: 700;
    letter-spacing: 0.5em;
}
.event-text h2 {
    font-family: 'Medium';
    font-size: 1.5em;
    line-height: 1.3em;
    color: #282560;
    margin-bottom: 0.3em;
}

.event-text p {
    font-size: 1em;
    font-family: 'Regular';
    color: #bababa; 
    line-height: 1.6;
    letter-spacing: 0.1em;
}

footer {
    background-color: #0A1F44;
    color: white;
    text-align: center;
    padding: 1em 0;
    font-family: 'Medium';
    letter-spacing: 0.2em;
    bottom: 0;
}

.orange-box{
 width: 100%;
 padding: 3em 0;
}
.orange-container{
    margin: 0 auto;
    background-color: #DE4935;
    max-width: 1200px;
    height: 70vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2em; 
}

.orange-photo {
    flex: 1;
    width: 100%;
}

.orange-photo img{
    width: 80%;
    opacity: 70%;
}

.orange-text {
    flex: 2;
}

.orange-text h1{
    font-family: 'Regular';
    font-size: 0.8em;
    color: #ffffff; 
    margin-bottom: 0.8em;
    font-weight: 700;
    letter-spacing: 0.5em;
    opacity: 70%;
}

.orange-text h2 {
    font-family: 'Medium';
    font-size: 1.5em;
    line-height: 1.3em;
    color: #ffffff;
    margin-bottom: 0.3em;
}

.orange-text p {
    font-size: 1em;
    font-family: 'Regular';
    color: #ffffff;
    line-height: 1.6;
    letter-spacing: 0.1em;
    opacity: 80%;
}
.orange-text .learn-more-btn{
    background-color: #282560;
}
.orange-text .learn-more-btn:hover{
    background-color: #1c194d;
}

.wrapper-class{
    text-align: center;
    margin-top: 100px;
   
}
.wrapper-class h1{
    font-family: 'Regular';
    font-size: 0.8em;
    color: #bababa;
    margin-bottom: 0.8em;
    font-weight: 700;
    letter-spacing: 0.5em;
}
.wrapper-class h2{
    font-family: 'Medium';
    font-size: 1.5em;
    line-height: 1.3em;
    color: #282560; 
    margin-bottom: 0.2em;
}
.wrapper {
    margin: auto;
    max-width: 1200px;
    width: 100%;
    position: relative;
  }
  .wrapper i {
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
  }
  .wrapper i:active{
    transform: translateY(-50%) scale(0.85);
  }
  .wrapper i:first-child{
    left: -22px;
  }
  .wrapper i:last-child{
    right: -22px;
  }
  .wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .carousel::-webkit-scrollbar {
    display: none;
  }
  .carousel.no-transition {
    scroll-behavior: auto;
  }
  .carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  .carousel.dragging .card {
    cursor: grab;
    user-select: none;
  }
  .carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .carousel .card {
    scroll-snap-align: start;
    height: 342px;
    list-style: none;
    background: #fff;
    cursor: pointer;
    padding-bottom: 15px;
    flex-direction: column;
    border-radius: 8px;
  }
  .carousel .card .img {
    
    height: 148px;
    width: 148px;
    border-radius: 50%;
  }
  .card .img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
  }

  .carousel .card h2 {
    font-family: 'Medium';
    font-size: 1.1em;
    line-height: 1em;
    color: #282560;
    margin-bottom: 0.3em;
    margin: 30px 0 5px;
  }
  .carousel .card span {
    font-family: 'Regular';
    font-size: 0.8em;
    color: #bababa;
    margin-bottom: 0.8em;
    font-weight: 700;
    letter-spacing: 0.1em;
  }




@media (max-width: 768px) {
    header {
        position: fixed;
        background-color: white;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; 
        left: 0;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin-left: 0;
        margin-bottom: 1em;
        padding: 1em;
        text-align: center;
    }
    .logo img {
        width: 25%;
    }

    .slide h1 {
        font-size: 1.2em; 
    }

    .slide p {
        font-size: 0.6em; 
    }

    .slide {
        padding-left: 16px; 
    }
    .hero{
        margin-top: 5rem;
    }
    .hockey-heading{
        font-size: 0.6em; 
    }
    .about-container{
        display: flex;
        flex-direction: column;
    }
    .event-container{
        display: flex;
        flex-direction: column;
    }
    .wrapper-class{
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        max-width: 90vw;
        position: relative;
        left: 1.4rem;
    }
    .orange-container{
        font-size: 0.8em; 
    }

    .slide button {
        padding: 0.5em 1em; 
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    header {
        position: fixed;
        background-color: white;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin-left: 0;
        margin-bottom: 1em;
        padding: 1em;
        text-align: center;
    }

    .logo img {
        width: 25%;
    }
    
    .hero {
        height: 60vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    .slider {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .slides {
        display: flex;
        transition: transform 0.5s ease-in-out;
        height: 100%;
    }
    .slide1{
        background-image: url("");
        background-repeat: no-repeat;
        background-size: cover;
    }
    .slide {
        min-width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start; 
        background-size: cover;
        background-position: center;
        color: white;
        text-align: left;
        padding-left: 9.5em; 
        
    }
    
    
    .slide h1 {
        font-size: 2.5em;
        margin-bottom: 0.2em;
        font-family: 'Bold';
        width: 80%;
        line-height: 1.2em;
        letter-spacing: 0.08em;
    }
    
    .slide p {
        font-size: 0.8em;
        margin-bottom: 2em;
        font-family: 'Regular';
        width: 70%;
        line-height: 1.5em;
        letter-spacing: 0.1em;
    }
    
    .slide button {
        background-color: #DE4935;
        color: white;
        border: none;
        padding: 0.75em 1.5em;
        font-size: 0.7em;
        cursor: pointer;
        transition: background-color 0.3s;
        font-family: 'Medium';
        letter-spacing: 0.2em;
    }
    
    .slide button:hover {
        background-color: #e43923;
    }

    
    .slide h1 {
        font-size: 1.2em; 
    }

    .slide p {
        font-size: 0.6em; 
    }

    .slide {
        padding-left: 16px; 
    }
    .hero{
        margin-top: 5rem;
    }
    .hockey-heading{
        font-size: 0.6em; 
    }
    .hockey-heading {
        width: 100%;
        height: 20vh;
        padding: 20px 0;
        background-color: #f9f9f9; 
        display: flex;
        justify-content: center;
        align-items: center; 
    }
    
    .hockey-heading p {
        width: 80%;
        font-size: 1.5em;
        font-family: 'Medium';
        color: #bababa; 
        line-height: 1.6;
        text-align: center;
        letter-spacing: 0.1em;
    }
    .about-container{
        display: flex;
        flex-direction: column;
    }
    .event-container{
        display: flex;
        flex-direction: column;
    }

    .about-section {
        width: 100%;
        padding: 20px 0;
        background-color: #f9f9f9;
    }
    
    .about-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px; 
        margin: 0 auto;
        padding: 0 2em; 
    }
    
    .about-photo {
        flex: 1.5;
        text-align: left;
        background-color: #918b8a;
        width: 100%;
        height: 300px;
    }
    
    
    .about-text {
        flex: 2;
        padding-left: 50px; 
    }
    .about-text h1 {
        font-family: 'Regular';
        font-size: 0.5em;
        color: #bababa; 
        margin-top: 2em;
        font-weight: 700;
        letter-spacing: 0.5em;
    }
    .about-text h2 {
        font-family: 'Medium';
        font-size: 1em;
        line-height: 1.3em;
        color: #282560; 
        margin-bottom: 0.3em;
    }
    
    .about-text p {
        font-size: 0.8em;
        font-family: 'Regular';
        color: #bababa; 
        line-height: 1.6;
        letter-spacing: 0.1em;
    }
    
    .learn-more-btn {
        padding: 0.75em 1.5em;
        background-color: #DE4935; 
        color: white;
        font-size: 0.8em;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease; 
        text-align: center;
        font-family: 'Medium';
        display: inline-block; 
        letter-spacing: 0.2em; 
        margin-top: 20px;
    }
    
    .learn-more-btn:hover {
        background-color: #ec371f; 
    }
    
    .event-section {
        width: 100%;
        padding: 20px 0;
        background-color: #f9f9f9; 
    }
    
    .event-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px; 
        margin: auto;
        padding: 4em 2em; 
    }
    
    .event-photo {
        flex: 1.5;
        text-align: left;
        background-color: #918b8a;
        width: 100%;
        height: 300px;
        margin-top: 1em;
    }
    
    
    .event-text {
        flex: 2;
        padding-right: 20px; 
    }
    .event-text h1 {
        font-family: 'Regular';
        font-size: 0.5em;
        color: #bababa; 
        margin-bottom: 0.8em;
        font-weight: 700;
        letter-spacing: 0.5em;
    }
    .event-text h2 {
        font-family: 'Medium';
        font-size: 1em;
        line-height: 1.3em;
        color: #282560;
        margin-bottom: 0.3em;
    }
    
    .event-text p {
        font-size: 0.8em;
        font-family: 'Regular';
        color: #bababa; 
        line-height: 1.6;
        letter-spacing: 0.1em;
    }
    .wrapper-class{
        display: flex;
        flex-direction: column;
        max-width: 90vw;
        position: relative;
        left: 1.4rem;
    }
    .orange-container{
        font-size: 0.8em; 
    }
    .about-text{
        padding-left: 0;
    }

    .wrapper-class h1{
        font-family: 'Regular';
        font-size: 0.5em;
        color: #bababa;
        margin-bottom: 0.8em;
        font-weight: 700;
        letter-spacing: 0.5em;
    }
    .wrapper-class h2{
        font-family: 'Medium';
        font-size: 1.0em;
        line-height: 1.3em;
        color: #282560; 
        margin-bottom: 0.2em;
    }

    .wrapper {
        margin: auto;
        max-width: 1200px;
        width: 100%;
        position: relative;
      }
      .wrapper i {
        top: 50%;
        height: 40px;
        width: 40px;
        cursor: pointer;
        font-size: 1.25rem;
        position: absolute;
        text-align: center;
        line-height: 50px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 3px 6px rgba(0,0,0,0.23);
        transform: translateY(-50%);
        transition: transform 0.1s linear;
      }
      .wrapper i:active{
        transform: translateY(-50%) scale(0.85);
      }
      .wrapper i:first-child{
        left: -22px;
      }
      .wrapper i:last-child{
        right: -22px;
      }
      .wrapper .carousel{
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc((100% / 3) - 12px);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        border-radius: 8px;
        scroll-behavior: smooth;
        scrollbar-width: none;
      }
      .carousel::-webkit-scrollbar {
        display: none;
      }
      .carousel.no-transition {
        scroll-behavior: auto;
      }
      .carousel.dragging {
        scroll-snap-type: none;
        scroll-behavior: auto;
      }
      .carousel.dragging .card {
        cursor: grab;
        user-select: none;
      }
      .carousel :where(.card, .img) {
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .carousel .card {
        scroll-snap-align: start;
        height: 342px;
        list-style: none;
        background: #fff;
        cursor: pointer;
        padding-bottom: 15px;
        flex-direction: column;
        border-radius: 8px;
      }
      .carousel .card .img {
        
        height: 148px;
        width: 148px;
        border-radius: 50%;
      }
      .card .img img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #fff;
      }
    
      .carousel .card h2 {
        font-family: 'Medium';
        font-size: 1.1em;
        line-height: 1em;
        color: #282560;
        margin-bottom: 0.3em;
        margin: 30px 0 5px;
      }
      .carousel .card span {
        font-family: 'Regular';
        font-size: 0.8em;
        color: #bababa;
        margin-bottom: 0.8em;
        font-weight: 700;
        letter-spacing: 0.1em;
      }
    
      footer {
        background-color: #0A1F44;
        color: white;
        text-align: center;
        padding: 1em 0;
        height: 50px;
        font-family: 'Medium';
        letter-spacing: 0.2em;
        bottom: 0;
        font-size: 0.7em;
        line-height:25px;
    }
}


