
/* -------- Default Style Sheet parameters created 06-24-26 --------- */

/* --------------------------------------------------
   1. Base Reset / Global Defaults
-------------------------------------------------- */

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;
}

/* --------------------------------------------------
   2. Layout Helpers  (! I have not defined or used .container class yet)
-------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: wheat;
    padding: 0;
}

/* --------------------------------------------------
   4. Hero Section (matches your WP behavior)
-------------------------------------------------- */
.hero {
    position: relative;
    height: 50vh; /* adjust to taste */
    background: url("/images/WP_Hero1.png") center center no-repeat;
    background-size: cover;
    text-align: left;
    display: block;
}

/* Optional dark overlay 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: relative;
    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;
}

.hero-about {
    display: flex;
    flex-direction: column;
    justify-content: space-between;    
}

.about-us {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    margin: 0;
    padding: 10px 0 40px 0; /* add padding to shift text Down */
}


/* --------------------------------------------------
   5. The body text Section
-------------------------------------------------- */
.text-container {
    width: 100%;
    /* max-width: 1200px; */
    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;
}


/* --------------------------------------------------
   6. Typography Tweaks
-------------------------------------------------- */
h1 {
    font-size: 3rem;
    font-weight: 700;
}

p {
    font-size: 1.25rem;
}

/* ---------------------------------------------------------
   7. Footer    (! I am doing my footer styling in its file)
--------------------------------------------------------- */
/* footer {
    text-align: center;
    padding: 20px;
    color: #ccc;
} */

