/* ============================
   DESKTOP NAVBAR
   ============================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20,20,20,0.95);
    padding: 15px 30px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-family: 'Yuji Syuku', serif;
    font-size: 28px;
    color: white;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-links li a.active {
    color: red;
}

.hamburger {
    display: none;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar a:hover {
    color: #ff3333;
}

.navbar a.active {
    color: #b30000;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 4px;
}

/* ============================
   MOBILE + TABLET NAVBAR
   ============================ */
@media (max-width: 1024px) {
    body {
        padding-top: calc(var(--navbar-height));
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: 0.3s;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(20,20,20,0.95);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        text-align: center;
        gap: 20px;
    }

    .nav-links.open {
        display: flex;
    }
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1 {
    font-family: "Yuji Syuku", serif;
    font-size: 48px;
    margin-bottom: 20px;
}

h2 {
    font-family: "M PLUS 1p", sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
}

h3 {
    font-family: "M PLUS 1p", sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

h4 {
    font-family: "M PLUS 1p", sans-serif;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hero-copy h1 {
    font-size: 56px;
    letter-spacing: 2px;
}

.hero-copy {
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

/* ============================
   GLOBAL VARIABLES
   ============================ */
:root {
    --navbar-height: 60px;
}

/* ============================
   BODY & TEXT
   ============================ */
body {
    font-family: "Noto Sans", Arial, sans-serif;
    background-color: rgba(17,17,17,0.85);
}

p {
    font-family: "Noto Sans", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Desktop: push content below fixed navbar */
@media (min-width: 1025px) {
    body {
        padding-top: 90px;
    }
}

/* ============================
   DOJO BORDER & ACCENTS
   ============================ */
.dojo-border {
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 20px;
    position: relative;
}

.dojo-border::before,
.dojo-border::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.25);
}

.dojo-border::before {
    top: -6px;
    left: 20px;
}

.dojo-border::after {
    bottom: -6px;
    right: 20px;
}

.dojo-accent {
    border-left: 4px solid #b30000;
    padding-left: 20px;
}

.dojo-texture {
    background: radial-gradient(rgba(255,255,255,0.05), rgba(0,0,0,0.4));
    border-radius: 8px;
}

/* ============================
   FOOTER
   ============================ */
.footer-divider {
    height: 2px;
    width: 80%;
    margin: 40px auto 20px auto;
    background: rgba(255,255,255,0.25);
    position: relative;
}

.footer-divider::after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.35);
}

.footer {
    background-color: rgb(52,52,52);
    padding: 10px 0;
    text-align: center;
    margin-top: 0;
}

.footer-text {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    font-family: "Noto Sans", sans-serif;
}

.footer-social img,
.social-icons img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin: 0 8px;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    margin-top: 10px;
}

.footer-social img:hover,
.social-icons img:hover {
    transform: scale(1.15);
    opacity: 0.85;
}

/* ============================
   MOBILE TYPOGRAPHY
   ============================ */
@media (max-width: 700px) {

   /* body {
        padding-top: calc(var(--navbar-height));
    }*/

    .hero-copy h1 {
        font-size: 40px;
        letter-spacing: 1px;
    }

    h1 { font-size: 36px; }
    h2 { font-size: 26px; margin-bottom: 12px; }
    h3 { font-size: 20px; margin-bottom: 8px; }
    h4 { font-size: 18px; margin-bottom: 8px; }

    p {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .intro-bar {
        font-size: 18px;
        padding: 20px 15px;
    }

    .two-column {
        flex-direction: column;
        gap: 20px;
    }

    .image-card img {
        height: 250px;
    }
}

/* ============================
   MOBILE SOCIAL BAR
============================ */
.mobile-social-bar {
    display: none;
}

@media (max-width: 700px) {
    .mobile-social-bar {
        display: flex;
        justify-content: center;
        gap: 18px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(40,40,40,0.9);
        padding: 10px 0;
        z-index: 9999;
    }

    .mobile-social-bar img {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        object-fit: contain;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .mobile-social-bar img:hover {
        transform: scale(1.2);
        opacity: 0.85;
    }

    body {
        padding-bottom: 10px;
    }

    .mobile-social-bar {
        display: none;
    }
}

