
/* external css for home page */

/*-------------------------------------------------------------------------------------------------------------*/
/*                                                  BODY                                                       */
/*-------------------------------------------------------------------------------------------------------------*/

* 
{
  box-sizing: border-box;
}

body 
{
  margin: 0;
  background-color: black;                      /* background color */
  font-family: Arial, sans-serif;
  line-height: 1.5;
  padding: 16px;                       
  -webkit-font-smoothing: antialiased;
}

/*-------------------------------------------------------------------------------------------------------------*/
/*                                           COMPANY LOGO / HEADER                                             */
/*-------------------------------------------------------------------------------------------------------------*/

header 
{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;                     
  text-align: center;
}

header img                                        /* logo image */
{
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
}

/*-------------------------------------------------------------------------------------------------------------*/
/*                                              NAVIGATION MENU                                                */
/*-------------------------------------------------------------------------------------------------------------*/

.nav-boxes 
{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 5px;
  flex-wrap: wrap;                              /* mobile friendly */
}

.nav-box 
{
  padding: 12px 24px;
  background: rgb(17, 75, 175);               /* blue glow */
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 18px;
  text-align: center;

  /* use box shadow layers for blue glow effect */
  box-shadow:
    0 0 5px rgba(17, 75, 175, 0.8),
    0 0 15px rgba(17, 75, 175, 0.8),
    0 0 25px rgba(17, 75, 175, 0.8);

  transition: transform 0.2s;
}   

.nav-box:hover 
{
  transform: scale(1.1);
}

@media(min-width: 768px) 
{
  .nav-box 
  {
    padding: 16px 32px;
    font-size: 22px;
  }
}

html 
{
  scroll-behavior: smooth;
}

/*-------------------------------------------------------------------------------------------------------------*/
/*                                                WELCOME CAT                                                  */
/*-------------------------------------------------------------------------------------------------------------*/

.welcome-img 
{
  margin-top: 5px;
  width: 400px;                 
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;

  /* use box shadow layers for blue glow effect */
  box-shadow:
    0 0 10px rgb(0, 21, 255),
    0 0 20px rgb(25, 0, 255);
}

.welcome-text 
{
  color: rgb(208, 17, 17);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-size: 30px;
  margin-top: 20px;

  /* use text shadow layers for red glow effect */
  text-shadow:
    0 0 5px rgba(255, 0, 0, 0.789),
    0 0 15px rgba(255, 0, 0, 0.804),
    0 0 25px rgba(255, 0, 0, 0.77);
}

/*-------------------------------------------------------------------------------------------------------------*/
/*                                         SOCIAL MEDIA LINKS / ICONS                                          */
/*-------------------------------------------------------------------------------------------------------------*/

.logo-container 
{
  display: flex;
  flex-direction: column;               /* stack logo and icons vertically */
  align-items: center;                  /* center horizontally */
  z-index: 1;
  position: relative;
}

.social-icons 
{
  margin-top: 20px;                     /* space between welcome cat and icons */
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.social-icons img 
{
   width: 128px;
  height: 128px;
  transition: transform 0.2s;
}

.social-icons img:hover 
{
  transform: scale(2);
}

/*-------------------------------------------------------------------------------------------------------------*/
/*                                              PARAGRAPH TEXT                                                 */
/*-------------------------------------------------------------------------------------------------------------*/

h2 
{
  color: rgb(208, 17, 17);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  margin-top: 40px;

  /* use text shadow layers for red glow effect */
  text-shadow:
    0 0 5px rgba(255, 0, 0, 0.789),
    0 0 15px rgba(255, 0, 0, 0.804),
    0 0 25px rgba(255, 0, 0, 0.77);
}

p 
{
  text-align: center;
  max-width: 800px; 
  margin: 10px auto 40px auto;
  line-height: 1.6;
  color: #ddd; 
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
}

.game-list 
{
  list-style-type: none;      
  padding: 0;
  margin: 10px auto 40px auto;
  max-width: 800px;
  text-align: center;
  color: #ddd;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
}

.game-list li 
{
   margin: 6px 0;              
}

/*-------------------------------------------------------------------------------------------------------------*/
/*                                             SECTION DIVIDER                                                 */
/*-------------------------------------------------------------------------------------------------------------*/

.section-divider 
  {
  width: 100%;
  height: 20px;
  margin: 60px 0 60px 0;
  background: rgb(2, 26, 246);
  filter: blur(20px);

  /* use box shadow layers for blue glow effect */
  box-shadow:
    0 0 5px rgba(17, 75, 175, 0.748),
    0 0 15px rgba(17, 75, 175, 0.748),
    0 0 25px rgba(17, 75, 175, 0.748),
}

h2.section-title 
{
  color: rgb(2, 26, 246);       
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-size: 64px;              
  margin: 0;                    

  /* use text shadow layers for blue glow effect */
  text-shadow:
    0 0 5px rgba(17, 75, 175, 0.748),
    0 0 15px rgba(17, 75, 175, 0.748),
    0 0 25px rgba(17, 75, 175, 0.748);
}

.nav-divider
{
  width: 100%;
  height: 20px;
  margin: 60px 0 60px 0;
  background: rgb(208, 17, 17);
  filter: blur(20px);

  /* use box shadow layers for red glow effect */
  box-shadow:
    0 0 5px rgba(255, 0, 0, 0.75),
    0 0 15px rgba(255, 0, 0, 0.75),
    0 0 25px rgba(255, 0, 0, 0.75);
}

/*-------------------------------------------------------------------------------------------------------------*/
/*                                                GAME IMAGE                                                   */
/*-------------------------------------------------------------------------------------------------------------*/

.game-img 
{
  margin-top: 50px;
  width: 100%;                  
  max-width: 800px;             
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;

  /* use box shadow layers for blue glow effect */
  box-shadow:
    0 0 10px rgb(0, 21, 255),
    0 0 20px rgb(25, 0, 255);
}