@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');


/* Define Color Variables for consistency (Dark Purple and Vibrant Pink) */
:root {
    --dark-purple: #5500AA; 
    --vibrant-pink: #FF33CC; 
    --text-color: #333;
}

body {
    background-color: white;
    font-family: 'Oswald', sans-serif;
    color: var(--text-color);
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px 20px;
    text-align: center;   
}

.container {
    max-width: 1000px; 
    width: 100%;
    padding: 0px;
    box-sizing: border-box;
}

/* Style for the main title (e.g., "Find your purpose...") - DARK PURPLE */
.main-title {
    font-size: 3em; /* Adjusted font size */
    color: white;
    background-color: var(--dark-purple); /* Dark Purple */
    padding: 5px 5px;
    margin-bottom: 5px;
    display: inline-block; 
    text-transform: uppercase;
    font-weight: 700; /* Oswald doesn't have 900, 700 is very bold */
    letter-spacing: 2px;
    white-space: nowrap; /* Forces text onto a single line */
}

/* Style for sub-titles (e.g., "Take purposeful...") - VIBRANT PINK */
.sub-title {
    font-size: 1.8em; /* Increased font size for pink banner */
    color: white;
    background-color: var(--vibrant-pink); /* Vibrant Pink */
    padding: 5px 5px;
    margin-top: 10px;
    margin-bottom: 5px; /* Decreased bottom margin to bring contact info closer */
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700; 
    letter-spacing: 1px;
    white-space: nowrap; /* Forces text onto a single line */
}

p {
    font-family: 'Oswald', sans-serif; /* Changed to Oswald */
    font-size: 1.1em; /* Slightly larger text */
    font-weight: 400; 
    margin: 0.5em 0; /* Adjusted margin */
    color: #555; 
}

.contact-info {
    margin-top: 5px; /* Decreased top margin to bring closer */
    padding-top: 0; /* Removed padding */
    border-top: none; /* Removed the divider line */
    width: 100%; 
    margin-bottom: 0;
}

.contact-info p {
    font-weight: 700; 
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-info a {
    color: var(--dark-purple); 
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em; /* Slightly larger links */
    margin: 5px 0;
    margin-bottom: 0;
    display: block;
}

/* --- STYLES FOR BUTTONS AND HEADING --- */

/* Container for the book buttons and heading */
.action-buttons {
    margin: 5px 0;
    padding-top: 5px;
    width: 100%;
}

/* Style for the heading (Get my book for free:) */
.action-buttons h3 {
    color: var(--text-color);  
    font-size: 1.4em; 
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

/* Base style for all buttons */
.button {
    display: inline-block; 
    padding: 3px 10px;
    margin: 10px 10px; 
    color: white !important; 
    text-decoration: none; 
    font-weight: 700;
    font-size: 1.4em;
    border-radius: 10px; /* Rounded edges for all buttons */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effect */
    letter-spacing: 0.5px;
    font-family: 'Oswald', sans-serif; /* Ensure Oswald font */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Subtle shadow for depth */
}

/* Specific style for the PURPLE button (Download my book) */
.button-purple {
    background-color: var(--dark-purple); 
}

/* Specific style for the PINK button (Read my book) */
.button-pink {
    background-color: var(--vibrant-pink); 
}

/* --- Mobile Styling for Buttons --- */
@media screen and (max-width: 600px) {
    /* STACK buttons on mobile for better usability */
    .button {
        display: block; /* Forces buttons to stack vertically */
        width: 80%; /* Makes buttons full width (with some margin) */
        margin: 10px auto; /* Centers the stacked buttons */
        padding: 12px 20px;
    }
}

/* --- Media Query: Styles for Mobile Devices (screens up to 600px wide) --- */
@media screen and (max-width: 600px) {
    
    /* Make the main title font much smaller on small screens */
    .main-title {
        font-size: 1.8em; 
        padding: 5px 5px; /* Keep padding tight */
        line-height: 1.1; /* Ensure text fits */
    }

    /* Make the subtitle font smaller on small screens */
    .sub-title {
        font-size: 1.1em;
        padding: 4px 4px; /* Adjust padding to match font size */
    }

    /* Adjust contact info text size */
    .contact-info a {
        font-size: 1em;
    }
}