/* ==================== Molly's Unified Brand Design ==================== */
:root {
    /* Brand Colors sampled from shop front */
    --brand-purple: #5c3b6e;
    /* Deep Plum/Purple */
    --brand-purple-light: #7a5a8f;
    --brand-purple-dark: #3d264a;
    --brand-accent: #e6b800;
    /* Warm Gold from flyer/accents */

    /* Neutral Palette */
    --bg-warm: #fdfaf5;
    --text-dark: #2c2c2c;
    --text-muted: #555555;
    --white: #ffffff;
    --black: #000000;

    /* Styling */
    --br-xl: 30px;
    --br-md: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body.unified-business {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-warm);
    padding-top: 85px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

h1,
h2,
h3,
.brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--brand-purple);
}

.highlight {
    color: var(--brand-purple);
}

.mini-title {
    display: block;
    color: var(--brand-accent);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* ==================== Header ==================== */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    border-bottom: 3px solid var(--brand-purple);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo-stamp {
    height: 65px;
    width: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-purple);
}

.brand-name {
    color: var(--brand-purple);
    font-size: 1.3rem;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--brand-purple);
}

.nav-cta {
    background: var(--brand-purple);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(92, 59, 110, 0.3);
}

/* ==================== Hero ==================== */
.hero-unified {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 38, 74, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-tag {
    background: var(--brand-accent);
    color: var(--black);
    display: inline-block;
    padding: 5px 15px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 20px;
    border-radius: 4px;
}

.hero-intro {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-contact-strip {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-left: 5px solid var(--brand-accent);
    font-size: 1.1rem;
    display: inline-block;
}

/* ==================== Sections ==================== */
.shop-section,
.clearance-section,
.about-unified {
    padding: 100px 0;
}

.clearance-section {
    background: var(--white);
}

.grid-2,
.grid-2-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-2-alt {
    grid-template-columns: 1.1fr 0.9fr;
}

.frame-img {
    width: 100%;
    border-radius: var(--br-md);
    box-shadow: 20px 20px 0 var(--brand-purple-light);
    transition: var(--transition);
}

.frame-img:hover {
    transform: translate(5px, 5px);
    box-shadow: 10px 10px 0 var(--brand-purple);
}

.custom-list {
    list-style: none;
    margin: 30px 0;
}

.custom-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--brand-purple);
}

.custom-list li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: var(--brand-accent);
}

.clearance-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.c-item {
    background: var(--bg-warm);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==================== Flyer Section ==================== */
.flyer-elements {
    padding: 60px 0;
}

.flyer-box {
    background: var(--black);
    color: var(--white);
    padding: 80px;
    border-radius: var(--br-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.flyer-inner h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--brand-accent);
}

.flyer-inner p {
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 30px;
}

.family-tag {
    font-family: 'Special Elite', cursive;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* ==================== About Section ==================== */
.about-card-white {
    background: var(--white);
    padding: 60px;
    border-radius: var(--br-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ==================== Buttons ==================== */
.btn {
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--brand-purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--brand-purple-dark);
    transform: scale(1.05);
}

.btn-secondary {
    background: var(--brand-accent);
    color: var(--black);
}

.btn-secondary:hover {
    transform: scale(1.05);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--brand-purple);
}

.btn-link {
    color: var(--brand-purple);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-link:hover {
    padding-left: 10px;
}

/* ==================== Contact Section ==================== */
.contact-unified {
    padding: 100px 0;
    background: var(--brand-purple);
    color: var(--white);
}

.contact-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.contact-card-dark h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-card-dark p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-numbers {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.n-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
}

.n-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-accent);
}

.n-val {
    font-size: 1.8rem;
    font-weight: 800;
}

.shop-address {
    font-weight: 600;
    margin-top: 30px;
}

.contact-form-minimal {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form-minimal input,
.contact-form-minimal select,
.contact-form-minimal textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--bg-warm);
    border-radius: 8px;
    font-family: inherit;
    margin-bottom: 15px;
}

/* ==================== Footer ==================== */
.footer-unified {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid #eee;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.f-links {
    display: flex;
    gap: 30px;
}

.f-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 700;
}

.f-links a:hover {
    color: var(--brand-purple);
}

/* ==================== Responsive ==================== */
@media (max-width: 900px) {

    .grid-2,
    .grid-2-alt,
    .contact-grid-v3 {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-unified {
        height: auto;
        padding: 100px 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-contact-strip {
        width: 100%;
    }

    .main-nav {
        display: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}