*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior:smooth;
}
body{
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #000000;
}

header{
    color: white;
    background-color: rgb(35, 117, 149);
    font-size:large;
    font-weight: 600;
}
.header{
    padding: 0 5rem;
    min-height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.logo a img{
    height: 50px;
}

nav{
    display: flex;
    gap: 2rem;
}
nav a{
    padding: 0 5px;
    color: white;
    text-decoration: none;
    transition: all .5s ease-in-out ;
}
nav a:hover{
    text-decoration-color: #ffffff;
    text-decoration-line: underline;
    filter:drop-shadow(2px 2px 25px #ffffff) ;
}
.btn a{
    padding: .5rem 1.5rem;
    text-decoration: none;
    color: white;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 2px;
    transition: all .3s ease-in-out ;
}
.btn a:hover{
    color: #184b7b;
    background-color: white;
}

/* =========================================================================================================================================== */

section{
    box-sizing: border-box !important;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h2{
    font-size: 56px;
    color: #ffffff;
}
h4{
    color: #54b1d3;
    font-size: 30px;
}
#hero{
    min-height: 100vh;
    background-image: url("../images/bg\ \(1\).webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 0;
}
#hero-row{
    margin:0;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(1px);
    filter:drop-shadow(2px 2px 2px black);
}
.row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.hero-head{
    text-align: center;
    font-size: 2rem;
    color:#ffffff;
}
.text{
    margin: 0 20rem;
    text-align: center;
    color:#ffffff;
    font-size: large;
    font-weight: 600;
}
.hero-btn a{
    padding: .5rem 1.5rem;
    text-decoration: none;
    font-size: x-large;
    color: white;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 2px;
    transition: all .3s ease-in-out ;
}
.hero-btn a:hover{
    color: #ffffff;
    background-color: #ff0000;
    border: 2px solid #ff0000;
}

/* =========================================================================================================================================== */

#about{
    min-height: 100vh;
    padding: rem;
    color:#ffffff;
    background-color: black;
    display: flex;
}
.about-row{
    display: flex;
    flex-direction: row;
    gap: 100px;
    justify-content: flex-start;
    align-items: center;
}
.about-content{
    margin: 2rem;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    /* align-items: flex-start; */
}
.about-text{
    color:#ffffff;
    font-size: large;
    font-weight: 600;
}


/* =========================================================================================================================================== */

#games{
    min-height: 100vh;
    background-image: url("../images/bg-games.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 0;
}
#games-row{
    margin:0;
    min-height: 100vh;
    min-width: 100vw;
    background-color: rgba(0, 0, 0, .20);
    filter:drop-shadow(2px 2px 2px black);
}
#games h2{
    text-align: center;
    font-size: 40px;
    color: #ffffff;
}
.games-text {
    margin: 0 50px;
    text-align: center;
    color: #ffffff;
    font-size: large;
    font-weight: 600;
}
.game-box{
    /* min-height: 15vh;
    min-width: 25vw;
    padding: 0 1rem; */
    border-radius: 1rem;
    transition: all .5s ease-in;
}




.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0,.95);
    /* background-image: radial-gradient(#ff0101 15%,black 90%); */
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        color: white;
        text-align: center;
        opacity: 0;
        transform: scaleX(-1);
        display: none;
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }
    
    .overlay p {
        margin: 10px 0;
        font-size: 16px;
    }
    
    .game-box a{
        text-decoration: none;
        padding: .5rem 1rem;
        font-size: 1rem;
        font-weight: 600;
        color: #ffffff;
        background-color: #000000;
        border: 2px solid white;
        border-radius: 2px;
    }
    .game-box a:hover{
        /* min-height: ; */
        text-decoration: none;
        padding: .5rem 1rem;
        color: #ffffff;
        background-color: #ff0000;
        border: 2px solid #ff0000;
        border-radius: 2px;
    }

    /* Hover Effect */
    .game-box:hover {
    transform: scaleX(-1);
   
  }

  .game-box:hover .overlay {
    display: flex;
    opacity: 1;
  }
/* =========================================================================================================================================== */

#disc{
    
    min-height: 100vh;
    background-color: black;
}
.disc-row{
    margin: 0;
    padding: 0 1rem;
}
.disc-content{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.disc-content img{
    height: 15rem;
    max-width: 100%;
    object-fit: contain;
}
.disc-text{
    margin: 3rem;
    text-align: center;
    color: #ffffff;
    font-size:22px;
    font-weight: 100;
}

/* =========================================================================================================================================== */

.footer {
    color: white;
    background-color: #ca1b1b;
    font-size:large;
    font-weight: 600;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .footer-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all .5s ease-in-out;
  }
  
  .footer-links a:hover {
      text-decoration-line: underline;
    text-decoration-color: #ffffff;
    filter:drop-shadow(2px 2px 25px #ffffff);

  }
  
  /* Responsive Design */

  @media (min-width: 1025px) and (max-width: 1440px) {
    .header {
        padding: 0 5rem;
    }
    .text {
        margin: 0 15rem;
    }
    
} 

  @media (min-width: 700px) {
    .footer-container {
      flex-direction: row;
      justify-content: center;
      padding: 0 20px;
    }
    
  }
  @media (max-width: 700px) {
    *{
        text-align: center;
    }
    h4{
        text-align: center;
    }
    .header {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    nav {
        flex-direction: column;
        gap: 10px;
    }
    .text {
        margin: 0 2rem;
        font-size: 14px;
    }
    .about-row {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .game-box {
        width: 100%;
    }
    .footer-container {
        flex-direction: column;
    }
    #one{
        display: none;
    }
    .row {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    #game-content{
        margin: 2em;
        order: -1;
    }
}

@media (min-width: 701px) and (max-width: 1024px) {
    .header {
        padding: 0 3rem;
    }
    .text {
        margin: 0 5rem;
    }
    .about-row {
        flex-direction: row;
        gap: 50px;
    }
    #one{
        display: none;
    }
    .row{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    #game-content{
        order: -1;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .header {
        padding: 0 5rem;
    }
    .text {
        margin: 0 15rem;
    }
    .row{
        display: flex;
        flex-direction: row;
        /* flex-wrap: wrap; */
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 1441px) {
    .header {
        padding: 0 8rem;
    }
    .text {
        margin: 0 20rem;
    }
}
  



/*  */