/* ============================================================
   Global Reset
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================================
   Base Typography & Colors
   ============================================================ */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333; 				/* readable dark gray */
    background: #FAACFA;		/* poster lavender */
    padding-bottom: 4rem;
}

h1, h2, h3 {
    font-weight: 600;
    color: #1A02F8; 			/* poster blue */
}

/* ============================================================
   Top navigation aligned to content column
   ============================================================ */

header.top-nav {
    background: none;        	/* remove lavender bar */
    padding: 1rem 0;
    margin-top: 1rem;
    margin-left: 260px;			/* Align over hero text. */
    margin-bottom: 0.5rem;
}

header.top-nav nav {
    display: flex;
    gap: 2rem;
    justify-content: flex-start; /* aligns nav to left edge of content column */
}

/* Override the content-column margin for the header specifically */
header.top-nav.content-column {
    margin-left: calc(260px + 6rem);
}

header.top-nav a {
    text-decoration: none;
    color: #1A02F8;
    font-weight: bold;
}

header.top-nav a.active {
    text-decoration: underline;
}

/* ============================================================
   Shared Content Column
   Ensures hero text, divider, and bio align vertically
   ============================================================ */
.content-column {
    max-width: 700px;
    margin-left: 2rem; /* alignment anchor */
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    display: flex;
    align-items: flex-start; 	/* aligns hero text with top of portrait */
    gap: 2rem;
    padding: 2rem 0;			/* remove left padding */
    background: #FAACFA; 		/* lavender */
}

.hero .content-column {
    margin-left: 0; 			/* reset inherited margin */
}

.hero-text {
    margin-left: 2rem; 			/* aligns with bio text */
}

.hero img {
    width: 260px;
    height: auto;
    border-radius: 8px;
    margin-left: 2rem; /* restore spacing only for the portrait */
}

.hero-text h1,
.hero-text h2 {
    margin: 0;
}

/* ============================================================
   Section Divider
   ============================================================ */
.section-divider {
    border: none;
    border-top: 4px solid #1A02F8; 		/* poster blue */
    margin: 2rem 0;
    margin-left: 2rem; 			/* aligns with content column */
    width: 700px;
    max-width: calc(100% - 2rem);
}

/* ============================================================
   Bio Section
   ============================================================ */
.bio {
    padding-bottom: 2rem;
}

.bio p {
    margin-bottom: 1rem;
}

/* ============================================================
   Packages Page
   ============================================================ */

.packages-page {
    padding: 2rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: #1A02F8;        /* poster blue */
    color: #FAACFA;             /* lavender text */
    padding: 0.75rem 1.5rem;   	/* top/bottom = 0.75rem, left/right = 1.5rem */
    border-radius: 8px;
}

.package-card {
    background: #FAACFA;
    color: #1A02F8;
    border: 2px solid #1A02F8;
    padding: 0.5rem 1.25rem;   	/* top/bottom = 0.5rem, left/right = 1.25rem */
}

.package-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.packages-page h1 {
	margin-bottom: 1rem;
}

.packages-page h2 {
	margin-top: 2rem;
}

.package-card p {
    margin: 0.3rem 0;
}

.package-card .price {
    margin-top: 0.8rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: #1A02F8;   			/* poster blue */
}

/* Bonus section styling */
.packages-page .bonus-box {
    background: #FAACFA;        /* lavender fill */
    color: #1A02F8;             /* poster blue text */
    padding: 1.5rem;			/* slightly tighter than cards */
    border-radius: 8px;
    margin: 2rem 0;

    /* top + left thin border */
    border-top: 2px solid #1A02F8;
    border-left: 2px solid #1A02F8;
    border-bottom: 2px solid #1A02F8;
    border-right: 2px solid #1A02F8;

    /* bottom + right shadow (same color family as buttons) */
    box-shadow: 10px 10px 0 rgba(26, 2, 248, 0.55);
}

/* ============================================================
   Contact Form
   ============================================================ */
.contact-page {
    padding: 2rem;
    max-width: 600px;
    margin: auto;
}

.contact-form label {
    display: block;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.3rem;
    border: 1px solid #bbb;
    border-radius: 4px;
}

.contact-form input:invalid,
.contact-form textarea:invalid {
    border-color: #e63946;
    background-color: #ffecec;
}

.contact-form input:valid,
.contact-form textarea:valid {
    border-color: #1A02F8;
    background-color: white;
}

button {
    background: #1A02F8;
    color: white;
    padding: 0.8rem 1.4rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #1401C0; 		/* darker blue */
}

/* ============================================================
   Footer
   ============================================================ */
footer {
    text-align: center;
    margin-top: 3rem;
    color: #555;
}