/* cmsms stylesheet: Stanne Studios Theme modified: Saturday, August 2, 2025 7:44:15 PM */
/* Core Styles */
body {
    background-color: #1E1E1E;
    color: #E0E0E0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: #00BFFF;
    text-decoration: none;
}

a:hover {
    color: #E0E0E0;
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hamburger Menu Styles */
.menu-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #00BFFF;
    margin: 6px 0;
    transition: 0.4s;
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: -300px;
    /* Hidden off-screen to the right */
    width: 300px;
    /* Width of the menu panel */
    height: 100%;
    background-color: rgba(30, 30, 30, 0.95);
    z-index: 99;
    transition: right 0.3s ease-in-out;
    /* Smooth transition */
    padding-top: 60px;
    /* Space for the icon */
}

.menu-overlay.open {
    right: 0;
    /* Slide into view */
}

.menu-overlay a {
    font-size: 1.5em;
    /* Slightly smaller font for the slide-in menu */
    padding: 15px;
    display: block;
}

/* Homepage Asset Positioning */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    text-align: center;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero-asset {
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 1;
    opacity: 0.7;
    top: 50%;
    transform: translateY(-50%);
}

.hero-asset.left {
    left: 20px;
}

.hero-asset.right {
    right: 20px;
}

.hero .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00BFFF;
    color: #1E1E1E;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero .cta-button:hover {
    background-color: #008080;
}

.section-title {
    text-align: center;
    font-size: 2em;
    margin: 40px 0 20px;
    border-bottom: 2px solid #00BFFF;
    padding-bottom: 10px;
    display: inline-block;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.flex-item {
    flex-basis: 100%;
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 5px;
}

.flex-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .flex-item {
        flex-basis: 100%;
    }
}

/* Contact Us Specific Styles - New Section */
.contact-form {
    width: 50%;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    background-color: #333;
    color: #E0E0E0;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 150px;
}

.contact-form input[type="submit"] {
    background-color: #00BFFF;
    color: #1E1E1E;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contact-form input[type="submit"]:hover {
    background-color: #008080;
}

/* Pop-up Confirmation Styles */
.popup-container {
    display: none;
    /* Hide by default */
    position: fixed;
    z-index: 101;
    /* Above the menu overlay */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
    border: 2px solid #00BFFF;
}

.close-button {
    color: #00BFFF;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #E0E0E0;
    text-decoration: none;
    cursor: pointer;
}

/* News Module Styles */
.NewsSummary {
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.NewsSummaryPostname {
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.NewsSummaryPostname a {
    color: #00BFFF;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.NewsSummaryPostdate {
    color: #808080;
    font-style: italic;
    font-size: 14px;
}

.NewsSummaryContent {
    color: #E0E0E0;
    line-height: 1.6;
}

.NewsSummaryMorelink a {
    color: #00BFFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.NewsSummaryMorelink a:hover {
    color: #008080;
}

/* Base */
body {
    background-color: #1E1E1E;
    color: #E0E0E0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: #00BFFF;
    text-decoration: none;
}

a:hover {
    color: #E0E0E0;
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header / slide menu */
.site-header {
    position: relative;
    min-height: 70px;
}

.menu-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #00BFFF;
    margin: 6px 0;
    transition: 0.4s;
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.95);
    z-index: 99;
    transition: right 0.3s ease-in-out;
    padding-top: 60px;
}

.menu-overlay.open {
    right: 0;
}

.menu-overlay a,
.menu-overlay span {
    font-size: 1.5em;
    padding: 15px;
    display: block;
}

/* Hero */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    text-align: center;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 2.4rem;
}

.hero .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00BFFF;
    color: #1E1E1E;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero .cta-button:hover {
    background-color: #008080;
    color: #1E1E1E;
    text-decoration: none;
}

/* Homepage sections */
.home-feature,
.home-blog-roll {
    padding: 20px 0 30px;
}

.home-feature h1,
.home-blog-roll h1 {
    font-size: 2rem;
    margin: 20px 0 10px;
}

.home-feature h2 {
    font-size: 1.5rem;
    margin-top: 0;
    color: #00BFFF;
}

.home-feature p,
.home-feature blockquote {
    line-height: 1.7;
    max-width: 900px;
}

.home-feature blockquote {
    border-left: 4px solid #00BFFF;
    margin: 24px 0;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.03);
}

/* Category list */
.category-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 30px;
}

.category-list li {
    margin: 6px 0;
}

.category-list span {
    color: #E0E0E0;
}

/* News cards */
.NewsSummary {
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.NewsSummaryPostname {
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.NewsSummaryPostname a {
    color: #00BFFF;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.NewsSummaryPostdate {
    color: #808080;
    font-style: italic;
    font-size: 14px;
    margin-bottom: 12px;
}

.NewsSummaryContent {
    color: #E0E0E0;
    line-height: 1.6;
}

.NewsSummaryMorelink a {
    color: #00BFFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.NewsSummaryMorelink a:hover {
    color: #008080;
}

/* Footer */
.site-footer {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding: 20px 0 40px;
    color: #808080;
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 240px;
        padding: 40px 0;
    }

    .hero h1,
    .home-feature h1,
    .home-blog-roll h1 {
        font-size: 1.8rem;
    }

    .home-feature h2 {
        font-size: 1.25rem;
    }

    .menu-overlay {
        width: 260px;
        right: -260px;
    }
}

.page-content {
    padding: 40px 0 60px;
}

.page-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.page-content p {
    line-height: 1.7;
    max-width: 800px;
}

.flex-item h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #00BFFF;
}

.flex-item p {
    line-height: 1.6;
}

.page-content {
    padding: 40px 0 60px;
}

.page-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.page-content p {
    line-height: 1.7;
    max-width: 800px;
}

.contact-form {
    width: 50%;
    margin: 0 auto 50px;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    background-color: #333;
    color: #E0E0E0;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input[type="submit"] {
    background-color: #00BFFF;
    color: #1E1E1E;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contact-form input[type="submit"]:hover {
    background-color: #008080;
}

.visit-block {
    max-width: 800px;
    margin: 0 auto;
}

.visit-block h2 {
    margin-bottom: 15px;
    color: #00BFFF;
}

.hidden-botcheck {
    display: none !important;
}

@media (max-width: 768px) {
    .contact-form {
        width: 100%;
    }
}

/* Blog intro / page shell */
.section {
    padding: 48px 0;
}

.page-intro {
    padding-top: 40px;
    padding-bottom: 60px;
}

.section-header {
    margin-bottom: 32px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #00BFFF;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.25rem;
    margin: 0 0 12px;
    border: none;
    display: block;
    padding-bottom: 0;
}

.section-desc {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
    color: #CFCFCF;
}

/* Category list */
.blog-categories-wrap {
    margin: 28px 0 34px;
}

.blog-categories {
    list-style: disc;
    padding-left: 22px;
    margin: 0;
}

.blog-categories li {
    margin: 8px 0;
}

.blog-categories a,
.blog-categories span {
    font-size: 1rem;
}

/* Post cards */
.blog-post-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.post-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.post-meta-top {
    margin-bottom: 10px;
}

.post-date {
    color: #808080;
    font-style: italic;
    font-size: 14px;
}

.post-title {
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
    font-size: 1.6rem;
}

.post-title a {
    color: #00BFFF;
    text-decoration: none;
}

.post-title a:hover {
    color: #E0E0E0;
    text-decoration: underline;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
    color: #B8B8B8;
    font-size: 0.95rem;
}

.post-excerpt {
    line-height: 1.7;
    color: #E0E0E0;
}

.post-more {
    margin-top: 14px;
}

.post-more a {
    color: #00BFFF;
    font-weight: bold;
    text-decoration: none;
}

.post-more a:hover {
    color: #008080;
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .post-title {
        font-size: 1.35rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 6px;
    }
}

/* Single post page */
.blog-post-page {
    padding-top: 40px;
    padding-bottom: 60px;
}

.post-single {
    max-width: 900px;
    margin: 0 auto;
}

.single-post-meta {
    justify-content: center;
    margin-top: 12px;
    margin-bottom: 0;
}

.post-content {
    margin-top: 32px;
    line-height: 1.8;
    color: #E0E0E0;
}

.post-content p {
    margin: 0 0 1.2em;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    color: #00BFFF;
}

.post-content ul,
.post-content ol {
    margin: 0 0 1.2em 1.5em;
}

.post-content li {
    margin-bottom: 0.5em;
}

.post-content blockquote {
    border-left: 4px solid #00BFFF;
    margin: 24px 0;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.03);
}

.post-content a {
    color: #00BFFF;
}

.post-actions {
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 768px) {
    .post-content {
        font-size: 1rem;
    }
}

/* Top navigation */
.site-header {
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

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

.site-brand a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
}

.site-brand a:hover {
    color: #00BFFF;
    text-decoration: none;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex-wrap: wrap;
}

.site-nav a {
    color: #00BFFF;
    text-decoration: none;
    font-size: 1rem;
}

.site-nav a:hover {
    color: #E0E0E0;
    text-decoration: underline;
}

/* Hide old hamburger menu styles */
.menu-icon,
.menu-overlay {
    display: none !important;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        justify-content: flex-start;
        gap: 14px;
    }

    .site-nav a {
        font-size: 0.95rem;
    }
}

.newsletter-optin {
    margin-top: 18px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
    cursor: pointer;
    color: #E0E0E0;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    height: 52px;
    width: auto;
    display: block
}

.site-title {
    color: #00BFFF;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

.hero-logo {
    display: block;
    max-width: 420px;
    width: 100%;
    height: auto;
    margin: 0 auto 24px;
}

.newsletter-divider {
    margin: 40px 0 24px;
    border-top: 1px solid var(--border-color);
}

.newsletter-signup-block {
    padding-top: 8px;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-signup-panel {
    display: none;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.newsletter-inline-copy {
    margin-bottom: 14px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: center;
}