/*
Theme Name: PanTheme
Author: Nathan Heyes
Description: A custom-coded website for my wonderful, perfect future wife.
Version: 1.0
*/

/* Your custom CSS starts here */
body { font-family: sans-serif; margin: 0; padding: 0; }
header { background: #333; color: #fff; padding: 1rem; }

.container {
    max-width: 1440px; /* Limits width on giant monitors */
    margin: 0 auto;    /* Centers the container */
    padding: 0 160px;  /* This is your 160px "either side" */
}

h1 {
    font-size: 40px;
    font-family: "Open Sans", Sans-Serif;
}
p {
    font-size: 16px;
}

.btn-outline {
    /* Layout & Spacing */
    display: inline-block;
    padding: 12px 28px;
    
    /* Typography */
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;

    /* The "Ghost" Look */
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 4px;
    
    /* The Animation */
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Hover State */
.btn-outline:hover {
    background-color: #ffffff; 
    color: #000000;
}

/* Active/Focus State (For Accessibility) */
.btn-outline:active {
    transform: translateY(1px);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}


/* Homepage */

.hero-banner {
    background: #37d1d4;
    background: linear-gradient(153deg, rgba(55, 209, 212, 1) 0%, rgba(33, 72, 156, 1) 35%, rgba(5, 5, 38, 1) 100%);
}

.hero-content {
    display: flex;
    align-items: center; /* Vertically centers text and image */
    justify-content: space-between;
    gap: 60px;
    padding-top: 40px;
    
}
.hero-text, .hero-image {
    flex: 1; 
}

.hero-text h1 {
    font-family: "Open Sans", Sans-Serif;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 12px;
    color:#fff;
}

.hero-text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 12px;
    margin-bottom: 32px;
    color: #fff;
}

.hero-image {
    display: flex;
    justify-content: right;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 400px;
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column; /* Stacks image under text on mobile */
        text-align: center;
    }
}