@charset "UTF-8";

/* 
 * PRISMA HARA Design System 
 * Theme: Versailles, Elegant, Feminine, Spiritual
 */
:root {
    --color-gold: #c5a059;
    --color-gold-light: #e5d3a5;
    --color-cream: #f9f8f2;
    --color-text: #4a4a4a;
    --color-accent-pink: #f4e1e6;
    --font-serif: "Cormorant Garamond", "Hannari Mincho", serif;
    --font-sans: "Lato", "Yu Mincho", serif;
}

/* Navigation Menu */
/* Navigation Menu - Stylish Update */
/* Navigation Menu - Stylish Update V2 */
.prisma-nav {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    /* Changed to relative for better layout flow */
    width: 100%;
    z-index: 9999;
    padding: 35px 0 45px;
    /* Balanced padding */
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    /* Soft Gold border */
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.05);
    /* Subtle depth */
}

.nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.nav-brand {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    /* Significantly larger logo */
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    /* Separation from menu */
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: block;
}

.nav-links {
    display: flex;
    gap: 50px;
    /* Large horizontal gap */
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.nav-links a {
    font-family: var(--font-serif);
    text-decoration: none;
    color: #444;
    /* Dark grey for elegance */
    font-size: 1.15rem;
    /* Larger menu text */
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
    text-transform: uppercase;
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 120%;
    /* Line wider than text */
}

.nav-links a:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .nav-brand {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .nav-links {
        gap: 20px;
        flex-direction: column;
        /* Stack vertically on small screens */
        text-align: center;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
    }
}

/* Base Styles */
body {
    margin: 0;
    padding: 0;
    background-color: var(--color-cream);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.8;
}



/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-serif);
    color: var(--color-text);
    letter-spacing: 0.1em;
    font-weight: 400;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--color-gold);
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ORNAMENTAL FRAMES (Versailles Style) */
.ornate-frame {
    border: 1px solid var(--color-gold-light);
    padding: 40px;
    position: relative;
    background: #fff;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.1);
}

.ornate-frame::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid var(--color-gold);
    pointer-events: none;
}

/* Navigation & Buttons */
.read-more-btn {
    display: inline-block;
    border-bottom: 1px solid var(--color-text);
    padding-bottom: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--color-text);
    font-family: var(--font-serif);
    margin-top: 15px;
}

.read-more-btn:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

/* ---------------------------------------------------------
   SECTION 1: HERO (Top Page Design)
   --------------------------------------------------------- */
#hero-section {
    /* Background image is set inline or via specific page style to allow overrides */
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--color-text);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
}

.sns-links-hero {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.sns-btn {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--color-gold);
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    font-family: var(--font-serif);
}

.sns-btn:hover {
    background: var(--color-gold);
    color: #fff;
}

/* ---------------------------------------------------------
   SECTION 2: SERVICES GRID
   --------------------------------------------------------- */
#services-section {
    background-color: var(--color-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: 1 column */
    gap: 40px;
}

@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        /* PC: 3 columns */
    }
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
    padding: 30px;
    background: #fff;
    border: 1px solid #efefef;
    transition: transform 0.3s;
    position: relative;
    /* For pseudo-element overlay */
    overflow: hidden;
    /* Ensure bg doesn't spill */
    cursor: pointer;
    /* Reuse ornate-frame styles if applied directly, or extend here if separate */
}

/* Specific Card Backgrounds */
.card-ras {
    background-image: url('service-bg-ras.jpg');
    background-size: cover;
    background-position: center;
}

.card-tarot {
    background-image: url('service-bg-tarot.jpg');
    /* This will be the distinct card image */
    background-size: cover;
    background-position: center;
}

.card-ryukyu {
    background-image: url('service-bg-ryukyu.jpg');
    background-size: cover;
    background-position: center;
}

/* Whiten Overlay for Faint Background Effect */
/* Whiten Overlay for Faint Background Effect */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.93);
    /* Very high opacity white overlay */
    z-index: 1;
}

/* Ensure content sits on top of overlay */
.service-card>* {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin: 20px 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    /* Enhance readability */
}

.service-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    /* Enhance readability */
    color: #333;
    /* Slightly darker text */
}

.service-price {
    font-family: var(--font-serif);
    color: var(--color-gold);
    font-size: 1.1rem;
    margin: 10px 0;
    font-weight: 600;
    /* Bolder for readability */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* ---------------------------------------------------------
   SECTION 3: PROFILE
   --------------------------------------------------------- */
#profile-section {
    background: #fff;
}

.profile-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.profile-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #ddd;
    border-radius: 200px 200px 0 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

.profile-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--color-gold);
    z-index: -1;
    border-radius: 200px 200px 0 0;
}

.profile-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

/* ---------------------------------------------------------
   SERVICE DETAIL PAGE STYLES
   --------------------------------------------------------- */
.service-detail-header {
    text-align: center;
    padding: 100px 20px 60px;
    /* Reduced top padding as nav is now relative */
}

.service-content-block {
    margin-bottom: 40px;
    line-height: 2;
}

.price-box {
    background-color: var(--color-cream);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--color-gold-light);
    margin: 40px 0;
}

.price-box .price-main {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: var(--color-gold);
}

.contact-cta {
    text-align: center;
    margin-top: 60px;
}

/* ==============================================
   SECTION 3: FOOTER
   ============================================== */
.prisma-footer {
    background-color: #fcfcfc;
    border-top: 1px solid #e0e0e0;
    padding: 80px 0 40px;
    /* More vertical padding */
    text-align: center;
    margin-top: 100px;
}

.footer-logo {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-gold);
    text-decoration: none;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    /* Space below logo */
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    /* Space between items */
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #555;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: color 0.3s;
    position: relative;
}

.footer-nav a:hover {
    color: var(--color-gold);
}

.footer-sns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-sns a {
    color: #888;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    border: 1px solid #ddd;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.footer-sns a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: #fffaf0;
    /* Very light gold tint */
}

.copyright {
    color: #ccc;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-top: 20px;
    font-family: var(--font-sans);
}