/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Outfit:wght@300;400;600&display=swap');

:root {
    /* Luxury Color Palette */
    --primary-color: #333333;
    /* Elegant Dark Gray */
    --accent-color: #d4a373;
    /* Soft Gold/Beige Accent */
    --text-primary: #333333;
    --text-secondary: #666666;
    --bg-light: #f9f9f9;
    --bg-secondary: #f4f4f4;
    --white: #ffffff;

    /* Shadows - Softer, more diffuse */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

body {
    font-family: 'Shippori Mincho', serif;
    /* Serif for elegance */
    color: var(--text-primary);
    line-height: 2.0;
    /* Increased line-height for readability and luxury feel */
    background-color: var(--white);
    letter-spacing: 0.05em;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* Header & Nav - Clean & Minimal */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    /* Taller header */
}

.nav-links {
    display: flex;
    gap: 3rem;
    /* More space between links */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
    font-family: 'Outfit', sans-serif;
    /* Keep Nav sans-serif for readability */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.logo {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.15em;
}

.logo span {
    color: var(--text-primary);
    /* Monotone logo for sophistication */
}

/* Hero Section */
.hero {
    /* Base hero style, can be overridden */
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fff 100%);
    text-align: center;
}

/* Hero Sections - Updated for Luxury */
.home-hero {
    position: relative;
    padding: 240px 0 180px;
    /* Increased padding */
    background-image: url('images/Sese-ambassador_4200_0.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.home-hero .container {
    position: relative;
    z-index: 1;
}

.home-hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    /* Lighter weight for elegance */
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    /* Softer shadow */
    color: white;
    /* Override gradient text */
    background: none;
    -webkit-text-fill-color: initial;
}

.home-hero p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    opacity: 0.9;
    color: #f3f4f6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.about-hero {
    position: relative;
    padding: 160px 0 120px;
    background-image: url('images/Sese-ambassador__8262_0.jpg');
    /* Note double underscore */
    background-size: cover;
    background-position: center;
    /* Adjust if needed */
    color: white;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    /* Slightly lighter overlay for about */
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero p {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* About Section */
.about {
    padding: 120px 0;
    /* More whitespace */
    background-color: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    display: none;
    /* Remove bold underline for cleaner look */
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    /* Larger body text */
    color: var(--text-secondary);
}

/* Pick Up Section Overhaul */
.pickup-section {
    padding: 140px 0;
    background-color: var(--bg-light);
}

.pickup-container {
    display: flex;
    align-items: center;
    gap: 6rem;
    /* More space */
    max-width: 1000px;
    margin: 0 auto;
}

.pickup-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pickup-content {
    flex: 1;
    text-align: left;
}

.pickup-label {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.pickup-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .pickup-container {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Media Section */
.media {
    padding: 100px 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.media-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.media-content {
    padding: 2rem;
}

.media-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #fce7f3;
    color: var(--accent-color);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.media-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.media-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 1rem;
}

.media-link svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.media-card:hover .media-link svg {
    transform: translateX(4px);
}

/* Company Section */
.company-profile {
    padding: 100px 0;
    background-color: white;
}

.company-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.company-table th {
    width: 30%;
    color: var(--text-secondary);
    font-weight: 600;
}

.company-table td {
    color: var(--text-primary);
}

.company-table a {
    color: var(--accent-color);
    font-weight: 500;
}

.company-table a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

/* Product Specific Overrides */
.product-hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    background-image: url('images/sese_hero_abstract.png');
    /* Generated Image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-primary);
    /* Changed to dark text for abstract bg if light */
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    /* Overlay for text readability */
}

.product-hero .container {
    position: relative;
    z-index: 1;
}

/* Adjust text color if background is dark, or use overlay */
.product-hero h1 {
    font-size: 3rem;
    color: var(--text-primary);
    /* Use primary text color for elegance */
    text-shadow: none;
    margin-bottom: 0;
    font-weight: 400;
    background: none;
    -webkit-text-fill-color: initial;
}

/* Manga Section */
.manga-section {
    padding: 120px 0;
    background-color: white;
    text-align: center;
}

.manga-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    /* Increased gap */
    margin-top: 4rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .product-hero h1 {
        font-size: 2rem;
    }
}

.product-features {
    padding: 100px 0;
    background-color: white;
    /* Changed to white to alternate */
}

/* About Page Accent Image */
.about-accent-img {
    margin: 4rem 0;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #fce7f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* New Feature Images Styles */
.feature-image-container {
    width: 120px;
    /* Significantly reduced size for better scanability */
    height: 120px;
    margin: 0 auto 1rem;
    /* Reduced bottom margin */
    overflow: hidden;
    border-radius: 50%;
    /* Make it circular for luxury/human feel */
    box-shadow: var(--shadow-sm);
    /* Softer shadow for smaller element */
    transition: transform 0.3s ease;
}

.feature-image-container:hover {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

.feature-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Media Page List Styles */
.media-hero {
    background: var(--bg-light);
    /* Simple background for media hero */
    padding: 150px 0 100px;
    margin-bottom: 0;
}

.media-list-section {
    padding: 80px 0;
}

.media-grid {
    display: grid;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.media-card {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    transition: transform 0.4s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.1);
}

.media-tag {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-right: 1rem;
}

.media-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
}

.media-title {
    font-size: 1.4rem;
    margin: 1rem 0;
    line-height: 1.6;
}

.media-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.media-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.media-link:hover {
    border-bottom-color: var(--primary-color);
}

.product-specs {
    padding: 100px 0;
}

.specs-table {
    width: 100%;
    max-width: 700px;
    margin: 3rem auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
}

.specs-table th,
.specs-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.specs-table th {
    background-color: #fce7f3;
    color: var(--accent-color);
    font-weight: 600;
    width: 30%;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #fdf2f8 0%, #fff 100%);
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 14px 0 rgba(236, 72, 153, 0.39);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.23);
    background: var(--accent-hover);
    color: white;
}

/* Footer */
footer {
    padding: 3rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-container {
        height: 60px;
    }
}