/* Styling to match Canva color scheme & modern typography */
:root {
    --bg-color: #D8C8B0;
    --card-bg: #CBB89D;
    --text-color: #1A1A1A;
    --accent-purple: #5C2A62;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page {
    background-color: var(--bg-color);
    padding: 40px 30px;
    margin-bottom: 30px;
    border-radius: 4px;
}

/* ==========================================================================
   PAGE 1 - HERO
   ========================================================================== */
.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.brand-title .subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.brand-title h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 10px 0 20px;
}

.hero-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-main-img img {
    width: 280px;
    height: auto;
    border-radius: 4px;
    display: block;
}

/* Page 1 Hero Grid Fix */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

.hero-grid img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* ==========================================================================
   PAGE 2 - ABOUT & EXPERTISE
   ========================================================================== */
.about-header {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.profile-img img {
    width: 220px;
    border-radius: 4px;
    display: block;
}

.about-intro h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-intro p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.expertise-block {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.expertise-text {
    flex: 1;
}

.expertise-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.expertise-text ul {
    list-style: none;
    font-size: 0.85rem;
}

.expertise-text li {
    margin-bottom: 10px;
}

/* Page 2 Expertise Grid Fix */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-self: start;
    width: 320px;
    flex-shrink: 0;
}

.expertise-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.ugc-block {
    display: flex;
    align-items: center;
    gap: 25px;
}

.ugc-img img {
    width: 180px;
    border-radius: 4px;
    display: block;
}

.ugc-text p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.5;
}

/* ==========================================================================
   PAGE 3 - REELS
   ========================================================================== */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.reel-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.7);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
}

/* ==========================================================================
   PAGE 4 - CONTACT
   ========================================================================== */
.page-4 h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-card {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-photo img {
    width: 220px;
    border-radius: 4px;
    display: block;
}

.contact-info {
    position: relative;
    flex: 1;
}

.contact-info ul {
    list-style: none;
    font-size: 1rem;
}

.contact-info li {
    margin-bottom: 12px;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.badge-fm {
    position: absolute;
    bottom: -10px;
    right: 10px;
    background-color: var(--accent-purple);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 6px;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 768px) {
    .hero-top, 
    .about-header, 
    .expertise-block, 
    .ugc-block, 
    .contact-card {
        flex-direction: column;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reels-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        width: 100%;
    }
}