/*
Theme Name: OHASHI REN BOXING RESPONSIVE THEME
Theme URI: https://log-tech.jp/
Author: INGRID PEREZ - LogTech
Author URI: https://i-designs.com 
Description: A responsive WordPress theme for OHASHI REN created by Ingrid Perez. 
Version: 1.0
Text Domain: ohashi-ren-theme 
*/

/* Reset and base styles */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
    --primary-color: #FFD200;
    --background-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #888888;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: #1a1a1a;
    color: var(--text-light);
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    width: 100%;
    position: relative;
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* For Japanese text */
.japanese-text {
    font-family: 'Noto Sans JP', sans-serif; 
}

/* WordPress Admin Bar Adjustment */
body.admin-bar header {
    top: 32px; /* Height of WP admin bar */
}

body.admin-bar header.scrolled {
    background-color: var(--background-dark);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(26, 26, 26, 0.5);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: var(--background-dark);
}

/* Container Styles */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 6rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    padding: 0 6rem;
    position: relative;
}

.logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    height: 100%;
}

.nav-item, .button {
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

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

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

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

/* Hero Section Adjustment */
.hero {
    height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/hero-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 6rem;
    width: 100%;
}

.hero-name {
    margin-bottom: 2rem;
}

.hero-name .first-name {
    font-size: 120px;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: 15px;
    font-weight: 600;
}

.hero-name .last-name {
    font-size: 120px;
    line-height: 1;
    letter-spacing: 15px;
    font-weight: 600;
}

.hero-banner {
    background-color: rgba(26, 26, 26, 0.8);
    padding: 1.5rem 2rem;
    display: flex;
	flex-direction: column;
	gap: 1rem;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    border-radius: 4px;
}

.hero-banner h2 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-light);
}

.hero-banner .button {
    margin: 0;
}

.hero-news {
	font-size: 1.2rem;
	text-decoration: none;
	color: #fff;
}

.hero-news:hover {
	color: var(--primary-color);
}

body.admin-bar .hero {
    min-height: calc(100vh - 32px); /* Adjust for admin bar */
    padding-top: 102px; /* 70px header + 32px admin bar */
}

/* Mobile Menu Base Styles */
.mobile-menu {
    display: none;
}

.mobile-menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1002;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--text-light);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--background-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .nav-item,
    .nav-links .button {
        font-size: 1.2rem;
        padding: 0.8rem 0;
    }

    .nav-links .button {
        margin-top: 0.25rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Profile Section */
.profile {
    padding: 8rem 2rem;
    background-color: #222;
    position: relative;
    overflow: hidden;
}

.profile-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 0 6rem;
    position: relative;
    z-index: 2;
}

.profile-text {
    position: relative;
}

.profile-text .japanese-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.profile-text h2 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: 5px;
}

.profile-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ABABAB;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.profile-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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


/*Profile Card */
.profile-card {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    margin-top: 10px;
}

.profile-item {
    margin-bottom: 30px;
    font-size: 16px;
    color: #fff;
}

.profile-item strong {
    font-weight: bold;
}

/* Profile Decorative Image */
.profile-deco {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.profile-deco img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

/* Achievements Section */
.achievements {
    padding: 5rem 2rem;
    background-color: var(--background-dark);
}

.achievements h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-row {
    display: grid;
    gap: 4rem;
}

.stats-row:first-child {
    grid-template-columns: repeat(3, 1fr); /*If change needed: Turn into 2 for 2 rows only*/
}

.stats-row:last-child {
    grid-template-columns: repeat(3, 1fr);
}

.stat-item {
    padding: 2rem;
}

.stat-numbersmall {
	font-size: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--primary-color);
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.highlight-achievements {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #f4f4f4; /* Background color for the section */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.highlight-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-details {
    margin-bottom: 20px;
}

.highlight-item {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.highlight-item strong {
    font-weight: bold;
    color: var(--primary-color);
}

.highlight-intro {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.other-achievements-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.other-achievements {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.other-achievements li {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}




/* Story Section */
.story {
    padding: 5rem 2rem;
    background-color: #222;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.story h2 {
    margin-bottom: 2rem;
}

.story-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    margin-bottom: 5px; 
    text-align: justify;
    letter-spacing: 0.5px;
	padding-bottom: 1rem;
}


.text-line {
	border-bottom: 2px solid var(--text-gray)
}

.strong {
    font-weight: bold;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ABABAB;
    font-weight: 400;
}

.story-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 33.333%;
    height: 100%;
    padding: 0 0.5rem;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-arrow {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 100px;
    height: 50px;
    border-radius: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 210, 0, 0.3);
}

/* News Section */
.news {
    padding: 5rem 2rem;
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.news-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/news-background.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.news-text {
    position: relative;
    margin-bottom: 4rem;
}

.news-text .japanese-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.news-text h2 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: 5px;
}

.news-list-container {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    position: relative;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.news-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.news-date {
    color: var(--text-light);
    font-weight: 400;
    font-size: 1rem;
}

.news-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-dark);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    width: auto;
    text-align: center;
}

.news-title {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 400;
}

.news-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-arrow:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-50%) translateX(5px);
}

.news-navigation {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.news-next-page {
    width: 100px;
    height: 50px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.news-next-page:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
    transform: translateX(5px);
}

/* Sponsor Section */
.sponsor {
    padding: 8rem 2rem;
    background-color: #222;
    position: relative;
    overflow: hidden;
}

.sponsor-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 6rem;
    position: relative;
    z-index: 2;
}

.sponsor-text {
    position: relative;
    margin-bottom: 4rem;
}

.sponsor-text .japanese-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.sponsor-text h2 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: 5px;
}

.sponsor-categories {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.main-sponsors, .official-sponsors {
    text-align: center;
}

.main-sponsors h3, .official-sponsors h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    justify-items: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.sponsor-grid img {
    max-width: 300px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.sponsor-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    height: auto;
    border: 1px solid var(--primary-color);
}

.button:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 210, 0, 0.3);
}

/* Mobile menu button should always have background */
.mobile-menu .button {
    background-color: var(--primary-color);
    color: var(--background-dark);
    width: 100%;
    justify-content: center;
}

/* Site Content */
.site-content {
    min-height: calc(100vh - 70px); /* Account for header height */
    display: flex;
    flex-direction: column;
}

/* Contact Page Styles */
.contact-page {
    padding: 4.5rem 0rem;
    background-color: var(--background-dark);
    flex: 1;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem; /* Add padding for smaller screens */
}

.contact-form {
    background-color: #222;
    padding: 2rem;
    border-radius: 8px;
}

/* Form Group Styles */
.form-group {
    margin-bottom: 1.5rem;
}

/* Input and Textarea Styles */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #333;
    border: 1px solid #444;
    color: var(--text-light);
    border-radius: 4px;
}


.form-group {
    opacity: 0; /* Start hidden */
    transition: opacity 0.5s ease; /* Transition for fade effect */
    display: none; /* Ensure forms are hidden by default */
}

.form-group.fade-in {
    display: block; /* Show the form */
    opacity: 1; /* Fully visible */
}

.form-group.fade-out {
    opacity: 0; /* Start fading out */
}


.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #333;
    border: 1px solid #444;
    color: var(--text-light);
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.scroll-button {
    display: block;
    margin: 20px auto;
    background-color: #000;
    color: var(--primary-color);
    font-size: 24px;
    text-decoration: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.scroll-button:hover {
    background-color: #555;
}



.sponsor-contact {
    background-color: #222;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.sponsor-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sponsor-contact ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.sponsor-contact li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.sponsor-contact p {
    color: var(--text-light);
    font-weight: bold;
    margin-top: 1rem;
}


/* Footer Styles */
.site-footer {
    background-color: var(--background-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 6rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-nav .nav-item {
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-nav .nav-item:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    position: absolute;
    right: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.privacy-policy {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.privacy-policy:hover {
    color: var(--primary-color);
}



.sponsor-cta {
    display: flex;
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.sponsor-cta-image {
    width: 60%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.sponsor-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sponsor-cta-content {
    width: 40%;
    padding: 4rem;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.sponsor-cta-content h3 {
    color: var(--background-dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.sponsor-cta-content .sponsor-text {
    display: block;
    margin-bottom: 0.5rem;
}

.sponsor-cta-content .japanese-text {
    display: block;
}

.sponsor-cta-content p {
    color: var(--background-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.sponsor-cta-content .button {
    color: var(--background-dark);
    border-color: var(--background-dark);
    align-self: flex-start;
}

.sponsor-cta-content .button:hover {
    background-color: var(--background-dark);
    color: var(--primary-color);
}



/* Oshirase Single Post Styles */
.oshirase-single {
    padding: 8rem 2rem 5rem;
    background-color: var(--background-dark);
    min-height: calc(100vh - 70px);
}

.oshirase-content {
    max-width: 800px;
    margin: 0 auto;
}

.oshirase-header {
    margin-bottom: 3rem;
}

.oshirase-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.oshirase-title {
    font-size: 2.5rem;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 0;
}

.oshirase-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ABABAB;
    margin-bottom: 4rem;
}

.oshirase-body p {
    margin-bottom: 1.5rem;
}

.ticket-cta {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.ticket-cta h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ticket-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.ticket-cta .button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.ticket-cta .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 210, 0, 0.3);
}

.ticket-cta .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.ticket-cta .button:hover .arrow {
    transform: translateX(5px);
}



/* Ticket CTA Section */
.ticket-cta-section {
    padding: 4rem 2rem;
    background-color: var(--primary-color);
}

.ticket-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.ticket-cta-section .ticket-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.ticket-cta-section .ticket-cta-text {
    flex: 1;
    text-align: left;
}

.ticket-cta-section h3 {
    color: var(--background-dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.ticket-cta-section .sponsor-text {
    display: block;
    margin-bottom: 0.5rem;
}

.ticket-cta-section .japanese-text {
    display: block;
}

.ticket-cta-section p {
    color: var(--background-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

.ticket-cta-section .button {
    color: var(--background-dark);
    border-color: var(--background-dark);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ticket-cta-section .button:hover {
    background-color: var(--background-dark);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ticket-cta-section .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.ticket-cta-section .button:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .ticket-cta-section {
        padding: 3rem 1rem;
    }

    .ticket-cta-section .ticket-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .ticket-cta-section .ticket-cta-text {
        text-align: center;
    }

    .ticket-cta-section h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .ticket-cta-section p {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .ticket-cta-section .button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Contact Hero Styles */
.contacthero {
    width: 100%; /* Full width */
    height: 600px; /* Adjust height as needed */
    background-image: url('img/story-5.webp'); 
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center; /* Centers the image */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    overflow: hidden; /* Prevents overflow if the image is larger */
    margin: 0; /* Remove any margin */
}

.contacthero-content {
    padding: 2rem; /* Add padding to the content */
}

.contacthero-content h1 {
    font-size: 3rem; /* Adjust size as needed */
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contacthero-content p {
    font-size: 1.2rem; /* Adjust size as needed */
    max-width: 600px; /* Limit width for readability */
}

.category-buttons {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
	gap: 1rem;
}

.category-button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	font-weight: bold;
}

.category-button:hover {
    background-color: #FFD200; /* Lighter shade on hover */
}

.explanation-text {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 1rem;
    color: var(--text-light);
}

/* General Oshirase Template */
.oshirase-single {
    padding: 100px 20px;
}

.oshirase-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.oshirase-header {
    text-align: center;
    margin-bottom: 20px;
}

.oshirase-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.oshirase-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.news-date,
.news-category {
    background: #FFD200;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

/* Content Styles */
.oshirase-body {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.oshirase-text {
    background: #fff8cc;
    padding: 15px;
    border-left: 5px solid #FFD200;
    margin-bottom: 20px;
}

/* Image Styling */
.oshirase-image {
    text-align: center;
    margin-bottom: 20px;
}

.oshirase-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Ticket CTA */
.ticket-cta {
    text-align: center;
    background: #FFD200;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.ticket-cta h2 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.ticket-cta p {
    font-size: 14px;
    color: #555;
}

.ticket-cta .button {
    display: inline-flex;
    align-items: center;
    background: #333;
    color: #FFD200;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.ticket-cta .button:hover {
    background: #222;
}

.ticket-cta .arrow {
    margin-left: 8px;
}

/* ホームへ Button - Default (PC) */
.home-button {
    text-align: center;
    margin: 30px 0;
}

.home-button .button {
    display: inline-block;
    background: #FFD200;
    color: #333;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.home-button .button:hover {
    background: #e6bf00;
    transform: scale(1.05);
}

/* Privacy Policy Styles */

.privacy-policy-content {
	margin-top: 6rem;
    padding: 2rem 4rem 2rem 4rem;
}

#form-scroll {
		margin-top: 1.5rem;
	}