@import url('https://fonts.googleapis.com/css2?family=Klee+One&family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;500;600&display=swap');

:root {
    --primary-red: #a41014;
    --primary-red-hover: #7b0a0e;
    --bg-color: #f8f6f2;
    --text-main: #333333;
    --text-muted: #666666;
    --gold-accent: #d4af37;
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-klee: 'Klee One', cursive;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 500;
}

/* =========================================
   Utility Classes 
========================================= */
.fw-bold-serif {
    font-weight: 600;
}

.text-primary-red {
    color: var(--primary-red) !important;
}

.bg-primary-red {
    background-color: var(--primary-red) !important;
}

.ls-1 {
    letter-spacing: 1px;
}

/* =========================================
   Hero Section 
========================================= */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
        url("../img/shimane-main.jpg") center / cover no-repeat, #ffffff;
    height: 100vh;
    margin-top: -60px;
}

.hero-content {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
}

.hero-divider {
    border: 2px solid white;
    width: 60px;
    margin: 2rem auto;
    opacity: 1;
}

.hero-subtitle {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    font-weight: 400;
}

/* =========================================
   Haisha Service Banner
========================================= */
.haisha-banner {
    background-color: var(--primary-red);
}

.haisha-content {
    padding: 4rem;
}

@media (max-width: 991px) {
    .haisha-content {
        padding: 2rem;
    }
}

.haisha-img-container {
    background: url("../img/enmusubikuukou.jpg") center / cover;
    min-height: 300px;
}

/* =========================================
   Section Titles
========================================= */
.section-title-wrapper {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.section-subtitle {
    font-family: 'Sacramento', cursive;
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 0;
}

/* =========================================
   Recommend Spots (Thumbnail Grid)
========================================= */
.spot-card-mini {
    text-align: center;
    display: block;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.spot-card-mini:hover {
    transform: translateY(-5px);
    color: var(--primary-red);
}

.spot-card-mini img {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.spot-card-mini:hover img {
    box-shadow: 0 15px 30px rgba(164, 16, 20, 0.2);
}

.spot-card-mini p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* =========================================
   Detail Sections (Tamatsukuri, Yuushien, etc)
========================================= */
.spot-hero {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1366px;
    margin: 0 auto;
}

.spot-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.spot-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.spot-hero-label {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.spot-hero-title {
    font-size: 3.5rem;
    margin-bottom: 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.spot-hero-en {
    font-family: 'Sacramento', cursive;
    font-size: 2.5rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.spot-intro-text {
    max-width: 900px;
    margin: 3rem auto;
    text-align: center;
    font-size: 1.1rem;
    padding: 0 1.5rem;
}

/* Detail Features */
.spot-feature-img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    width: 100%;
}

.spot-feature-title {
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Basic Info Box */
.spot-info-box {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-red);
    max-width: 800px;
    margin: 3rem auto 0;
}

.spot-info-box h3 {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.spot-info-box h3 i {
    color: var(--primary-red);
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.spot-info-box p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.spot-info-box a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s;
}

.spot-info-box a:hover {
    color: var(--primary-red-hover);
    text-decoration: underline;
}

/* =========================================
   Pickup Spots Grid
========================================= */
.pickup-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pickup-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pickup-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.pickup-card-body {
    padding: 1.5rem;
}

.pickup-card-title {
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.pickup-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pickup-card-info {
    font-size: 0.85rem;
    color: #888;
    background: var(--bg-color);
    padding: 1rem;
    border-radius: 8px;
}

.pickup-card-info p {
    margin-bottom: 0.25rem;
}

/* =========================================
   Dealers Section
========================================= */
.dealer-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    padding: 1rem;
}

.dealer-img-wrap {
    border-radius: 8px;
    overflow: hidden;
}

.dealer-info {
    padding: 1.5rem 0.5rem;
}

.dealer-brand {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.dealer-name {
    font-weight: 600;
    margin-bottom: 1rem;
}

.dealer-address {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* =========================================
   Buttons
========================================= */
.btn-premium {
    background-color: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(164, 16, 20, 0.3);
}

.btn-premium:hover {
    background-color: var(--primary-red-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(164, 16, 20, 0.4);
}

.btn-premium-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    background-color: #fff;
    color: var(--text-main);
}