/*
Theme Name: ACADCSIRT Theme
Theme URI: https://acadcsirt.edu
Author: ACADCSIRT Research Center
Author URI: https://acadcsirt.edu
Description: Custom WordPress theme for SGU Academic CSIRT - Cybersecurity Research Center. Warm color palette with modern design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: acadcsirt-theme
*/

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Primary Custom Colors */
    --cream-bg: #FFFDF1;
    --peach-card: #FFCE99;
    --orange-primary: #FF9644;
    --brown-dark: #562F00;
    --brown-light: #8B5A2B;

    /* Derived colors */
    --orange-hover: #E8872E;
    --peach-light: #FFE4C4;
    --cream-dark: #FFF5E1;
    --border-color: #E8B87A;

    /* Text colors */
    --text-primary: #562F00;
    --text-secondary: #8B5A2B;
    --text-tertiary: #A67C52;
    --text-on-orange: #FFFFFF;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(86, 47, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(86, 47, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(86, 47, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(86, 47, 0, 0.15);
    --shadow-2xl: 0 25px 50px rgba(86, 47, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--cream-bg);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--orange-primary);
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-narrow {
    max-width: 1024px;
}

.container-wide {
    max-width: 1440px;
}

section {
    padding: var(--spacing-3xl) 0;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

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

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

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

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 241, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.navbar-logo img {
    height: 80px;
    width: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    list-style: none;
}

.navbar-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--text-primary);
}

.navbar-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text-primary);
}

.navbar-auth {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Mobile Menu */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.navbar-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream-bg);
        flex-direction: column;
        padding: var(--spacing-lg);
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-auth {
        display: none;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: var(--orange-primary);
    color: var(--text-on-orange);
    border-color: var(--orange-primary);
}

.btn-primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    color: var(--text-on-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--brown-dark);
    color: white;
    border-color: var(--brown-dark);
}

.btn-secondary:hover {
    background: var(--brown-light);
    border-color: var(--brown-light);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background: var(--peach-light);
    border-color: var(--orange-primary);
    color: var(--text-primary);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-icon {
    transition: transform var(--transition-normal);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ========================================
   CARDS
   ======================================== */
.card {
    background: var(--peach-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.card-white {
    background: var(--cream-bg);
}

.card-transparent {
    background: rgba(255, 206, 153, 0.5);
    backdrop-filter: blur(10px);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--orange-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-lg);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   BADGES
   ======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
}

.badge-primary {
    background: var(--orange-primary);
    color: white;
}

.badge-secondary {
    background: var(--peach-light);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.badge-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.badge-dark {
    background: rgba(86, 47, 0, 0.2);
    color: var(--brown-dark);
    border-color: rgba(86, 47, 0, 0.3);
}

.badge svg {
    width: 12px;
    height: 12px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, var(--orange-primary), var(--peach-card), var(--orange-primary));
    border-bottom: 1px solid var(--border-color);
}

.hero-pattern {
    position: absolute;
    inset: 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='%23562F00' 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");
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {

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

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 6rem 0 8rem;
}

.hero h1 {
    color: var(--brown-dark);
}

.hero p {
    font-size: 1.25rem;
    color: var(--brown-light);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    font-family: 'Newsreader', serif;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--brown-light);
}

.hero-divider {
    width: 1px;
    height: 48px;
    background: rgba(86, 47, 0, 0.3);
}

/* Wave Separator */
.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.wave-separator svg {
    width: 100%;
    height: auto;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: rgba(255, 206, 153, 0.2);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-xl);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-sm);
    border-radius: var(--radius-full);
    background: rgba(255, 150, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--orange-primary);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-primary);
    font-family: 'Newsreader', serif;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========================================
   QUOTE SECTION
   ======================================== */
.quote-section {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-light) 100%);
    color: white;
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: linear-gradient(135deg, rgba(255, 150, 68, 0.2) 0%, rgba(255, 206, 153, 0.2) 100%);
    border-radius: 50%;
    filter: blur(60px);
}

.quote-icon {
    width: 48px;
    height: 48px;
    color: var(--peach-card);
    margin-bottom: var(--spacing-lg);
}

.quote-text {
    font-size: 1.5rem;
    font-family: 'Newsreader', serif;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    color: white;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.quote-author-bar {
    width: 4px;
    height: 48px;
    background: linear-gradient(to bottom, var(--orange-primary), var(--peach-card));
    border-radius: var(--radius-full);
}

.quote-author-name {
    color: var(--peach-card);
    font-size: 1.125rem;
}

/* ========================================
   PARTNER LOGOS
   ======================================== */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
}

@media (max-width: 1024px) {
    .partner-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.partner-card {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    background: rgba(255, 206, 153, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.partner-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 150, 68, 0.3);
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity var(--transition-normal);
}

.partner-card:hover img {
    opacity: 1;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--orange-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-primary);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   RESEARCH AREAS
   ======================================== */
.research-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 206, 153, 0.5);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.research-card:hover {
    border-color: rgba(255, 150, 68, 0.3);
    box-shadow: var(--shadow-xl);
}

.research-card-image {
    position: relative;
    height: 224px;
    overflow: hidden;
}

.research-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.research-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--cream-bg) 0%, rgba(255, 253, 241, 0.6) 60%, transparent 100%);
}

.research-card-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
}

.research-card-content {
    padding: var(--spacing-lg);
}

.research-card-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-normal);
}

.research-card:hover .research-card-title {
    color: var(--orange-primary);
}

.research-card-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================================
   INDUSTRIES
   ======================================== */
.industry-card {
    text-align: center;
    padding: var(--spacing-xl);
}

.industry-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--radius-full);
    background: rgba(255, 150, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-normal);
}

.industry-card:hover .industry-icon {
    background: rgba(255, 150, 68, 0.2);
}

.industry-icon svg {
    width: 32px;
    height: 32px;
    color: var(--orange-primary);
}

.industry-name {
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-normal);
}

.industry-card:hover .industry-name {
    color: var(--orange-primary);
}

/* ========================================
   SEPARATOR
   ======================================== */
.separator {
    height: 1px;
    background: var(--border-color);
    margin: 0;
    border: none;
}

/* ========================================
   TEXT UTILITIES
   ======================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-orange {
    color: var(--orange-primary);
}

.text-white {
    color: white;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

/* ========================================
   SPACING UTILITIES
   ======================================== */
.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in-delay-1 {
    animation-delay: 0.1s;
}

.fade-in-delay-2 {
    animation-delay: 0.2s;
}

.fade-in-delay-3 {
    animation-delay: 0.3s;
}

/* Spin animation for decorative elements */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin 30s linear infinite;
}

.animate-spin-slow-reverse {
    animation: spin 25s linear infinite reverse;
}

/* ========================================
   LOGO ANIMATION (Hero)
   ======================================== */
.logo-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.logo-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 150, 68, 0.1) 0%, rgba(255, 206, 153, 0.1) 100%);
    filter: blur(40px);
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(232, 184, 122, 0.3);
}

.logo-ring-1 {
    inset: 0;
}

.logo-ring-2 {
    inset: 24px;
    border-color: rgba(232, 184, 122, 0.2);
}

.logo-ring-3 {
    inset: 48px;
    border-color: rgba(232, 184, 122, 0.1);
}

.logo-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image-wrapper {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: var(--cream-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-image-wrapper img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* ========================================
   WORDPRESS SPECIFIC OVERRIDES
   ======================================== */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

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

.entry-content p {
    margin-bottom: var(--spacing-md);
}

.entry-content h2 {
    margin-top: var(--spacing-2xl);
}

/* Gutenberg block alignments */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* ========================================
   LOGO ANIMATION
   ======================================== */
/* Container Utama */
.logo-container {
    position: relative;
    width: 300px;
    /* Sesuaikan ukuran */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base Style untuk semua Ring */
.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 123, 255, 0.5);
    /* Warna garis (biru transparan) */
    inset: 0;
    margin: auto;
}

/* Ukuran masing-masing Ring */
.logo-ring-1 {
    width: 100%;
    height: 100%;
    border-style: dashed;
}

.logo-ring-2 {
    width: 85%;
    height: 85%;
    border-style: dotted;
    border-color: rgba(255, 0, 0, 0.3);
}

.logo-ring-3 {
    width: 70%;
    height: 70%;
    border-style: double;
}

/* Animasi Spin */
.animate-spin-slow {
    animation: spin 30s linear infinite;
}

.animate-spin-slow-reverse {
    animation: spin-reverse 30s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* Memastikan Logo di Tengah */
.logo-center {
    z-index: 10;
    width: 150px;
    /* Ukuran Logo */
    height: 150px;
    background: white;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.logo-image-wrapper img {
    width: 100%;
    height: auto;
}