/* =========================
   GLOBAL RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f4ef;
    color: #171717;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}


/* =========================
   HEADER / NAVIGATION
========================= */

.site-header {
    background: #f8f4ef;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    width: min(1120px, 92%);
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo img {
    height: 85px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    opacity: 0.65;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #111111;
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* =========================
   BUTTONS / SHARED ELEMENTS
========================= */

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
}

.primary-btn {
    background: #111111;
    color: #ffffff;
}

.secondary-btn {
    border: 2px solid #111111;
    color: #111111;
}

.text-link {
    font-weight: 800;
    border-bottom: 2px solid #111111;
}


/* =========================
   HERO SECTION
========================= */

.hero {
    min-height: calc(100vh - 81px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(248, 244, 239, 0.95), rgba(248, 244, 239, 0.75)),
        radial-gradient(circle at top right, rgba(255, 184, 77, 0.35), transparent 35%),
        radial-gradient(circle at bottom left, rgba(255, 107, 107, 0.22), transparent 35%);
}

.hero-inner {
    width: min(1120px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 780px;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.15rem;
    max-width: 620px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-feature-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
    transform: rotate(2deg);
}

.hero-card-top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.hero-card-top span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f8f4ef;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-card-main {
    padding: 48px 26px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 184, 77, 0.45), transparent 35%),
        radial-gradient(circle at bottom left, rgba(255, 107, 107, 0.22), transparent 38%),
        #111111;
    color: #ffffff;
}

.hero-card-main p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 14px;
}

.hero-card-main h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
    letter-spacing: -2px;
}

.hero-card-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.hero-card-bottom div {
    padding: 16px 12px;
    border-radius: 22px;
    background: #f8f4ef;
}

.hero-card-bottom strong,
.hero-card-bottom span {
    display: block;
}

.hero-card-bottom strong {
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-card-bottom span {
    font-size: 0.78rem;
    font-weight: 700;
}

/* =========================
   PAGE HERO
========================= */

.page-hero {
    padding: 110px 0 80px;
    background:
        radial-gradient(circle at top right, rgba(255, 184, 77, 0.28), transparent 35%),
        #f8f4ef;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1;
    letter-spacing: -2px;
    max-width: 850px;
    margin-bottom: 24px;
}

.page-hero p {
    max-width: 680px;
    font-size: 1.1rem;
}


/* =========================
   CONTENT SECTIONS
========================= */

.content-section {
    padding: 80px 0;
}

.section-heading {
    max-width: 850px;
    margin-bottom: 42px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1;
    letter-spacing: -2px;
}

.side-heading {
    max-width: none;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
}

.side-heading > div {
    max-width: 760px;
}


/* =========================
   ABOUT PAGE
========================= */

.two-column {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.two-column h2,
.contact-layout h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -1.5px;
}

.two-column p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

/* =========================
   ABOUT PAGE EXTRAS
========================= */

.about-services-section {
    background: #fffaf3;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-service-box {
    background: #ffffff;
    padding: 28px;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.about-service-box h3 {
    font-size: 1.25rem;
    line-height: 1.1;
    margin-bottom: 12px;
}

.about-feature-list {
    display: grid;
    gap: 18px;
}

.about-feature-list div {
    background: rgba(255, 255, 255, 0.08);
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-feature-list span {
    display: inline-block;
    font-weight: 900;
    margin-bottom: 18px;
    opacity: 0.45;
}

.about-feature-list h3 {
    font-size: 1.35rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.about-feature-list p {
    opacity: 0.85;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.event-types-grid div {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 999px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}


/* =========================
   SERVICES SECTION
========================= */

.services-section {
    background: #f8f4ef;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    min-height: 390px;
}

.service-card span {
    display: inline-block;
    font-weight: 900;
    margin-bottom: 34px;
    opacity: 0.35;
}

.service-card h3 {
    font-size: 1.45rem;
    line-height: 1.1;
    margin-bottom: 14px;
}

.service-card p {
    margin-bottom: 22px;
}

.service-card ul {
    list-style: none;
    margin-top: auto;
}

.service-card li {
    padding: 9px 0;
    border-bottom: 1px solid #eee6dd;
    font-weight: 700;
    font-size: 0.92rem;
}

.service-card li:last-child {
    border-bottom: none;
}


/* =========================
   SPLIT SECTION
========================= */

.split-section {
    padding: 90px 0;
    background: #111111;
    color: #ffffff;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image {
    min-height: 520px;
    border-radius: 36px;
    overflow: hidden;
    background: #e7ded3;
}

.split-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}
}

.split-content h2,
.cta-box h2 {
    font-size: clamp(2.2rem, 4.5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.split-content p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    opacity: 0.9;
}

.split-content .secondary-btn {
    margin-top: 12px;
    border-color: #ffffff;
    color: #ffffff;
}

/* =========================
   WHY CHOOSE US
========================= */

.highlight-section {
    background: #fffaf3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit-item {
    background: #ffffff;
    padding: 28px;
    border-radius: 28px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
}

.benefit-item span {
    display: inline-block;
    font-weight: 900;
    margin-bottom: 30px;
    opacity: 0.35;
}

.benefit-item h3 {
    font-size: 1.25rem;
    line-height: 1.1;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 0.96rem;
}


/* =========================
   BLOG / RECENT EVENTS
========================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.blog-image-placeholder {
    height: 230px;
    background:
        linear-gradient(135deg, rgba(17, 17, 17, 0.15), rgba(255, 184, 77, 0.45)),
        #e7ded3;
}

.blog-card-content {
    padding: 26px;
}

.blog-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 10px;
}

.blog-card h2 {
    font-size: 1.45rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.blog-card p {
    margin-bottom: 18px;
}

.event-filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.filter-btn {
    border: 1px solid #111111;
    background: transparent;
    color: #111111;
    padding: 10px 16px;
    border-radius: 999px;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: #111111;
    color: #ffffff;
}

.blog-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.blog-meta span {
    background: #f8f4ef;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.public-empty-state {
    grid-column: 1 / -1;
}

.blog-image-wrapper {
    width: 100%;
    height: 220px;
    background: #f8f4ef;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* =========================
   HOME EVENT PREVIEW
========================= */

.home-events-section {
    background: #f8f4ef;
}

.home-events-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
}

.home-event-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

.large-event-card {
    grid-row: span 2;
}

.home-event-image {
    height: 220px;
    background:
        linear-gradient(135deg, rgba(17, 17, 17, 0.14), rgba(255, 184, 77, 0.42)),
        #e7ded3;
}

.large-event-card .home-event-image {
    height: 420px;
}

.home-event-image-wrapper {
    width: 100%;
    height: 220px;
    background: #f8f4ef;
    overflow: hidden;
}

.large-event-card .home-event-image-wrapper {
    height: 420px;
}

.home-event-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-event-content {
    padding: 28px;
}

.home-event-content h3 {
    font-size: 1.45rem;
    line-height: 1.1;
    margin-bottom: 12px;
}

.home-event-content p {
    margin-bottom: 18px;
}

/* =========================
   SINGLE POST PAGE
========================= */

.narrow-container {
    max-width: 820px;
}

.single-post-image {
    height: 420px;
    border-radius: 28px;
    margin-bottom: 32px;
    background:
        linear-gradient(135deg, rgba(17, 17, 17, 0.15), rgba(255, 107, 107, 0.28)),
        #e7ded3;
}

.narrow-container p {
    margin-bottom: 20px;
    font-size: 1.08rem;
}

.post-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 50px;
    align-items: start;
}

.post-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 36px 0 16px;
}

.post-content p {
    margin-bottom: 20px;
    font-size: 1.08rem;
}

.post-meta-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}

.two-meta-boxes {
    grid-template-columns: repeat(2, 1fr);
}

.post-meta-box div {
    background: #ffffff;
    padding: 20px;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.post-meta-box span,
.post-meta-box strong {
    display: block;
}

.post-meta-box span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    opacity: 0.55;
    margin-bottom: 8px;
}

.post-meta-box strong {
    line-height: 1.2;
}

.post-list {
    margin: 20px 0 28px 20px;
}

.post-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.post-navigation {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 38px;
    margin-bottom: 50px;
}

.post-sidebar {
    position: sticky;
    top: 130px;
}

.sidebar-card {
    background: #111111;
    color: #ffffff;
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.sidebar-card h3 {
    font-size: 1.65rem;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.sidebar-card p {
    margin-bottom: 22px;
    opacity: 0.9;
}

.sidebar-card .primary-btn {
    background: #ffffff;
    color: #111111;
}

.light-card {
    background: #ffffff;
    color: #111111;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

.light-card ul {
    list-style: none;
    margin-top: 18px;
}

.light-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eee6dd;
    font-weight: 700;
}

.light-card li:last-child {
    border-bottom: none;
}

.post-body {
    font-size: 1.08rem;
    line-height: 1.8;
}

.post-body br {
    display: block;
    margin-bottom: 12px;
    content: "";
}

.single-post-image-wrapper {
    background: #f8f4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
}

.single-post-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.two-meta-boxes {
    grid-template-columns: repeat(2, 1fr);
}

/* =========================
   CONTACT PAGE
========================= */

.contact-intro {
    max-width: 780px;
    margin-bottom: 36px;
}

.contact-intro h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.contact-intro p {
    font-size: 1.05rem;
}

.contact-form-wrapper {
    max-width: 960px;
}

.contact-form {
    background: #ffffff;
    padding: 42px;
    border-radius: 32px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d8d1c8;
    border-radius: 16px;
    font: inherit;
    background: #fbfaf8;
}

.form-group textarea {
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fbfaf8;
    border: 1px solid #d8d1c8;
    border-radius: 16px;
    padding: 13px 14px;
    font-weight: 700;
    cursor: pointer;
}

.checkbox-grid input {
    width: auto;
}

.form-note {
    font-size: 0.9rem;
    margin-bottom: 18px;
    opacity: 0.75;
}

.contact-success-card {
    background: #ffffff;
    padding: 60px 48px;
    border-radius: 32px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #dcfce7;
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
}

.contact-success-card h2 {
    max-width: 700px;
    margin: 0 auto 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -1.5px;
}

.contact-success-card > p:not(.eyebrow) {
    max-width: 650px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
    padding: 90px 0;
    background: #f8f4ef;
}

.cta-box {
    background:
        radial-gradient(circle at top right, rgba(255, 184, 77, 0.35), transparent 35%),
        #111111;
    color: #ffffff;
    padding: 70px;
    border-radius: 40px;
    text-align: center;
}

.cta-box p {
    max-width: 620px;
    margin: 0 auto 28px;
    font-size: 1.08rem;
}

.cta-box .primary-btn {
    background: #ffffff;
    color: #111111;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 28px 0;
    text-align: center;
    background: #111111;
    color: #ffffff;
    font-size: 0.9rem;
}

/* =========================
   ADMIN LOGIN
========================= */

.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background:
        radial-gradient(circle at top right, rgba(255, 184, 77, 0.35), transparent 35%),
        radial-gradient(circle at bottom left, rgba(255, 107, 107, 0.22), transparent 35%),
        #f8f4ef;
}

.admin-login-card {
    width: min(460px, 100%);
    background: #ffffff;
    padding: 42px;
    border-radius: 34px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.admin-login-card h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 14px;
}

.admin-login-text {
    margin-bottom: 28px;
    opacity: 0.75;
}

.admin-login-form {
    margin-top: 24px;
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.error-alert {
    background: #ffe3e3;
    color: #9f1239;
}

.admin-back-link {
    display: inline-block;
    margin-top: 22px;
    font-weight: 800;
    border-bottom: 2px solid #111111;
}

/* =========================
   ADMIN DASHBOARD
========================= */

.admin-page {
    min-height: 100vh;
    padding: 50px 20px;
    background: #f8f4ef;
}

.admin-container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 34px;
}

.admin-header h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 16px;
}

.admin-header p {
    max-width: 620px;
}

.admin-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 34px;
}

.admin-action-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.11);
}

.admin-action-card span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    background: #111111;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.admin-action-card h2 {
    font-size: 1.6rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.admin-panel {
    background: #ffffff;
    border-radius: 34px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

.admin-panel-header {
    margin-bottom: 24px;
}

.admin-panel-header h2 {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.empty-state {
    background: #fbfaf8;
    border: 1px dashed #d8d1c8;
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    font-weight: 700;
}

.admin-post-list {
    display: grid;
    gap: 16px;
}

.admin-post-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: #fbfaf8;
    border: 1px solid #eee6dd;
    border-radius: 24px;
    padding: 22px;
}

.admin-post-item h3 {
    font-size: 1.25rem;
    line-height: 1.1;
    margin: 10px 0 8px;
}

.admin-post-item p {
    opacity: 0.75;
}

.admin-post-status {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-post-status.published {
    background: #dcfce7;
    color: #166534;
}

.admin-post-status.draft {
    background: #fef3c7;
    color: #92400e;
}

.admin-post-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.danger-btn {
    background: #ffe3e3;
    color: #9f1239;
}

.delete-panel {
    max-width: 720px;
}

.delete-warning h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.delete-warning h3 {
    background: #fbfaf8;
    border: 1px solid #eee6dd;
    border-radius: 20px;
    padding: 18px;
    margin: 20px 0;
    font-size: 1.35rem;
}

.delete-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.danger-solid-btn {
    background: #9f1239;
    color: #ffffff;
}

/* =========================
   ADMIN FORMS
========================= */

.admin-form {
    max-width: 860px;
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.success-alert {
    background: #dcfce7;
    color: #166534;
}

.error-alert {
    background: #ffe3e3;
    color: #9f1239;
}

.admin-current-image {
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
    background: #f8f4ef;
    border-radius: 22px;
    padding: 12px;
    border: 1px solid #eee6dd;
    overflow: hidden;
}

.admin-current-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 16px;
}

.admin-form img {
    max-width: 100%;
}


/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 900px) {
    /* =========================
       MOBILE HEADER / NAV
    ========================= */

    .logo img {
        height: 70px;
    }

    .navbar {
        flex-direction: column;
        gap: 14px;
        padding: 12px 0;
    }

    .nav-links {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.78rem;
    }


    /* =========================
       MOBILE HERO SECTIONS
    ========================= */

    .hero {
        min-height: auto;
        padding: 75px 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero-feature-card {
        transform: none;
    }

    .hero-card-bottom {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 65px 0 28px;
    }

    .page-hero + .content-section {
        padding-top: 34px;
    }


    /* =========================
       MOBILE GENERAL SECTIONS
    ========================= */

    .content-section {
        padding: 46px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-box {
        padding: 42px 24px;
        border-radius: 30px;
    }

    .side-heading {
        flex-direction: column;
        align-items: flex-start;
    }


    /* =========================
       MOBILE GRIDS
    ========================= */

    .two-column,
    .services-grid,
    .split-layout,
    .benefits-grid,
    .blog-grid,
    .about-services-grid,
    .event-types-grid,
    .form-row,
    .checkbox-grid,
    .post-layout,
    .post-meta-box,
    .home-events-grid,
    .admin-actions {
        grid-template-columns: 1fr;
    }

    .two-column,
    .split-layout {
        gap: 18px;
    }

    .about-services-grid,
    .event-types-grid,
    .about-feature-list {
        gap: 12px;
    }


    /* =========================
       MOBILE CARDS / BLOCKS
    ========================= */

    .service-card {
        min-height: auto;
    }

    .split-image,
    .split-image img {
        min-height: 340px;
    }

    .about-service-box {
        padding: 24px;
    }

    .about-feature-list div {
        padding: 22px;
    }

    .event-types-grid div {
        padding: 14px 18px;
    }

    .contact-form {
        padding: 28px;
    }

    .two-column p {
        margin-bottom: 10px;
    }

    .contact-success-card {
    padding: 42px 24px;
}

    .success-actions .btn {
        width: 100%;
        text-align: center;
    }


    /* =========================
       MOBILE HOME EVENT PREVIEW
    ========================= */

    .large-event-card {
        grid-row: auto;
    }

    .large-event-card .home-event-image,
    .home-event-image,
    .large-event-card .home-event-image-wrapper,
    .home-event-image-wrapper {
        height: 260px;
    }


    /* =========================
       MOBILE SINGLE POST
    ========================= */

    .post-sidebar {
        position: static;
    }

    .post-navigation {
    margin-bottom: 30px;
    }

    /* Mobile single post spacing */
    .post-content,
    .post-sidebar {
        padding-left: 20px;
        padding-right: 20px;
    }

    .post-navigation {
        gap: 12px;
    }

    .post-navigation .btn {
        width: 100%;
        text-align: center;
    }

    .sidebar-card {
        border-radius: 28px;
    }

    .post-body,
    .post-navigation,
    .post-sidebar {
        padding-left: 20px;
        padding-right: 20px;
    }

    .post-body {
        box-sizing: border-box;
    }

    .post-navigation {
        margin-top: 32px;
        margin-bottom: 36px;
    }

    .post-navigation .btn {
        width: 100%;
        text-align: center;
    }

    .sidebar-card {
        box-sizing: border-box;
    }


    /* =========================
       MOBILE ADMIN
    ========================= */

    .admin-header {
        flex-direction: column;
    }

    .admin-panel {
        padding: 24px;
    }

    .admin-post-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-post-actions {
        width: 100%;
    }

    .admin-post-actions .btn {
        width: 100%;
        text-align: center;
    }
}