/*
Theme Name: Rafting Theme
Theme URI: https://example.com/rafting-theme
Author: Antigravity
Author URI: https://example.com
Description: A premium WordPress theme for a rafting company with dynamic layouts and animations.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rafting-theme
*/

:root {
    /* Liquid Glassmorphism Palette */
    --color-bg-1: #ffdee9;
    --color-bg-2: #b5fffc;
    --color-bg-3: #e0c3fc;

    --glass-bg: rgba(255, 255, 255, 0.35);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --glass-blur: blur(25px);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    --color-text-main: #333333;
    --color-text-sub: #555555;
    --color-accent-primary: #007AFF;
    --color-accent-secondary: #5856D6;

    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
    --font-heading: "M PLUS Rounded 1c", sans-serif;

    --transition-speed: 0.3s;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background: linear-gradient(-45deg, var(--color-bg-1), var(--color-bg-2), var(--color-bg-3), var(--color-bg-1));
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Dynamic Speed Lines Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(-60deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.02) 80px,
            rgba(255, 255, 255, 0.02) 81px);
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

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

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.4);
    color: var(--color-accent-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    transition: all var(--transition-speed);
    border: var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--color-dark);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
    color: var(--color-accent-primary);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: all var(--transition-speed);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);

    /* Initial hidden state */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--glass-shadow);

    /* Visible state */
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

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

.site-title {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--color-dark);
}

.header-logo {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s;
}

.header-logo:hover {
    transform: scale(1.05);
}


.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.main-nav a:hover {
    color: var(--color-accent-primary);
}

/* Sections with Diagonal Dividers */
.services {
    padding: 8rem 0 12rem;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 120px), 0 100%);
    margin-bottom: -120px;
    z-index: 3;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 100px,
            rgba(0, 0, 0, 0.02) 100px,
            rgba(0, 0, 0, 0.02) 101px);
    pointer-events: none;
}

.why-us-section {
    padding: 12rem 0 12rem;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    position: relative;
    overflow: visible;
    clip-path: polygon(0 120px, 100% 0, 100% calc(100% - 120px), 0 100%);
    margin-bottom: -120px;
    z-index: 2;
    color: white;
}

.why-us-section .section-title {
    color: white;
}

.why-us-section p {
    color: rgba(255, 255, 255, 0.9);
}

.faq-section {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
    clip-path: polygon(0 120px, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    /* Use small viewport height for better mobile support */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Changed from visible to hidden to prevent overflow */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    /* Keep original color */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.8);
    transform: scale(1.0);
    /* Changed from 1.1 to 1.0 for full coverage */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
}

.hero .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative Wave/Splash */
.slant-divider {
    display: none;
    /* Hide old slant */
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.wave-divider .shape-fill {
    fill: #ffffff;
}

/* Splash Background Effect */
.splash-bg {
    position: relative;
    overflow: hidden;
}

.splash-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Why Choose Us Section with Photos */
.why-us-grid-photos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-us-photo-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 15px 40px rgba(31, 38, 135, 0.15);
    transition: all 0.4s ease;
    border: var(--glass-border);
}

.why-us-photo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(31, 38, 135, 0.25);
}

.why-us-photo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(2px);
}

.why-us-photo-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.why-us-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.why-us-icon-small {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.why-us-photo-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.why-us-photo-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .why-us-photo-card {
        height: 350px;
    }
}

/* Why Choose Us Section - Already styled above */

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

.why-us-card {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease;
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.why-us-card:hover {
    transform: translateY(-10px);
}

.why-us-icon {
    font-size: 3rem;
    color: var(--color-accent-primary);
    margin-bottom: 1.5rem;
}

.why-us-card h3 {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.why-us-card p {
    color: var(--color-text-sub);
    line-height: 1.7;
}

/* Modern Service Cards (Reference Design) */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

/* Speed Lines Effect */
.service-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 10px,
            rgba(255, 140, 0, 0.03) 10px,
            rgba(255, 140, 0, 0.03) 20px);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.6s ease;
}

.service-card-modern:hover::before {
    transform: translateX(-20px);
}

.service-card-modern:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-modern:hover .service-image-full {
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: white;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #FF8C00;
    color: white;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    border-radius: 0 8px 0 0;
}

/* Brush Stroke Effect */
.service-label::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 20%,
            transparent 40%,
            rgba(255, 255, 255, 0.1) 70%,
            transparent 100%);
    transform: skewX(-15deg);
    pointer-events: none;
}

.service-info {
    padding: 2rem;
}

.service-title-modern {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.9rem;
}

.meta-item i {
    color: #00BCD4;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.btn-cta {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Speed Brush Stroke on Button */
.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) skewX(-45deg);
    transition: left 0.6s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
    transform: translateY(-2px) translateX(3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-cta i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

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

    .service-image-container {
        height: 250px;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background-color: transparent;
    position: relative;
    margin-top: 4rem;
    border-radius: 20px;
}

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

.testimonial-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    position: relative;
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 4rem;
    color: var(--color-accent-secondary);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-text-sub);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: #ddd;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text-main);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--color-text-sub);
}

/* FAQ Section - Already styled above */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: var(--glass-bg);
    border-radius: 16px;
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

.faq-item details {
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item summary {
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    list-style: none;
    position: relative;
    padding-right: 3rem;
    color: var(--color-text-main);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--color-accent-primary);
    transition: transform 0.3s ease;
}

.faq-item details[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--color-text-sub);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Timeline */
.timeline-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--glass-bg);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    height: 100%;
    width: 4px;
    background: rgba(255, 255, 255, 0.5);
    /* Lighter timeline line */
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--color-accent-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(88, 86, 214, 0.3);
    /* Updated shadow color */
}

.timeline-content h4 {
    margin: 0 0 0.5rem;
    color: var(--color-accent-primary);
    font-size: 1.1rem;
}

.timeline-time {
    display: inline-block;
    background: rgba(255, 255, 255, 0.7);
    /* Lighter background */
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--color-text-sub);
    margin-bottom: 0.5rem;
}

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


/* Tour Details Cards (New Design) */
.tour-details-section {
    margin: 4rem 0;
    text-align: center;
}

.tour-details-title {
    font-size: 1.8rem;
    color: var(--color-text-main);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.tour-details-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.tour-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tour-detail-card {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.tour-detail-card:hover {
    transform: translateY(-5px);
}

.tour-detail-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 122, 255, 0.1);
    /* Light accent background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tour-detail-icon {
    font-size: 2rem;
    color: var(--color-accent-primary);
}

.tour-detail-label-en {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-sub);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.tour-detail-label-ja {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.tour-detail-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.tour-detail-value span {
    font-size: 1rem;
    font-weight: 600;
    margin-left: 5px;
}

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

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-accent-primary);
    margin: 1rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 2rem;
}

.service-card {
    background: var(--glass-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-speed);
    position: relative;
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(31, 38, 135, 0.2);
}

.service-image-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.service-tagline {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-specs {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #444;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.spec-icon {
    margin-right: 0.5rem;
    color: var(--color-accent-primary);
}

.service-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-accent-primary);
    margin-top: 1rem;
    display: block;
}

/* Navigation Dropdown */
.main-nav ul li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--color-accent-primary);
    padding-left: 1.8rem;
}

/* Activity Page Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 5;
    /* Ensure image is above background text */
}

.intro-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.intro-image-wrapper:hover .intro-image {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-image-wrapper {
        order: -1;
        /* Show image first on mobile */
        margin-bottom: 2rem;
    }
}

/* Footer */
.site-footer {
    background: var(--glass-bg);
    border-top: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    color: var(--color-text-sub);
}

/* Guides Page Background Text */
.entry-content {
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Prevent text from spilling over to the image */
}

.guides-bg-text {
    position: absolute;
    font-family: 'Inter', sans-serif;
    color: rgba(0, 0, 0, 0.05);
    font-size: 6rem;
    /* Reduced to fit in left column */
    font-weight: 800;
    left: -1rem;
    top: 0;
    text-align: left;
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    line-height: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    color: var(--color-text-main);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-desc {
    color: var(--color-text-sub);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-heading {
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-text-sub);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent-primary);
    transform: translateX(5px);
}

.footer-contact {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--color-accent-primary);
    width: 20px;
    text-align: center;
    margin-right: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--color-accent-primary);
    font-size: 1.2rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--color-accent-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-text-sub);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* Activity Page Sections */
.activity-intro {
    padding: 6rem 0 8rem;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    position: relative;
    z-index: 3;
    overflow: visible;
}

.activity-intro .wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.activity-intro .wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.activity-intro .wave-divider .shape-fill {
    fill: #1a237e;
}

.activity-timeline {
    padding: 8rem 0;
    background: linear-gradient(90deg, #1a237e 0%, #0d47a1 100%);
    position: relative;
    color: white;
    z-index: 2;
    clip-path: polygon(0 80px, 100% 0, 100% calc(100% - 80px), 0 100%);
    margin: -80px 0;
}

.activity-timeline h3,
.activity-timeline h4 {
    color: white;
}

.activity-timeline .timeline-desc {
    color: rgba(255, 255, 255, 0.9);
}

.activity-timeline .timeline-time {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.activity-timeline .timeline::before {
    background: rgba(255, 255, 255, 0.3);
}

.activity-details {
    padding: 10rem 0 8rem;
    background: #FFFFFF;
    position: relative;
    z-index: 1;
}

.activity-testimonials {
    padding: 8rem 0;
    background: linear-gradient(90deg, #1a237e 0%, #0d47a1 100%);
    position: relative;
    color: white;
    clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%);
    margin-top: -80px;
    z-index: 2;
}

.activity-testimonials h3 {
    color: white;
}

.activity-testimonials .testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.activity-testimonials .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.activity-testimonials .author-info h4 {
    color: white;
}

.activity-testimonials .author-info span {
    color: rgba(255, 255, 255, 0.7);
}


/* Responsive Adjustments for Activity Sections */
@media (max-width: 768px) {
    .activity-intro {
        padding: 4rem 0 6rem;
    }

    .activity-testimonials {
        padding: 6rem 0 4rem;
        /* Adjusted padding */
        clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
        /* Reduced slant height */
        margin-top: -40px;
        /* Reduced overlap */
    }

    .guide-grid {
        margin-top: 3rem;
        /* Reduced from 8rem for mobile */
        gap: 1.5rem;
    }

    .guide-card {
        padding: 1.5rem;
    }
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 8rem;
    /* Increased from 4rem */
}

.guide-card {
    background: rgba(255, 255, 255, 0.8);
    /* Lighter background for better visibility */
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-10px);
}

.guide-avatar {
    width: 160px;
    /* Increased from 120px */
    height: 160px;
    /* Increased from 120px */
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-accent-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.guide-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-name {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.guide-role {
    display: block;
    font-size: 0.9rem;
    color: var(--color-accent-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.guide-comment {
    font-style: italic;
    color: var(--color-text-sub);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Marquee Background Text */
.marquee-section {
    position: relative;
    overflow: hidden;
}

.entry-content {
    position: relative;
    z-index: 1;
}

.marquee-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind content but in front of section bg */
    pointer-events: none;
}

.marquee-bg-line {
    position: absolute;
    white-space: nowrap;
    display: flex;
    font-family: 'Inter', sans-serif;
    font-size: 15rem;
    /* Increased size */
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.marquee-bg-line span {
    padding-right: 4rem;
}

.marquee-bg-line--1 {
    top: -4rem;
    /* Adjusted to not be cut off */
    animation: marquee 40s linear infinite;
}

.marquee-bg-line--2 {
    top: 10rem;
    left: 0;
    animation: marquee 45s linear infinite reverse;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .marquee-bg-line {
        font-size: 6rem;
    }

    .marquee-bg-line--1 {
        top: -2rem;
    }

    .marquee-bg-line--2 {
        top: 4rem;
    }
}

/* Video Section */
.video-container {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Activity Details Enrichment */
.detail-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-left: 4px solid var(--color-accent-primary);
    padding-left: 10px;
    color: var(--color-dark);
}

.detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.detail-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-list li::before {
    content: '\f00c';
    /* FontAwesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-accent-secondary);
}

.note-box {
    border: 2px solid #ff5252;
    background-color: #fff5f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.note-box h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.note-list {
    list-style: none;
    padding: 0;
}

.note-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #d32f2f;
}

.note-list li::before {
    content: '\f071';
    /* FontAwesome warning icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #d32f2f;
}

/* Charm Section */
.charm-section {
    padding: 6rem 0;
    background: #fff;
}

.charm-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.charm-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.charm-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.charm-icon {
    font-size: 2.5rem;
    color: var(--color-accent-primary);
    margin-bottom: 1rem;
}

.charm-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.access-map-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.access-map-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Tamagawa Charm Section */
.tamagawa-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
}

.tamagawa-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-sub);
}

.tamagawa-map-container {
    max-width: 1000px;
    margin: 0 auto 6rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.tamagawa-map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.tamagawa-map {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Charm Points List Layout */
.charm-points-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 4rem;
}

.charm-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.charm-row.reverse {
    flex-direction: row-reverse;
}

.charm-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 350px;
}

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

.charm-row:hover .charm-image img {
    transform: scale(1.05);
}

.charm-content {
    flex: 1;
    padding: 2rem;
    position: relative;
}

.charm-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 122, 255, 0.08);
    line-height: 1;
    font-family: var(--font-heading);
    position: absolute;
    top: -2rem;
    left: 1rem;
    z-index: -1;
}

.charm-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
    font-weight: 800;
    line-height: 1.3;
    position: relative;
}

.charm-content p {
    color: var(--color-text-sub);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Placeholder Image Style */
.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #555;
    background: #eee;
}

@media (max-width: 900px) {
    .charm-row {
        flex-direction: column;
        gap: 2rem;
    }

    .charm-row.reverse {
        flex-direction: column;
    }

    .charm-image {
        width: 100%;
        height: 250px;
    }

    .charm-content {
        padding: 1rem 0;
    }

    .charm-number {
        font-size: 4rem;
        top: -1.5rem;
        left: 0;
    }

    .charm-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tamagawa-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .tamagawa-map-container {
        padding: 0.5rem;
        margin-left: -1rem;
        margin-right: -1rem;
        margin-bottom: 4rem;
        border-radius: 0;
    }
}

/* Mobile Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: #333;
    /* Fixed: Replaced undefined var(--color-dark) */
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        /* Increased opacity slightly */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1005;
        /* Increased z-index to ensure it sits above header */
        padding-top: 60px;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .main-nav li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease-in-out;
    }

    .main-nav.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for menu items */
    .main-nav.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .main-nav.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .main-nav.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .main-nav.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .main-nav.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .main-nav.active li:nth-child(6) {
        transition-delay: 0.6s;
    }

    /* Hamburger Animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Mobile Dropdown Fix */
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown:active .dropdown-menu,
    .has-dropdown:focus-within .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        background: rgba(0, 0, 0, 0.02);
        width: 100%;
        padding: 0;
        border: none;
        margin-top: 1rem;
    }

    .dropdown-menu a {
        padding-left: 2rem;
        font-size: 0.9rem;
    }
}

/* BBQ Page Layout */
.bbq-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

/* Video Section spacing adjustment */
.video-section {
    padding-top: 12rem !important;
    /* Increase padding to clear the slant */
    margin-top: -80px;
    /* Pull up to overlap with previous section's clip-path if present, or just to reduce gap */
    background: #f0f4f8;
    position: relative;
    z-index: 1;
    /* Ensure it stays below the content of the previous section if needed, or adjust as necessary */
}

/* Image Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

/* Make images clickable */
.tamagawa-map,
.intro-image,
.charm-image img,
.spot-image img,
.service-image-full {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.tamagawa-map:hover,
.intro-image:hover,
.charm-image img:hover,
.spot-image img:hover,
.service-image-full:hover {
    opacity: 0.9;
}

/* News Section */
.news-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.news-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.news-item:last-child {
    border-bottom: none;
}

.news-link {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link:hover {
    background: rgba(0, 0, 0, 0.02);
    padding-left: 1.5rem;
}

.news-item .news-date {
    color: var(--color-accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 100px;
    flex-shrink: 0;
}

.news-item .news-title {
    color: var(--color-text-main);
    font-size: 1.05rem;
    line-height: 1.6;
    flex: 1;
}

.news-link:hover .news-title {
    color: var(--color-accent-primary);
}

@media (max-width: 768px) {
    .news-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.2rem 0.5rem;
    }

    .news-link:hover {
        padding-left: 0.5rem;
    }

    .news-item .news-date {
        min-width: auto;
        font-size: 0.85rem;
    }

    .news-item .news-title {
        font-size: 1rem;
    }
}