/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://ringthedamnbell.net/
 Description:  Child theme for GeneratePress
 Author:       John Kuehner
 Author URI:   https://ringthedamnbell.net/
 Template:     generatepress
 Version:      1.0.0
*/

/* Import parent theme styles */
@import url("../generatepress/style.css");

/* ======= Reset GP Containers on Home ======= */
body.home .site,
body.home .site-content,
body.home .inside-article,
body.home #primary,
body.home #main,
body.home .container,
body.home .grid-container {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* ======= Header Styles ======= */
.site-header {
    background-color: #002B5C;
    color: #fff;
    padding: 10px 20px;
    position: relative;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #ED174C;
    text-shadow: 0 0 8px #fff;
}

.social-icons a {
    display: inline-block;
    background-color: #F7F7F7;
    border-radius: 5px;
    padding: 5px;
    margin-left: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icons a img {
    width: 24px;
    height: 24px;
}

.social-icons a:hover {
    background-color: #ED174C;
    transform: scale(1.1);
}

/* ======= Hero Section ======= */
.hero {
    background: url('https://www.ringthedamnbell.net/wp-content/uploads/2025/07/front-page.png') center center no-repeat fixed;
    background-size: contain !important; /* Force no cropping */
    background-color: #002B5C; /* Fill any letterbox space */
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow: hidden;
}


.hero h1 {
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero .subheading {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.hero .btn {
    background-color: #ED174C;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.hero .btn:hover {
    background-color: #002B5C;
    transform: scale(1.05);
}

/* ======= About Section ======= */
.about {
    background: #F7F7F7;
    color: #333;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.about h2 {
    color: #ED174C;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.about .btn {
    background-color: #ED174C;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.about .btn:hover {
    background-color: #002B5C;
    transform: scale(1.05);
}

body.home {
    background: none !important;
}
