


/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Ensure all main sections don't exceed the viewport width */
* {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Body styling */
body {
    font-family: 'Palatino Linotype', Palatino, serif;
  
    background-color: #f1e2d7;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Global media query for heading sizes */
@media (max-width: 768px) {
    h1, h2, h3 {
        font-size: 1.1em; /* Adjust general heading sizes */
    }
    p {
        font-size: 1em; /* Reduce paragraph text for readability */
    }
}


/* Logo Styling */
header .logo img {
    width: 150px;
}


/* Navigation Styling */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end; /* Right-aligns the navigation */
    width: 100%; /* Ensure it takes up the full width */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: #8513a5;
    transform: scale(1.3);
}

/* Add the hamburger menu styles here */
.hamburger {
    display: none;
}
.hamburger {
    position: absolute; /* Position within header */
    right: 20px; /* Align to the right within the viewport */
    top: 20px;
    z-index: 1000; /* Keep it above other elements */
}

/* Styles for the navigation links in the dropdown */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Hide by default on smaller screens */
        flex-direction: column; /* Stack items vertically */
        background-color: #c5b19f; /* Background color for visibility */
        
        z-index: 1000; /* Ensure it appears above other content */
        max-height: 80vh; /* Limit height to prevent excessive scrolling */
        overflow-y: auto; /* Enable scrolling within the menu if it overflows */
    }

    nav ul.active {
        display: flex; /* Show the menu when active */
    }

    nav ul li {
        margin: 10px 0; /* Space between each item */
    }

    nav ul li a {
        color: #333; /* Ensure text is visible */
        font-size: 1.2em;
        text-align: center;
        display: block;
        padding: 10px;
        text-decoration: none;
    }

    nav ul li a:hover {
        color: #8513a5; /* Hover effect for feedback */
    }
}



@media (max-width: 768px) {
    .hamburger {
        display: block; /* Show hamburger icon on small screens */
        cursor: pointer;
        font-size: 1.5em;
        color: #333; /* Adjust to match your theme */
        position: relative;
        z-index: 1000; /* Ensure it’s above other elements */
        padding: 10px;
    }
}





/* Sticky header styling (continues) */
.sticky-header {
    position: fixed;
    display: flex;
    top: 0;
    width: 100%;
    background-color: #c5b19f;
    z-index: 999;   /* Ensure it’s above other content */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px; 
    flex-wrap: wrap; /* Allow wrapping */
    padding: 10px 20px;
}

/* Header Resizing for Smaller Screens */
@media (max-width: 768px) {
    .sticky-header {
        flex-direction: column;  /* Stack items vertically on mobile */
        align-items: flex-start;  /* Align items to the left */
        flex-wrap: wrap; /* Allow items to stack */
        padding: 10px 15px; /* Adjust padding */
    }

    .logo img {
        width: 120px; /* Shrink the logo */
    }

    .hamburger {
        
        position: absolute; /* Position hamburger icon */
        right: 20px; /* Align to the right */
        top: 20px; /* Adjust placement */
        z-index: 1000; /* Ensure it's above other elements */
    }

    nav {
        width: 100%; /* Make nav full width */
    }

    
}
/* Header Styling
header {
    background-color: #c5b19f;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}*/


/* For smaller screens, add padding below the sticky header */
@media (max-width: 768px) {
    body {
        padding-top: 100px; /* Adjust to match the sticky header height */
    }

    .sticky-header {
        flex-wrap: wrap; /* Allow logo and menu to stack */
        justify-content: center; /* Center-align items */
    }

    .logo img {
        width: 120px; /* Reduce logo size on smaller screens */
    }
}

/* Adds padding to avoid content hiding under the sticky header */
body {
    padding-top: 80px; /* Adjust based on the height of the sticky header */
}

/* Styling for the header image */
.header-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -80px; /* Optional: aligns with the sticky header */
}


/* Optional: Adjust for smaller screens */
@media (max-width: 768px) {
    .header-image {
        height: auto;
        margin-top: 0;  /*Remove any negative margins */
        background-size: contain; /* Scale to fit within screen */
        background-position: center;
    }
}


/* Adjust text scaling in the hero section */
.full-width-section h1 {
    font-size: 2em; /* Adjust large text for mobile */
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .full-width-section h1 {
        font-size: 1.5em; /* Reduce text size on mobile */
    }
}

/* Drill Box Styles */
.drill-box {
    background-color: #c49dc2;
    border: 4px solid rgb(102, 3, 106);
    padding: 20px;
    margin: 20px auto;
    max-width: 70%;
    font-family: 'Georgia', serif;
}

@media (max-width: 768px) {
    .drill-box {
        width: 90%;
        padding: 15px;
        font-size: 1em;
    }

    .drill-box p, .drill-box ul, .drill-box button {
        font-size: 1em;
    }

    .drill-box h2 {
        font-size: 1.5em;
    }
}

/* Section and Title Spacing */
.drill-box p {
    margin-bottom: 20px;
}

.drill-box h2 {
    text-align: center;
    font-weight: bold;
    font-size: 1.8em;
}

/* Feedback Message Styling */
.feedback-msg {
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
    font-family: 'Georgia', serif;
}

.feedback-msg.correct {
    color: green;
}

.feedback-msg.incorrect {
    color: red;
}

/* List Styling */
.drill-box ul {
    list-style-type: none;
    padding: 0;
}

.drill-box ul li {
    margin-bottom: 10px;
}

/* Button Container */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the Submit button */
    margin-top: 20px;
}

/* Submit Button */
.submit-btn {
    padding: 10px 20px;
    background-color: #12dc2d; /* Green background */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #a50ed7;
}

/* Feedback message */
.feedback-msg {
    font-weight: bold;
    margin-top: 10px; /* Space above the feedback */
    margin-bottom: 100px; /* Increase space below the feedback */
    text-align: center;
    font-size: 1.2em;
    transition: color 0.3s ease;
}


/* Button for practicing on an LLM */
.llm-btn {
    display: inline-block; /* Makes the link behave like a button */
    padding: 10px 20px;
    background-color: #6a0787; /* plum background */
    color: white; /* White text */
    text-align: center;
    text-decoration: none; /* Remove underline */
    border: 2px solid #c5b19f;
    margin-left: 10px; /* Adds space between the buttons */
    cursor: pointer;
    font-family: 'Georgia', serif;
}
/* Container to align the LLM button to the right */
.llm-btn-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px; /* Adds spacing above if needed */
}

/* Ensure the button itself maintains its current styling */
.llm-btn {
    display: inline-block; /* Ensures it's still styled as a button */
}

.llm-btn:hover {
    background-color: #e40be8; /* Darker on hover */
    border-color: #6a0787;
}


/* Input Styles */
input[type="radio"] {
    margin-right: 10px;
}



/* Styling for the LLM list box */
.llm-box {
    background-color: #fcf7fb; /* Light background color */
    border: 2px solid #6a0787; /* Dark border */
    padding: 30px; /* Padding inside the box */
    width: 60%; /* Set a fixed width for the box */
    margin: 100px auto; /* Center the box horizontally and add space from the top */
    text-align: center; /* Center-align the text */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

/* Style the links inside the list */
.llm-box ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
}

.llm-box ul li {
    margin-bottom: 20px; /* Adds blank space between each LLM */
}

.llm-box ul li a {
    font-size: 1.2em; /* Slightly larger font for the links */
    text-decoration: none; /* Remove underline */
    color: #6a0787; /* Plum color for links */
}

.llm-box ul li a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Style for heading and paragraph */
.llm-box h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.llm-box p {
    margin-bottom: 30px;
}


/* Full-width section for AI workshop introduction */
.full-width-section {
    width: 100%;
    background-color: #6a0787; /* Dark plum background */
    padding: 40px 20px;
    box-sizing: border-box;
    text-align: center;
    border: 2px solid #6a0787;
    margin: 40px 0;
    color: white; /* Set the default text color to white */
}

/* Container for content to limit the width */
.full-width-section .content-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Headline text styling with more spacing */
.full-width-section h1 {
    font-family: 'Palatino Linotype', Palatino, serif;
    font-size: 2em;
    color: white; /* White headline text */
    margin-top: 50px; /* Adds space before the headline */
    margin-bottom: 100px; /* Adds space between the headline and the paragraphs */
}

/* Flex container for two columns */
.columns {
    display: flex;
    justify-content: space-between; /* Adds space between the columns */
    gap: 80px; /* Adds space between the two columns */
}

/* Styling for the paragraph text inside the columns */
.columns p {
    flex: 1; /* Each paragraph takes equal space */
    font-size: 1.2em;
    color: white; /* White paragraph text */
    line-height: 1.6;
    margin-bottom: 50px; /* Adds space at the bottom of the paragraphs */
    text-align: justify; /* Justifies the text, making it align left and right */
}

/* Adjust layout for smaller screens */
@media (max-width: 768px) {
    .columns {
        flex-direction: column; /* Stacks paragraphs vertically on smaller screens */
    }
}


/* Workshop Section */
.workshops-section {
    position: relative; /* Context for layout */
    background-image: url('../images/workshopbackground.png'); /* Background image */
    background-size: cover; /* Stretch image to fill section */
    background-position: center; /* Center the background */
    height: 125vh; /* Adjust height as needed */
    display: flex; /* Enables flexbox for the section */
    justify-content: center; /* Center content horizontally */
    color: #fff; /* Text color for visibility */
}

/* Workshops Container */
.workshops-container {
    display: flex; /* Enables Flexbox layout */
    flex-direction: column; /* Stacks buttons vertically */
    justify-content: flex-start; /* Align items to the top */
    align-items: flex-start; /* Align items to the left by default */
    width: 100%; /* Full width of the section */
    max-width: 1200px; /* Restrict width to avoid stretching too much */
    height: 100%; /* Fill the height of the section */
    padding: 10%; /* Adds spacing around the content */
}

/* Shared Button Styling */
.workshop-btn {
    font-family: 'Orbitron', sans-serif; /* Futuristic font */
    font-size: 1.2em; /* Font size for readability */
    padding: 20px 50px; /* Button size */
    background-color: #4b0082; /* Button background color */
    color: white; /* Text color */
    text-decoration: none; /* Remove text underline */
    border-radius: 10px; /* Rounded corners */
    transition: transform 0.2s ease; /* Smooth hover animation */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Adds a subtle shadow */
    letter-spacing: 1.9px; /* Adds space between letters */
    margin: 50px 0; /* Adds vertical spacing between buttons */
}

/* Hover Effect for All Buttons */
.workshop-btn:hover {
    transform: scale(1.1); /* Slightly enlarge button on hover */
    background-color: #6a0787; /* Change background on hover */
}

/* Staggered Button Positioning */
#btn-walk-run {
    align-self: flex-start; /* Align to the left (default for flex-start) */
    margin-left: 20%; /* Push slightly toward the right */
}

#btn-intro {
    align-self: flex-end; /* Align to the right */
    margin-right: 15%; /* Push inward from the right */
}

#btn-advanced {
    align-self: center; /* Center this button horizontally */
    margin-left: 45%; /* Push slightly toward the right for stagger effect */
}

@media (max-width: 768px) {
    .workshops-container {
        align-items: center; /* Center all buttons on smaller screens */
        background-size: contain; /* Ensure the entire image fits within the section */
        background-position: top; /* Align the image to the top */
        height: auto; /* Let the height adjust naturally based on content */
    
    }
    
    .workshop-btn {
        margin-left: 0; /* Remove horizontal staggering */
        margin-right: 0;
        width: 80%; /* Reduce button width for small screens */
    }
}


footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

/* --- About Us: Team Section Styling --- */
#about {
    padding: 40px;
    text-align: center;
    font-size: 1.2em;
    color: #6a0787; /* Dark purple color for the headline */
    margin-bottom: 50px;
    font-family: 'Cormorant', serif;    /* Cormorant for an elegant look */
}

/* Frame for the Team Section */
.team-frame {
    display: flex;
    justify-content: space-around;
    border: 4px double #6a0787; /* Dark purple color with a double line */
    padding: 100px;
    margin: 60px auto; /* Adds space under the bio headline */
    max-width: 1000px; /* Adjust width as desired */
    background-color: #f7f3f7; /* Optional light background */
    flex-wrap: wrap; /* Allow wrapping of content */
}

/* Team Member Styling */
.team-member {
    text-align: center;
    width: 45%; /* Each member takes up roughly half the frame */
    box-sizing: border-box;
}

.team-member img {
    width: 100%; /* Image will adjust to the column width */
    max-width: 150px; /* Adjust max width as needed */
    border-radius: 8px; /* Optional: add rounded corners to images */
    margin-bottom: 50px;
}

.team-member p {
    font-weight: medium;
    font-size: 1em;
    color: #470251;
}

/* Styling for team member bios */
.bio {
    font-size: 0.8em;
    color: #555; /* Slightly darker color for readability */
    margin-top: 20px; /* Space between the name and bio */
    line-height: 1.6;
}

/* Adjust layout for smaller screens */
@media (max-width: 768px) {
    .team-frame {
        flex-direction: column; /* Stack team members vertically */
        padding: 20px; /* Reduce padding for smaller screens */
    }

    .team-member {
        width: 100%; /* Full width for each team member */
        margin-bottom: 40px; /* Add spacing between stacked members */
    }

    .team-member img {
        max-width: 120px; /* Smaller image size on mobile */
    }
}


/* JCTM Team Photo Section Styling */
#jctm-team {
    text-align: center;
    margin: 60px auto; /* Space above and below */
}

#jctm-team h2 {
    font-size: 2em;
    color: #6a0787; /* Dark purple color for the headline */
    font-family: 'Georgia', serif;
    margin-top: 100px;
    margin-bottom: 100px; /* Space between headline and image */
}

.team-photo {
    width: 90%; /* Adjust width to your preference */
    max-width: 1000px; /* Sets a maximum width */
    border-radius: 8px; /* Optional: adds rounded corners */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
}


/* About Us Banner Section Styling */
.banner {
    width: 100vw;               /* Full viewport width */
    text-align: center;          /* Center content within the banner */
    /* margin: 40px 0 20px 0px;    Adds 40px of space above and 20px below the banner */
    padding: 0;                  /* Remove padding to prevent extra space */
    overflow: hidden; /* Prevent horizontal overflow */
    display: flex;
    justify-content: center; /* Center content */
    margin: 0; /* Remove any default margins */
}

.banner-image {
    width: 100%;             /* Image spans the full width of the banner */
    height: auto;            /* Maintain aspect ratio */
    display: block;          /* Removes any extra space at the sides of the image */
}


/* Walk Run Workshop Background */
#walk-run-workshop {
    display: flex;
    align-items: center; /* Vertically centers content in the section */
    height: 100vh; /* Full viewport height */
    background-image: url('../images/WalkRunbackground.png'); /* Adjust path if needed */
    background-size: cover;
    background-position: right center; /* Position background on the right */
}
@media (max-width: 768px) {
    #walk-run-workshop {
        background-size: contain; /* Ensure the entire image fits within the section */
        background-position: top; /* Align the image to the top */
        height: auto;
}
}

/* Intro to Prompt Engineering Workshop Background */
#intro-prompt-workshop {
    display: flex;
    align-items: center; /* Vertically centers content in the section */
    height: 100vh; /* Full viewport height */
    background-image: url('../images/introbackground.png'); /* Adjust path if needed */
    background-size: cover;
    background-position: right center; /* Position background on the right */
}
@media (max-width: 768px) {
    #intro-prompt-workshop {
        background-size: contain; /* Ensure the entire image fits within the section */
        background-position: top; /* Align the image to the top */
        height: auto;
}
}
/* Advanced Prompt Engineering Workshop Background */
#advanced-prompt-workshop {
    display: flex;
    align-items: center; /* Vertically centers content in the section */
    height: 100vh; /* Full viewport height */
    background-image: url('../images/advancedbackground.png'); /* Adjust path if needed */
    background-size: cover;
    background-position: right center; /* Position background on the right */
}
@media (max-width: 768px) {
    #advanced-prompt-workshop {
        background-size: contain; /* Ensure the entire image fits within the section */
        background-position: top; /* Align the image to the top */
        height: auto;
}
}

/* Workshop Content Styling */
.workshop-content {
    width: 50%; /* Limit content to the left half */
    padding: 20px;
    color: white;
    text-align: center;
    margin-left: 5%; /* Add left margin for spacing */
}

.workshop-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.workshop-content h2 {
    font-size: 1.8em;
    margin-bottom: 40px;
}

.workshop-content p {
    margin-top: 80px;
    font-size: 1.2em;
    line-height: 1.5;
}


@media (max-width: 768px) {
    .workshop-content p, .workshop-content ul, .workshop-content button {
        font-size: 1em;
    }
    .workshop-content h1 {
        font-size: 1.1em;
    }
    .workshop-content h2 {
        font-size: 1.1em;
    }
}

/* Styles for the request-training button */
/* Container for absolute positioning */
.request-training-section {
    position: relative; /* Sets the base for absolute positioning */
}

/* CSS for the button positioned at the bottom right */
.request-training-button {
    position: absolute;
    bottom: 75px; /* Distance from the bottom of the container */
    left: 315px; /* Distance from the left side of the container */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    color: #ffffff;
    background: linear-gradient(45deg, #6a00f4, #d600f4);
}
/* Hover effect for the request-training-button */
.request-training-button:hover {
    background-color: #165ea5; /* Darker color on hover */
}

@media (max-width: 768px) {
      .request-training-button {
        position: static;
        width: 50%; /* Reduce button width for small screens */
    }
}



/* Center align all text in the blog section and add spacing */
.blog-section {
    padding: 40px;
    text-align: center;
    font-family: 'Cormorant', serif;    /* Cormorant for an elegant look */
    font-weight: lighter;
    color: #333;
    background-color: #f4ede7;
}

.blog-section h1 {
    font-size: 2.5em;
    color: #18011f; /* Dark purple */
    margin-bottom: 10px;
}

/* Blog Post Container */
.blog-post {
    margin: 30px auto;
    padding: 20px 30px;
    border-bottom: 1px solid #ccc;
    max-width: 800px;
    font-family: 'Cormorant', serif;    /* Cormorant for an elegant look */
    text-align: left;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

/* Headings */
.blog-post h2 {
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 15px;
    color: #470251;
}

.blog-post h3 {
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #470251;
}

/* Paragraphs */
.blog-post p {
    font-family: 'Cormorant', serif;    /* Cormorant for an elegant look */
    margin-bottom: 1.2em;
}

/* Lists */
.blog-post ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 1.2em;
}

.blog-post li {
    margin-bottom: 8px;
}

/* Blockquotes */
.blog-post blockquote {
    background-color: #f4ede7;
    border-left: 4px solid #470251;
    margin: 20px 0;
    padding: 10px 20px;
    font-style: italic;
    color: #555555;
}

/* Author and Date */
.blog-post .post-date, .blog-post .author {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 15px;
    text-align: left;
}

/* Bold and Italic */
strong {
    font-weight: bold;
}
em {
    font-style: italic;
}

/* Lists */
ul {
    padding-left: 20px;
}
li {
    margin-bottom: 5px;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid #470251;
    padding-left: 15px;
    margin: 20px 0;
    color: #555;
}

/* Code Blocks */
pre {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
}
code {
    font-family: monospace;
    background-color: #f4f4f4;
    padding: 2px 4px;
    border-radius: 3px;
}


/* Blog Post Content Layout */
.search-container {
    text-align: right;
    padding: 10px 20px;
    margin-top: 10px;
}

.search-input {
    padding: 5px;
    font-size: 1em;
    margin-right: 5px;
}

.search-button {
    padding: 5px 10px;
    background-color: #6a0787; /* Dark purple */
    color: white;
    border: none;
    cursor: pointer;
}
.highlight {
    background-color: #fffbcc; /* Light yellow background */
    border: 2px solid #ffc107; /* Yellow border */
    padding: 5px;
    border-radius: 5px;
}


.blog-heading {
    font-size: 2.5em;
    text-align: center;
    color: #18011f;
    margin-top: 20px;
    margin-bottom: 100px;
}

.blog-subheading {
    font-size: 1.5em;
    text-align: center;
    color: #555555;
    margin-top: 20px;
    margin-bottom: 20px
}

.author-date {
    text-align: left;
    font-size: 0.9em;
    color: #999;
    margin: 0 auto;
}

.post-content {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}




/* Blog Post Content Styling */
.blog-post-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 30px;
    font-family: 'Cormorant', serif;
    font-weight: lighter;
    background-color: #fbfbfb;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    color: #333;
}

/* Blog Title */
.blog-post-content h1 {
    font-size: 2.8em;
    color: #4a026f;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    font-weight: lighter;
    letter-spacing: 0.7px; /* Adds subtle space between letters */
}

/* Date and Author Info */
.blog-post-content .post-date,
.blog-post-content .author {
    font-size: 1em;
    color: #777;
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
    letter-spacing: 0.3px; /* Slightly spaced out for clarity */
}

/* Main Content */
.blog-post-content .post-content {
    font-size: 1.15em;
    line-height: 1.75;
    color: #444;
    text-align: left;
    letter-spacing: 0.2px; /* Subtle spacing for body text readability */
}

/* Blog Post Subheadings */
.blog-post-content h2 {
    font-family: 'Raleway';
    font-weight: lighter;
    font-size: 1.4em;
    margin-top: 30px;
    color: #6a0787;
    /* margin-bottom: 15px; */
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 5px;
    letter-spacing: 0.4px; /* Slightly spaced for better emphasis */
}

/* Lists */
.blog-post-content ul {
    margin-bottom: 20px;
    font-family: 'Cormorant', serif;
    letter-spacing: 0.4px; /* Consistent subtle spacing */
}
/* Paragraph Styling */
.blog-post-content p {
    font-size: 1.15em;
    line-height: 1.6; /* Increased line height for better readability */
    color: #444;
    margin-bottom: 20px; /* Space between paragraphs */
    font-family: 'Cormorant', serif;
    text-align: match-parent;
    letter-spacing: 0.2px;
}


.blog-post-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-top: 10px;
}

/* Blockquotes */
.blog-post-content blockquote {
    
    font-size: 1.15em;
    line-height: 1.5; /* Increased line height for better readability */
    color: #555;
    border-left: 4px solid #d0c6e0;
    padding-left: 20px;
    margin: 20px 0;
    background-color: #f9f6fc;
    padding: 15px;
    border-radius: 8px;
    letter-spacing: 0.3px; /* Adds openness to blockquote text */
}

/* Main Blog Section Title */
.blog-section h1 {
    font-family: 'Raleway';
    font-weight: light;
    font-size: 2.5em;
    color: #6a0787;
    margin-top: 30px;
   /* margin-bottom: 20px; */
    text-align: center;
    letter-spacing: 0.5px; /* Adds sophistication to the main title */
}

/* Improved spacing and contrast for a cohesive look */
.blog-post-content .preview-excerpt {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    letter-spacing: 0.2px; /* Consistent with main body text */
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
    margin-top: 30px;               /* Consistent space above each heading */
    margin-bottom: 15px;            /* Consistent space below each heading */
    line-height: 1.3;               /* Adjust line height for better readability */
}


/* Main Blog Section Title */
.blog-section h1 {
    font-family: 'Cormorant', serif;
    font-size: 2.5em;
    color: #6a0787;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}


/* Blog Preview Section */
#blog-previews {
    padding: 40px;
    text-align: left;
    font-family: 'Cormorant', serif;
    color: #333;
    background-color: #f4ede7;
    max-width: 800px;
    margin: 0 auto;
}

#blog-previews h2 {
    font-size: 2em;
    color: #18011f;
    margin-bottom: 20px;
    text-align: center;
}

/* Individual Blog Post Preview */
.blog-post-preview {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for separation */
    transition: transform 0.3s ease;
}

.blog-post-preview:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
}

.blog-post-preview h3 {
    font-size: 1.5em;
    color: #470251; /* Dark purple */
    margin-bottom: 8px;
}

.blog-post-preview h3 a {
    text-decoration: none;
    color: inherit;
}

.blog-post-preview h3 a:hover {
    color: #6a0787; /* Slightly lighter purple on hover */
}

.preview-date {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 15px;
}

.preview-excerpt {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

/* Optional: Add more space below the last preview */
#blog-previews .blog-post-preview:last-child {
    margin-bottom: 50px;
}


.pdf-viewer-section {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.pdf-viewer-section h1 {
    font-family: 'Cormorant', serif;    /* Cormorant for an elegant look */
    font-style: normal;
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 60px;
    color: #31033f;
}


/* Contact Banner Section Styling */
.contact-banner {
    position: relative;
    text-align: center;
    color: white;
    height: 300px; /* Adjusted height for simplicity */
    display: flex;
    flex-direction: column; /* Makes alignment flexible */
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevents content overflow */
}

.contact-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Keeps image in the background */
}

.contact-banner-content {
    position: relative;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center; /* Centers text */
}

.contact-banner h1 {
    font-size: 2em;
    margin: 0;
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #7d068a;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background: linear-gradient(45deg, #d600f4, #6a00f4);
}

/* Contact Information Section */
.contact-info-centered {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    max-width: 600px;
    background-color: #f7f3f7; /* Light background for contrast */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for effect */
}

.contact-info-centered h2 {
    font-size: 1.5em;
    color: #6a0787;
    margin-bottom: 10px;
}

.contact-info-centered p {
    margin: 10px 0;
    font-size: 1em;
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-banner {
        height: 200px; /* Shorter banner on smaller screens */
    }

    .contact-banner-content {
        padding: 10px;
    }

    .contact-info-centered {
        padding: 15px;
        max-width: 90%; /* Full width minus small margin */
    }
}

/* Style for the futuristic button */
.futuristic-button {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 15px;
    color: #ffffff;
    background: linear-gradient(45deg, #6a00f4, #d600f4);
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(108, 0, 255, 0.75);
}

/* Hover and focus effect for the button */
.futuristic-button:hover,
.futuristic-button:focus {
    background: linear-gradient(45deg, #d600f4, #6a00f4);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(108, 0, 255, 1);
    outline: none;
}

/* Add responsive scaling for smaller screens */
@media (max-width: 600px) {
    .futuristic-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}
.centered-button {
    display: inline-block; /* Prevent full-width stretching */
    margin: 30px auto; /* Center the button horizontally */
    text-align: center; /* Works with block-level containers */
    width: auto;
}

.fixed-bottom-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* Ensures it stays on top of other content */
}
.fixed-bottom-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.fixed-top-right {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}
.absolute-bottom-right {
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.absolute-top-left {
    position: absolute;
    top: 20px;
    left: 20px;
}
.inline-button {
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
}
.responsive-button {
    font-size: 14px;
    padding: 10px 20px;
}

@media (max-width: 600px) {
    .responsive-button {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* General styling for the blog post image */
.responsive-image {
    max-width: 100%; /* Makes the image scale down to fit its container */
    height: auto;    /* Maintains the image's aspect ratio */
    margin: 20px auto; /* Adds space around the image and centers it */
    display: block;  /* Ensures the image behaves like a block element */
    border-radius: 5px; /* Optional: Adds slightly rounded corners for aesthetics */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow for better contrast */
}

/* Additional styling for smaller screens */
@media screen and (max-width: 768px) {
    .responsive-image {
        max-width: 90%; /* Allows for a bit of padding on small screens */
        margin: 15px auto; /* Adjust margin for smaller screen sizes */
    }
}
