/*
Theme Name: RA Strategos Theme
Theme URI:http://example.com
Description:RA Strategosのテーマです。
Version:1.0
Author:Maeshima
*/


/* Custom Styles mimicking WordPress Lightning Theme vibes */
body {
    /* Enforce Serif font globally */
    font-family: 'Noto Serif JP', serif;
    color: #334155;
    line-height: 1.8;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
}

/* Hero Section Overlay */
.hero-bg {
    background-color: #0A2342; /* Updated to match new brand navy */
    background-image: linear-gradient(135deg, #0A2342 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.hero-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Lightning-style Section Headers */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #c5a059;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
#mobile-menu.active {
    max-height: 400px;
    opacity: 1;
}

/* Custom Notification Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
