/* Extra Styles for pages */


/* Index Extra Styles */
/* The Welcome content container on the index page */
.welcomeContentContainer {
    color: Black;
    background: rgba(255,255,255,0.9);
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

/* The Button that allows users to explore the site */
.exploreBtn {
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    margin-top: 20px;
}

/* The Hover style for the explore button */
.exploreBtn:hover {
    background-color: #666;
    transform: scale(1.05);
}


/* About Me Extra Styles */
/* Override content container's size */
.aboutMe {
    width: 980px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

/* Main title section with headshot and brief intro */
.heroSection {
    display: flex;         
    justify-content: space-between;
    max-width: 900px;
    margin: 20px auto; 
    gap: 20px;
} 

/* TextBox padding and line spacing in Hero Section */
.heroSection .textBox {
    padding: 15px; 
    line-height: 1.6;
    width: 900px;
    height: auto; 
    position: relative; 
    margin-bottom: 0px;
}

/* Main heading spacing */
.heroSection .textBox h2 {
    margin-bottom: 10px;
}

/* Subheading spacing and color */
.heroSection .textBox h3 {
    margin-bottom: 10px;
    color: #c7c7ff;
}

/* Paragraph spacing in TextBox */
.heroSection .textBox p {
    margin-bottom: 12px;
}

/* Baby logo in the hero section */
.heroBabyLogo {
    position: absolute;
    bottom: 10px;
    border-radius: 50%;
    right: 10px;
    width: 200px;      
    opacity: 0.9; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Headshot container */
.headshotContainer {
    flex: 0 0 250px;    
}

/* The image inside Headshot container */
.headshotContainer img {
    width: 100%;          
    height: auto;         
    border-radius: 12px;
    object-fit: cover;
    display: block;       
}

/* Why Should you Choose Me? */
.whySection {
    max-width: 900px;
    margin: 20px auto; 
} 

/* why Section specific styling for textboxes */
.whySection .textBox {
    margin-bottom: 0px;
}

/* My Story and My Plans for Macias Web Forge */
.story-futureSection {
    display: flex;          
    align-items: stretch;  
    justify-content: space-between;
    max-width: 900px;
    margin: 20px auto; 
    gap: 20px;  
}  

/* story-future Section specific styling for textboxes */
.story-futureSection .textBox {
    margin: 5px;
    flex: 1; 
    margin-bottom: 0px;
}

/* story-future Section specific styling for paragraphs in textboxes */
.story-futureSection .textBox p {
    padding: 5px 0; 
}


/* Contact Extra Styles */
/* Contains the contact methods in an invisible container */
.contactOptionsContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Styling the links inside the Contact Options Container */
.contactOptionsContainer a {
    color: #add8e6; 
    text-decoration: underline;
    font-style: italic;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Styling the links inside the Contact Options Container once hovered over.*/
.contactOptionsContainer a:hover {
    transform: scale(1.05);
    background-color: #333;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
}

.contactOptionsContainer .textBox {
    max-width: 800px;
}

