/* Base Styles using "Pop" colors */
:root {
    --primary: #FF6B9C;
    /* Hot Pink */
    --secondary: #00D2D3;
    /* Cyan */
    --accent: #FF9F43;
    /* Orange */
    --dark: #2C3A47;
    --light: #F8EFBA;
    /* Cream */
    --white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.95);
}

/* Body Background Update: Fix white line by using cover/fixed */
body {
    margin: 0;
    padding: 0;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    background-color: var(--light);
    background-image: url('assets/nunoji6.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--dark);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

h1,
h2,
h3 {
    font-family: 'DotGothic16', sans-serif;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 480px;
    /* Mobile-first vertical layout */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hero Section Layout */
.hero {
    text-align: center;
    padding: 30px 0 20px;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* Space between deco and logo */
}

/* Hero Decoration Icons (popopopon) */
.hero-deco {
    width: 60px;
    height: 60px;
    object-fit: contain;
    /* Initial state hidden or transparent? No, just normal */
    transition: transform 0.1s;
}

.main-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    image-rendering: auto;
    filter: drop_shadow(4px 4px 0px rgba(0, 0, 0, 0.1));
}

.user-icon {
    border-radius: 50%;
    max-width: 150px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-family: 'DotGothic16', sans-serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 10px;
    text-shadow: 2px 2px 0px #fff;
    background: rgba(255, 255, 255, 0.8);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 8px;
}

/* Profile Shop Link */
.profile-shop-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    border-radius: 8px;
}

.btn-micro {
    background: var(--accent);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

/* Card Styles */
.card {
    background: var(--card-bg);
    border: 4px solid var(--dark);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 6px 6px 0px var(--dark);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

.card h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* border-bottom removed */
}

/* Profile Text */
.profile-text {
    text-align: left;
    font-size: 0.95rem;
}

.profile-name {
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--dark);
}

/* Works Carousel */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.carousel-window {
    width: 85%;
    /* Leave room for buttons */
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-btn {
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.1s;
}

.carousel-btn:active {
    transform: scale(0.9);
}

.work-item {
    min-width: 100%;
    /* Force single item width */
    box-sizing: border-box;
    background: #fff;
    border: 2px solid #eee;
    padding: 10px;
    border-radius: 8px;
}

.work-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.work-item p {
    font-weight: bold;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--dark);
}


/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #eee;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* Gallery updates: Remove orange border from fixed item */
.gallery-grid .span-2 {
    grid-column: span 2;
    border: none;
}

/* Catalog Mini Deco & Text */
.catalog-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* Center align items vertically */
    gap: 15px;
    text-align: left;
    justify-content: center;
    /* Center the whole block */
}

.mini-deco {
    width: 60px;
    height: auto;
    /* Aligned with button roughly. Flex handles this. */
}

.catalog-text-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center text stack */
    width: 100%;
}

.catalog-text-area p {
    text-align: center;
    /* Center text relative to button */
    margin: 3px 0;
}

.catalog-note-black {
    color: var(--dark);
    margin-top: 5px;
    font-size: 0.8rem;
    /* Match small-text size */
    font-family: 'DotGothic16', sans-serif;
}

/* Shop Buttons - Readability */
.btn-creema,
.btn-minne {
    letter-spacing: 0.2em;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'DotGothic16', sans-serif;
    font-weight: bold;
    transition: all 0.2s;
    border: 3px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: scale(1.05);
}

.btn:active {
    transform: scale(0.95);
}

.btn-lg {
    width: 100%;
    /* Full width in card */
    font-size: 1.1rem;
    box-sizing: border-box;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 3px solid var(--dark);
    box-shadow: 4px 4px 0px var(--dark);
}

.btn-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.btn-creema {
    background: #fff;
    border: 3px solid #7D49AA;
    color: #7D49AA;
}

.btn-minne {
    background: #fff;
    border: 3px solid #E49B7A;
    color: #E49B7A;
}

/* Video Card */
.video-container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding: 20px;
    color: white;
}

.youtube-preview {
    display: block;
    background: #333;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid white;
}

.play-icon {
    font-size: 2rem;
    color: red;
    margin-bottom: 10px;
}

/* Latest Content / TikTok */
.tiktok-style {
    background: #000;
    /* TikTok dark mode vibe */
    color: white;
}

.tiktok-preview {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.tiktok-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.view-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #FE2C55;
    /* TikTok Red */
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}


/* Socials */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 3px solid var(--dark);
    box-shadow: 3px 3px 0px var(--dark);
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.instagram {
    color: #E1306C;
}

.x-twitter {
    color: #000;
}

.tiktok {
    color: #000;
}

.facebook {
    color: #1877F2;
}

/* Business CTA Highlighting */
.business-cta-section {
    margin-top: 40px;
    margin-bottom: 20px;
}

.business-card {
    border: 4px solid var(--dark);
    background: #fff;
    /* Distinctive style */
    background-image: repeating-linear-gradient(45deg, #fff, #fff 10px, #fdfdfd 10px, #fdfdfd 20px);
}

.business-card h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 10px;
}

/* Footer / Contact */
.footer {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 40px;
}

.btn-contact {
    background: var(--dark);
    color: white;
    margin-top: 10px;
    padding: 10px 30px;
    border: 2px solid white;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.copyright {
    margin-top: 40px;
    font-size: 1.2rem;
    /* Increased size as requested */
    color: #333;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    /* Changed for readability */
    font-weight: bold;
    text-shadow: 2px 2px 0 #fff;
    /* White outline for readability */
}

/* Seasonal Event Section */
.seasonal-card {
    transition: all 0.3s ease;
    border: 4px solid #eee;
    /* Default */
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.seasonal-card h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    /* border-bottom removed by design, but adding color based on season */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.seasonal-card img {
    width: 100%;
    max-width: 300px;
    /* Limit size */
    border-radius: 8px;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

/* Seasonal Themes */
.season-spring {
    border-color: #FF9A9E;
    background: linear-gradient(to bottom right, #fff, #FFF0F5);
}

.season-spring h2 {
    color: #FF6B9C;
}

.season-summer {
    border-color: #4facfe;
    background: linear-gradient(to bottom right, #fff, #E0F7FA);
}

.season-summer h2 {
    color: #00bcd4;
}

.season-autumn {
    border-color: #FF9800;
    background: linear-gradient(to bottom right, #fff, #FFF3E0);
}

.season-autumn h2 {
    color: #FF9800;
}

.season-winter {
    border-color: #a18cd1;
    background: linear-gradient(to bottom right, #fff, #F3E5F5);
}

.season-winter h2 {
    color: #9C27B0;
}