/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

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

/* === THEME COLORS === */
:root {
    --primary: #34A6F4;
    --primary-dark: #0a8ec9;
    --primary-bg: #ebf5fc;
    --placeholder-bg: #d4e8fc;
}

/* === HEADER / NAV === */
header {
    padding: 28px 0 20px;
    border-bottom: 1px solid rgba(52, 166, 244, 0.15);
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.logo {
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    color: #000;
}
.logo .brandz {
    font-weight: 700;
}
.logo .wave {
    font-weight: 400;
}

nav {
    display: flex;
    gap: 32px;
    font-weight: 500;
    font-size: 0.95rem;
}

nav a {
    color: #2a2a2a;
    transition: color 0.2s;
}
nav a:hover {
    color: var(--primary);
}
nav a.active {
    color: var(--primary);
    font-weight: 600;
}

/* === BUTTON === */
.btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.25s;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background: var(--primary-dark);
}

/* === HOME PAGE HERO === */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
    padding: 40px 40px 60px;
    background: #ffffff;
    border-radius: 24px;
    margin: 20px 0 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.hero-text {
    flex: 1 1 45%;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.hero-text h1 .highlight {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.2rem;
    color: #3a5a7a;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-image {
    flex: 1 1 40%;
    background: var(--placeholder-bg);
    border-radius: 16px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background-image: url('../images/hero-placeholder.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* === ABOUT PAGE - Now with consistent padding === */
.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding: 40px 40px 60px; /* Same as Home/Art */
    background: #ffffff;
    border-radius: 24px;
    margin: 20px 0 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.about-text {
    flex: 1 1 50%;
}

.about-text h2 {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #1a1a1a;
}
.about-text h2 span {
    color: var(--primary);
}

.about-text p {
    color: #3d3d3d;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.contact-block {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(52, 166, 244, 0.15);
}

.contact-block p {
    margin-bottom: 4px;
    font-size: 1rem;
}
.contact-block strong {
    font-weight: 600;
}


/* === WORK & SHOP PAGES - Now with consistent padding === */
.page-header {
    padding: 0 40px 8px; /* Matches left/right spacing of Home/Art */
}

.page-header h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.page-header p {
    color: #3a5a7a;
    margin-bottom: 32px;
}

.work-grid,
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    padding: 0 40px 60px; /* Matches left/right spacing of Home/Art */
}

.work-item,
.shop-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid rgba(52, 166, 244, 0.08);
}
.work-item:hover,
.shop-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(52, 166, 244, 0.10);
}

.work-item a,
.shop-item a {
    display: block;
}

.work-thumb,
.shop-thumb {
    background: var(--placeholder-bg);
    aspect-ratio: 4/3;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.work-item .thumb-label,
.shop-item .shop-label {
    padding: 18px 20px 20px;
    font-weight: 500;
    font-size: 1rem;
    color: #1a1a1a;
    background: #ffffff;
}

/* === ART PAGE HERO === */
.art-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
    padding: 40px 40px 60px;
    background: #ffffff;
    border-radius: 24px;
    margin: 20px 0 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.art-hero-text {
    flex: 1 1 45%;
}

.art-hero-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.art-hero-text h2 .highlight {
    color: var(--primary);
}

.art-hero-text p {
    font-size: 1.2rem;
    color: #3a5a7a;
    max-width: 480px;
    margin-bottom: 32px;
}

.art-hero-image {
    flex: 1 1 40%;
    background: var(--placeholder-bg);
    border-radius: 16px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background-image: url('../images/art-hero-placeholder.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* === FOOTER === */
footer {
    padding: 32px 0 28px;
    background: #ffffff;
    font-size: 0.85rem;
    color: #5a5a5a;
    text-align: center;
    border-top: 1px solid rgba(52, 166, 244, 0.12);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    nav {
        gap: 18px;
        flex-wrap: wrap;
    }

    /* Reverse order: Image on top, Text below */
    .hero {
        flex-direction: column-reverse;
        padding: 32px 24px;
    }
    .art-hero {
        flex-direction: column-reverse;
        padding: 32px 24px;
    }
    .about-grid {
        flex-direction: column;
        padding: 32px 24px;
    }
    .page-header {
        padding: 0 24px 8px;
    }
    .work-grid,
    .shop-grid {
        padding: 0 24px 40px;
    }

    .hero-text h1,
    .art-hero-text h2 {
        font-size: 2.4rem;
    }
    .work-grid,
    .shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero {
        padding: 24px 16px;
    }
    .art-hero {
        padding: 24px 16px;
    }
    .about-grid {
        padding: 24px 16px;
    }
    .page-header {
        padding: 0 16px 8px;
    }
    .work-grid,
    .shop-grid {
        padding: 0 16px 32px;
    }
    .hero-text h1,
    .art-hero-text h2 {
        font-size: 1.8rem;
    }
    nav {
        gap: 12px;
        font-size: 0.85rem;
    }
    .work-grid,
    .shop-grid {
        grid-template-columns: 1fr 1fr;
    }
}