
/* ------ Style Sheet for index and about pages created 06-24-26 Rev: 09-11-26 ------- */

/* Base Reset / Global Defaults */
html, body {
    margin: 0;  /* This removes the browsers default 8px margin to get rounded corners */
    padding: 0;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: black;
    background-color: antiquewhite; /* fallback if image fails */
    line-height: 1.5;
}

.page-wrapper {
    width: 100%;
    margin-top: 30px;   /* Needed because Nav bar height is 30px */
    min-width: 850px;
}

/* Begin Hero Section styling */
.hero {
    position: relative;
    height: 55vh; /* adjust to taste */
    min-height: 500px;
    background: url("/images/WP_Hero1.png") center center no-repeat;
    background-size: cover;
    text-align: left;
    display: block;
}

/* Dark overlay of hero section for readability */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

/* The horizontal line container */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;   /* vertically center the <p> with the <h1> */
    gap: 10px;             /* space between the two */
    color: white;
}

/* Large serif headline */
.hero-content h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.0rem;
    font-weight: 100;
    margin: 0;
    line-height: 1;         /* keeps the serif text tight */
    padding-top: 20px;      /* Position from top left corner */
    padding-bottom: 20px;   /* Top and bottom padding equal for center align of <p> */
    padding-left: 40px;
}

/* Smaller sans-serif subtitle */
.hero-content p {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 350;
    margin: 0;
    line-height: 1;        /* aligns better with the <h1> baseline */
}

.take-liberty {
    position: absolute;
    margin: 0;
    padding: 0;
    bottom: 8vh;
    z-index: 2;
    color: white;
}

/* Large serif headline */
.take-liberty h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 6.0rem;
    font-weight: 150;
    margin: 0;
    line-height: 1;         /* keeps the serif text tight */
    padding-left: 40px;     /* Position text */
    padding-top: 125px;
}

/* Smaller sans-serif subtitle */
.take-liberty p {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 350;
    margin: 0;
    line-height: 1;         /* aligns better with the <h1> baseline */
    padding-left: 40px;     /* Position text */
    padding-top: 15px;
    padding-right: 5px;
}

.hero-about {
    position: relative;
    height: 100%;
}

.about-us {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0;
    margin: 0;
    color: white;
    z-index: 2;
}

.about-us h1 {
    margin: 0;
    padding: 0;
}

/* Begin The body text Section styling */
.text-container {
    width: 100%;
    margin: 0 auto;
    background-color: wheat;
    padding: 0;
}

.GROK-meaning {
    width: 80%;
    margin: 0 auto;      /* centers the block itself */
    text-align: left;    /* left align the text */
    padding: 0;
}

.GROK-meaning h2 {
    margin-top: 0;
    padding-top: 20px;
    font-size: 1.25rem;
    font-weight: 700;
}

.GROK-meaning p:last-child {
    margin-bottom: 0;
    padding-bottom: 20px;
}

.page-content{
    width: 80%;
    margin: 0 auto;      /* centers the block itself */
    text-align: left;    /* left align the text */
    padding: 0;
}

.page-content h2 {
    margin-top: 0;
    padding-top: 20px;
    font-size: 1.25rem;
    font-weight: 700;
}

.page-content p:last-child {
    margin-bottom: 0;
    padding-bottom: 20px;
}

.page-content p:first-child {
    margin-top: 0;
    padding-top: 30px;
}

/* General Typography Tweaks */
h1 {
    font-size: 3rem;
    font-weight: 700;
}

p {
    font-size: 1.25rem;
}


