/* =========================
   GLOBAL STYLES
========================= */

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(to bottom, #ffe4ec, #ffd6e5);
    color: #333;
}

/* =========================
   NAVIGATION
========================= */

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 25px 0;
}

nav a {
    padding: 10px 20px;
    text-decoration: none;
    color: #d63384;
    font-weight: 500;
    background-color: white;
    border-radius: 25px;
    border: 2px solid #f3b6c6;
    transition: all 0.25s ease;
}

nav a:hover {
    background-color: #d63384;
    color: white;
    border-color: #d63384;
}

nav a.active {
    background-color: #d63384;
    color: white;
    border-color: #d63384;
}

/* =========================
   HERO SECTION
========================= */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 700px;
    margin: 60px auto 20px auto;
    padding: 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #d63384;
}

.hero h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-sub {
    max-width: 500px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Decorative line */
.hero::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: #d63384;
    margin-top: 20px;
    border-radius: 2px;
}

/* =========================
   HEADSHOT (HOMEPAGE)
========================= */

.headshot {
    width: 500px;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 15px 0;
    border: 3px solid #f3b6c6;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* =========================
   SECTIONS
========================= */

.section {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: white;
    border-radius: 18px;
    border: 2px solid #f3b6c6;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.section h2 {
    text-align: center;
    color: #d63384;
    margin-bottom: 20px;
}

/* =========================
   ABOUT PAGE LAYOUT (BIG IMAGE LEFT)
========================= */

.about-layout {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    position: relative;
}

/* subtle background shape (designer touch 👀) */
.about-layout::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #f3b6c6;
    opacity: 0.2;
    border-radius: 50%;
    top: -40px;
    left: 40px;
    z-index: 0;
}

/* IMAGE */
.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 700px;           /* BIG IMAGE */
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #f3b6c6;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* TEXT */
.about-text {
    max-width: 420px;       /* tighter for balance */
    position: relative;
    z-index: 1;
}

.about-text h2 {
    margin-top: 25px;
    color: #d63384;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* =========================
   HIGHLIGHT CARDS
========================= */

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-card {
    padding: 20px;
    border-radius: 14px;
    border: 2px solid #f3b6c6;
    background-color: #fff8fb;
    transition: all 0.25s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: #d63384;
}

.highlight-card h3 {
    margin-top: 0;
    color: #d63384;
}

/* =========================
   EXPLORE CARDS
========================= */

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.explore-card {
    display: block;
    text-decoration: none;
    background-color: white;
    padding: 25px;
    border-radius: 16px;
    border: 2px solid #f3b6c6;
    transition: all 0.25s ease;
    color: #333;
}

.explore-card:hover {
    transform: translateY(-6px);
    border-color: #d63384;
    box-shadow: 0 12px 25px rgba(214, 51, 132, 0.15);
}

.explore-card h3 {
    margin-top: 0;
    color: #d63384;
}

.explore-card p {
    font-size: 14px;
    line-height: 1.5;
}

/* =========================
   CTA
========================= */

.cta {
    text-align: center;
    font-weight: 500;
    color: #555;
}

/* =========================
   EXPERIENCE ITEMS
========================= */

.experience-item {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3b6c6;
    transition: all 0.25s ease;
}

.experience-item:last-child {
    border-bottom: none;
}

.experience-item:hover {
    transform: translateY(-4px);
}

.experience-item h3 {
    margin: 0;
    color: #333;
}

.date {
    font-size: 14px;
    color: #888;
    margin: 5px 0 10px 0;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 900px) {
    .about-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-text {
        max-width: 90%;
    }

    .about-image img {
        width: 90%;
    }
}

@media (max-width: 700px) {
    .headshot {
        width: 140px;
    }
}
