/* 
		http://meyerweb.com/eric/tools/css/reset/ 
		v2.0 | 20110126
		License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}




/* 
		That's it for the "reset".  From here on is my own code:
		"GENERAL" stuff is used for all of my sites, and
		"CUSTOM" stuff is for a specific instances...
*/




body, html {
	height: 100%;
	font-optical-sizing: auto;
}

body {
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
	line-height: 1.5;
}

b { font-weight: bold; }
i { font-style: oblique; }

p {
	margin-top: 1em; 
}

h1, h2, h3, h4 { 
	line-height: 1.3; 
	margin: 0; padding: 0;
} 

h1 { 
    font-size: 200%;
    font-weight: bold; 
    text-align: center;
    margin: 2.5em 0 1em 0;
}

h2 {
		margin-top: 1.25em;
    font-size: 200%;
    font-weight: 500;
    color: #2e3192;
}

h3 {
	font-size: 120%;
	color: #2e3192;
}

h4 {
	font-size: 100%;
	font-weight: bold;
}

hr {
	height: 0; border: none; border-top: 1px solid #ccc;
}

a:link, a:visited, a:active, a:hover {
	color: blue;  
	text-decoration: underline;
}

ul { list-style: disc; padding: 0 0 .5em 1.5em;   }
ol { list-style: decimal; padding: 0 0 .5em 1.5em;   }
li { padding: .5em .5em 0 0;   }

main {
	padding: 0;
	margin-top: -.5em;
}

button {
    background-color: #2e3192;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

button:hover {
    opacity: 0.9;
}

button:active {
    opacity: 0.8;
}

button:focus { /*
    outline: 2px solid #2e3192;
    outline-offset: 2px; */
}

div.full {
	background-color: #ddd;
	border-bottom: 1px solid #bbb;
}

div.fullest {
    background-color: #ddd;
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    padding-top: 1em;
}

div.row { 
	width: 100%;
	margin: 0;
	box-sizing: border-box;
	padding: 0;
}

.center { text-align: center;  }


	article {
		display: flex;
    flex-direction: column;
    gap: 0;
		margin-bottom: 2em;
  }

      .article-image {  width: 100%;  }
      .article-image img {  width: 100%;  }

      .article-content {
				padding: 0 20px 5px 20px;
        width: 100%;
        box-sizing: border-box;
      }	

      .article-content h2 { margin-top: .5em }


#masthead .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

			.child {
				 
      }
      
      .child:nth-child(2) {
 
       }
      
      .child:nth-child(3) {
      	padding-right: .8em;
      }

      .logo {
      	box-sizing: border-box;
      	width: 200px;
      	padding: .75em 0 .25em .8em;
      }

      .logo img { width: 100%; }

	#hero {
		margin: 1.5em 0 1em 0;
		padding: 0 1.5em;
		width: 100%;
		box-sizing: border-box;
	}

  #hero img {
  	width: 100%;
  }    

	.downloads {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2em;
      margin: 2em 0;
  }

				.downloads div {
        	text-align: center;
        }  

				.downloads div img {
        	width: 55%;
        	margin-bottom: .5em;
        }  

        .downloads a:link, .downloads a:visited, 
        .downloads a:active, .downloads a:hover {
					color: #000;  
					text-decoration: none;
					cursor: pointer; 
				}

				.downloads a:hover { text-decoration: underline; }

        .creator {
              display: flex;
              flex-direction: column;
              align-items: center;
              gap: 1em;
              margin: 2em 0 3em 0;
          }

        .creator div { text-align: center; }  

        .creator div.bio {
          margin-top: -2.5em;
          text-align: left;
          width: 80%;
          padding-left: 1em;
          font-style: oblique;
        } 

        .creator div img {
          width: 55%;
          margin-bottom: .5em;
        }  

        p#newsletter-instructions { font-weight: 500;  }  

        #ver { 
          position: absolute; font-size: 72%; color: #bbb; 
          right: 10px; bottom: 6px;
        }

/* ===== DESKTOP STYLES (1200px and up) ===== */
/* These styles override mobile styles for larger screens */

@media (min-width: 1200px) {

	div.row { 
		width: 1200px;
		margin: 0 auto;
	}

	#masthead {
		
	}

	.logo {
		width: 400px;
	}

	#hero  { display: flex; justify-content: center; margin-top: 2em; } 
	#hero img {
  	max-width: 800px;
  }  

	.downloads {
      flex-direction: row;
      justify-content: center;
      width: 100%;
  }

  .creator {
      flex-direction: row;
      justify-content: center;
      width: 80%;
  }

          .creator div:first-child {
            text-align: right;
          }

    article {
      gap: 30px;
      margin-bottom: 5em;
      flex-direction: row;
      /* background-color: pink; */
      display: flex;
    }

    .article-image {  width: 30%; padding-top: 5em; }
    .article-content { flex: 1; box-sizing:border-box; padding: 0;  }  

		article h2 { margin: 0; }
}



        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
            gap: 20px;
            max-width: 400px;
            margin: 0 auto;
            justify-items: center;
            margin: 2em auto 2em auto;
        }
        
        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: white;
            font-size: 24px;
            position: relative;
            overflow: hidden;
        }
        
        .social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        
        .facebook {
            background: linear-gradient(135deg, #1877f2, #4267B2);
        }
        
        .instagram {
            background: linear-gradient(135deg, #E4405F, #C13584, #833AB4, #F77737);
        }
        
        .twitter {
            background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
        }
        
        .youtube {
            background: linear-gradient(135deg, #FF0000, #cc0000);
        }
        
        .reddit {
            background: linear-gradient(135deg, #FF4500, #cc3700);
        }
        
        .tiktok {
            background: linear-gradient(135deg, #000000, #333333);
        }
        
        /* Responsive adjustments */
        @media (max-width: 480px) {
            .social-grid {
                grid-template-columns: repeat(3, 1fr);
                max-width: 300px;
                gap: 15px;
            }
            
            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
        }


.icon-svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .social-grid .social-icon {
    color: white;
}

.social-grid .icon-svg {
    fill: white;
}







        .newsletter-container {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        /* Mobile/tablet - full width */
        @media (max-width: 1200px) {
            .newsletter-container {
                width: 100%;
            }
        }
        
        /* Desktop - 1000px wide and centered */
        @media (min-width: 1201px) {

            p#newsletter-instructions {
              text-align: center;   
            }
            .newsletter-container {
                width: 1000px;
                margin: 0 auto;
            }
        }

        .email-input {
            flex: 1;
            padding: 10px 12px;
            border: 2px solid #ccc;
            font-size: 16px;
            outline: none;
            border-radius: 4px;
        }
        
        .email-input:focus {
            border-color: #007cba;
        }

        /* Phone adjustments */
        @media (max-width: 480px) {
            .subscribe-btn {
                padding: 12px 16px;
                font-size: 14px;
                min-width: 80px;
            }
            
            .email-input {
                font-size: 16px;
                min-width: 0;
            }
        }
        

  .fullest {
    transition: background-color 0.8s ease, box-shadow 0.8s ease;
    position: relative;
  }

  .fullest.highlighted {
      background-color: #f39ba6; 
      box-shadow: inset 0 0 20px rgba(235, 83, 93, 0.1);
      border-top-color: #eb535d;
      border-bottom-color: #eb535d;
  }

  .fullest.highlighted button { background-color: #eb535d; }
  .fullest.highlighted h2 { color: #eb535d; }
  .fullest.highlighted .email-input { border-color: #eb535d; }


.form-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.form-disabled input,
.form-disabled button,
.fullest.highlighted .form-disabled button {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}


#sponsors_grid {
    display: grid;
    grid-gap: 45px;
    grid-template-columns: repeat(auto-fill, 230px);
    margin: 3em 0 2em;
}

#sponsors_grid>* {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}


