﻿/* Import Google Fonts (Lato) */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/* Basic Reset and Body Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif; /* Clean sans-serif font */
    background-color: #808080; /* White background */
    color: #FFFDD0; /* Black text */
    line-height: 1.6;
    padding: 20px; /* Add some space around edges */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); 
    /* 2px right, 2px down, 4px blur, 40% black shadow */
}

/* Centered Title */
.main-title {
    font-family: 'Gorditas', cursive; /* Apply Gorditas font HERE */
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 4.0em;  /* Adjust size for Gorditas if needed */
    font-weight: 700; /* Use the bold weight of Gorditas */
    letter-spacing: 1px;
    color: #FFFDD0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); 
    /* 2px right, 2px down, 4px blur, 40% black shadow */
}



/* Two-Column Wrapper */
.content-wrapper {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    max-width: 1000px; /* Max width of content area */
    margin: 0 auto; /* Center the content area */
    gap: 40px; /* Space between columns */
    align-items: flex-start; /* Align columns to their tops */
}

/* Left Column (Text Content) */
.left-column {
    flex: 1; /* Takes up remaining space */
    min-width: 300px; /* Minimum width before wrapping */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
}

/* Right Column (Image) */
.right-column {
    flex-basis: 35%; /* Suggested starting width */
    min-width: 280px;
    max-width: 400px; /* Max width for image column */
}

/* Text Elements Styling */
.bio {
    margin-bottom: 25px;
    text-align: center;
}

.community-intro {
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.closing-text {
    margin-top: 20px; /* Space above closing text */
    margin-bottom: 30px;
    text-align: center;
}

/* Links Section - Styling for Custom Icons */
.links-section {
    margin-bottom: 20px;
    text-align: center;
}

.links-section a {
    display: inline-block; /* Treat link like an inline block */
    margin-right: 15px; /* Space between icons */
    text-decoration: none;
    transition: opacity 0.3s ease; /* Smooth hover effect */
}

.links-section a:last-child {
    margin-right: 0; /* Remove margin from the last icon */
}

.links-section a:hover {
    opacity: 0.7; /* Make slightly transparent on hover */
}

/* Styling for the custom icon images */
.custom-icon {
    width: 100px; /* Set desired width */
    height: 100px; /* Set desired height */
    vertical-align: middle; /* Align nicely */
}
/* End of Links Section Styling */


/* Footer Section */
.footer-section {
    margin-top: auto; /* Pushes footer to bottom of left column */
    padding-top: 20px;
    border-top: 1px solid #eee; /* Subtle separator line */
    text-align: center;
    font-size: 0.9em;
}

.footer-title {
    margin-right: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.email-link {
    color: #FFFDD0;
    text-decoration: underline;
    font-weight: 700;
}

.email-link:hover {
    color: #555;
}

/* Image Styling */
.placeholder-image {
    width: 300px; /* Set a specific width */
    height: 300px; /* Match height to width for a circle */
    object-fit: cover; /* Crop/scale image to fill the circle */
    border-radius: 50%; /* Make it a circle */
    display: block;
    margin: 0 auto; /* Center the image */
    /* optional: */
    /* border: 2px solid #ccc;  add a border */
}

/* Responsive Adjustments for Smaller Screens */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center items when stacked */
        gap: 30px; /* Adjust gap for stacked layout */
    }

    .left-column {
        order: 2; /* Display text below image on mobile */
        align-items: center; /* Center text elements within column */
        text-align: center; /* Center align all text */
        min-width: 100%;
    }

    .right-column {
        order: 1; /* Display image above text on mobile */
        flex-basis: auto; /* Reset basis */
        width: 80%; /* Adjust width */
        max-width: 400px; /* Consistent max width */
    }

    /* Ensure text elements are centered on mobile */
    .bio,
    .community-intro,
    .closing-text,
    .links-section,
    .footer-section {
        text-align: center;
    }

    /* Adjust icon link spacing for centered layout on mobile */
    .links-section a {
        margin: 0 8px; /* Adjust horizontal margin for mobile */
    }

    .main-title {
        font-size: 2.2em; /* Slightly smaller title */
    }
}
