@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --bg: #FAFAF7;
    --bg2: #F2F0EB;
    --card: #FFF;
    --hero: linear-gradient(135deg, #2D5016, #1B3A0A 40%, #0F2B06);
    --t1: #1A1A17;
    --t2: #5A5A52;
    --t3: #8A8A80;
    --tw: #FAFAF7;
    --green: #2D5016;
    --green-l: #4A7A2E;
    --green-p: #E8F0E0;
    --gold: #B8860B;
    --gold-p: #FDF5E6;
    --red: #D32F2F;
    --red-p: #FDEDEC;
    --blue: #2471A3;
    --blue-p: #EBF5FB;
    --brd: #E8E6E1;
    --brd2: #D5D2CC;
    --sh-m: 0 4px 12px rgba(0, 0, 0, .07);
    --sh-l: 0 12px 40px rgba(0, 0, 0, .08);
    --f1: 'Poppins', sans-serif;
    --f2: 'Roboto', sans-serif;
    --r-s: 6px;
    --r-m: 10px;
    --r-l: 16px;
    --r-xl: 24px;
    --r-f: 9999px;
    --ease: cubic-bezier(.16, 1, .3, 1)
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased
}

body {
    font-family: var(--f2);
    background: var(--bg);
    color: var(--t1);
    line-height: 1.7;
    overflow-x: hidden
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color .25s
}

a:hover {
    color: var(--green-l)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

h1,
h2,
h3,
h4 {
    font-family: var(--f1);
    font-weight: 700;
    line-height: 1.3
}

.ticker-bar {
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    height: 42px;
    overflow: hidden;
    position: relative;
    z-index: 1000
}

.ticker-label {
    background: #FFD600;
    color: #1A1A17;
    font-family: var(--f1);
    font-weight: 800;
    font-size: .72rem;
    letter-spacing: .1em;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    text-transform: uppercase
}

.ticker-label::after {
    content: '';
    position: absolute;
    right: -14px;
    top: 0;
    border-style: solid;
    border-width: 21px 14px 21px 0;
    border-color: transparent transparent transparent #FFD600
}

.flash-icon {
    display: inline-flex;
    font-size: 1.1rem;
    animation: flashBlink .7s ease-in-out infinite
}

@keyframes flashBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .1;
        transform: scale(.8)
    }
}

.ticker-wrap {
    flex: 1;
    overflow: hidden;
    padding-left: 22px
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: tickerScroll 5s linear infinite;
    font-size: .85rem
}

.ticker-item a {
    color: #fff;
    transition: color .2s
}

.ticker-item a:hover {
    color: #FFD600
}

.ticker-sep {
    opacity: .35;
    font-size: .5rem
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.main-nav {
    background: var(--card);
    border-bottom: 1px solid var(--brd);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(20px)
}

.nav-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--t1);
    text-decoration: none
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--green);
    color: #fff;
    border-radius: var(--r-m);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f1);
    font-weight: 800;
    font-size: 1.2rem
}

.logo-title {
    font-family: var(--f1);
    font-weight: 700;
    font-size: 1.05rem;
    display: block;
    line-height: 1.2
}

.logo-sub {
    font-size: .66rem;
    color: var(--t3);
    letter-spacing: .04em;
    font-weight: 500
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center
}

.nav-links a {
    padding: 7px 12px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--t2);
    border-radius: var(--r-s);
    transition: all .25s;
    font-family: var(--f1)
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
    background: var(--green-p)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--t1);
    border-radius: 2px
}

.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero);
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.03'%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/svg%3E");
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--tw);
    padding: 52px 24px;
    max-width: 720px
}

.hero-tag {
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .7;
    margin-bottom: 18px;
    animation: fadeInUp .8s var(--ease) .2s both
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 18px;
    animation: fadeInUp .8s var(--ease) .4s both;
    text-shadow: 0 2px 30px rgba(0, 0, 0, .3)
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    opacity: .85;
    line-height: 1.8;
    margin-bottom: 28px;
    animation: fadeInUp .8s var(--ease) .6s both
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp .8s var(--ease) .8s both
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    font-family: var(--f1);
    font-size: .86rem;
    font-weight: 600;
    border-radius: var(--r-f);
    cursor: pointer;
    transition: all .3s var(--ease);
    border: 2px solid transparent;
    text-decoration: none
}

.btn-primary {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

.btn-primary:hover {
    background: #DAA520;
    color: #fff;
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .4)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    color: #fff
}

.btn-green {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.btn-green:hover {
    background: var(--green-l);
    color: #fff;
    transform: translateY(-2px)
}

.btn-sm {
    padding: 8px 18px;
    font-size: .78rem
}

.slider-section {
    background: var(--bg2);
    padding: 28px 0
}

.slider-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px
}

.slider-row {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    align-items: stretch
}

.slider-main {
    position: relative;
    border-radius: var(--r-l);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--brd)
}

.slide {
    display: none;
    text-decoration: none;
    color: inherit
}

.slide.active {
    display: block
}

.slide:hover {
    color: inherit
}

.slide-img {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--green-p), var(--bg2));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slide-img .placeholder-icon {
    font-size: 5rem;
    opacity: .15
}

.slide-body {
    padding: 24px 28px
}

.slide-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px
}

.slide-body p {
    font-size: .9rem;
    color: var(--t2);
    line-height: 1.65;
    margin-bottom: 10px
}

.slide-body .meta {
    font-size: .75rem;
    color: var(--t3)
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 5;
    pointer-events: none
}

.slider-nav button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(6px);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all .25s;
    color: var(--t1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15)
}

.slider-nav button:hover {
    background: var(--green);
    color: #fff
}

.slider-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 14px 0 4px
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brd2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s
}

.slider-dot.active {
    background: var(--green);
    transform: scale(1.3)
}

.weather-widget {
    background: var(--card);
    border-radius: var(--r-l);
    border: 1px solid var(--brd);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.weather-widget .w-icon {
    font-size: 3.2rem;
    margin-bottom: 6px
}

.weather-widget .w-temp {
    font-family: var(--f1);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1
}

.weather-widget .w-desc {
    font-size: .86rem;
    color: var(--t3);
    margin: 6px 0 14px
}

.weather-widget .w-city {
    font-family: var(--f1);
    font-weight: 600;
    font-size: .82rem;
    color: var(--t2);
    margin-bottom: 4px
}

.weather-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-top: 10px
}

.weather-detail div {
    background: var(--bg);
    border-radius: var(--r-s);
    padding: 8px;
    font-size: .76rem;
    color: var(--t2)
}

.weather-detail div span {
    display: block;
    font-weight: 600;
    color: var(--t1);
    font-size: .86rem
}

.section {
    padding: 48px 24px;
    max-width: 1340px;
    margin: 0 auto
}

.section-alt {
    background: var(--bg2)
}

.section-header {
    margin-bottom: 24px
}

.section-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 6px;
    display: block;
    font-family: var(--f1)
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 6px
}

.section-desc {
    color: var(--t2);
    font-size: .92rem;
    max-width: 550px
}

.category-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--brd)
}

.category-section:last-child {
    border-bottom: none
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px
}

.category-header h3 {
    font-size: 1.06rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px
}

.category-header .see-all {
    font-size: .8rem;
    font-weight: 600;
    color: var(--green);
    font-family: var(--f1)
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px
}

.news-card {
    background: var(--card);
    border-radius: var(--r-l);
    overflow: hidden;
    border: 1px solid var(--brd);
    transition: all .35s;
    text-decoration: none;
    color: inherit;
    display: block
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-l);
    color: inherit
}

.news-card-img {
    width: 100%;
    height: 190px;
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center
}

.news-card-img .placeholder-icon {
    font-size: 3rem;
    opacity: .25
}

.news-card-body {
    padding: 18px
}

.news-card-tag {
    display: inline-block;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--r-f);
    margin-bottom: 8px;
    font-family: var(--f1)
}

.tag-haber {
    background: var(--green-p);
    color: var(--green)
}

.tag-duyuru {
    background: var(--gold-p);
    color: var(--gold)
}

.tag-dugun {
    background: #FDE8EF;
    color: #C0392B
}

.tag-vefat {
    background: #EAEAEA;
    color: #555
}

.tag-kumluca {
    background: var(--blue-p);
    color: var(--blue)
}

.tag-komsu {
    background: #F0E6FF;
    color: #7D3C98
}

.tag-sondakika {
    background: var(--red-p);
    color: var(--red)
}

.tag-mesaj {
    background: #E8F5E9;
    color: #2E7D32
}

.tag-galeri {
    background: #FFF3E0;
    color: #E65100
}

.news-card-title {
    font-size: .98rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4
}

.news-card-excerpt {
    font-size: .84rem;
    color: var(--t2);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .74rem;
    color: var(--t3)
}

.news-card-h {
    background: var(--card);
    border-radius: var(--r-l);
    overflow: hidden;
    border: 1px solid var(--brd);
    transition: all .3s;
    display: flex;
    text-decoration: none;
    color: inherit
}

.news-card-h:hover {
    box-shadow: var(--sh-m);
    transform: translateY(-2px);
    color: inherit
}

.news-card-h .card-h-img {
    width: 140px;
    min-height: 110px;
    flex-shrink: 0;
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center
}

.news-card-h .card-h-img .placeholder-icon {
    font-size: 1.8rem;
    opacity: .2
}

.news-card-h .card-h-body {
    padding: 12px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.news-card-h .card-h-body h4 {
    font-size: .86rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 3px
}

.news-card-h .card-h-body p {
    font-size: .78rem;
    color: var(--t2);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.news-card-h .card-h-body .meta {
    font-size: .7rem;
    color: var(--t3);
    margin-top: 4px
}

.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 116px
}

.widget {
    background: var(--card);
    border-radius: var(--r-l);
    border: 1px solid var(--brd);
    overflow: hidden
}

.widget-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--brd);
    font-family: var(--f1);
    font-weight: 700;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px
}

.widget-body {
    padding: 14px 16px
}

.widget-list {
    list-style: none
}

.widget-list li {
    padding: 6px 0;
    border-bottom: 1px solid var(--brd);
    font-size: .84rem;
    color: var(--t2)
}

.widget-list li:last-child {
    border-bottom: none
}

.widget-list li a {
    color: var(--t2);
    display: flex;
    align-items: center;
    gap: 8px
}

.widget-list li a:hover {
    color: var(--green)
}

.update-item {
    display: flex;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid var(--brd)
}

.update-item:last-child {
    border-bottom: none
}

.update-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    margin-top: 7px;
    flex-shrink: 0
}

.update-text {
    font-size: .8rem;
    color: var(--t2);
    line-height: 1.5
}

.update-date {
    font-size: .66rem;
    color: var(--t3);
    margin-top: 1px
}

.chat-widget {
    background: var(--card);
    border-radius: var(--r-l);
    border: 1px solid var(--brd);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 460px
}

.chat-header {
    background: #075E54;
    color: #fff;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f1)
}

.chat-header-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem
}

.chat-header-info h4 {
    font-size: .84rem;
    font-weight: 600;
    line-height: 1.2
}

.chat-header-info span {
    font-size: .66rem;
    opacity: .7
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background: #ECE5DD;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 180px
}

.chat-msg {
    max-width: 88%;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: .78rem;
    line-height: 1.5
}

.chat-msg-in {
    background: #fff;
    align-self: flex-start;
    border-top-left-radius: 2px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .06)
}

.chat-msg-out {
    background: #DCF8C6;
    align-self: flex-end;
    border-top-right-radius: 2px
}

.chat-msg .msg-name {
    font-weight: 600;
    color: #075E54;
    font-size: .68rem;
    margin-bottom: 1px;
    font-family: var(--f1)
}

.chat-msg .msg-time {
    font-size: .58rem;
    color: var(--t3);
    float: right;
    margin-left: 10px;
    margin-top: 4px
}

.chat-input {
    display: flex;
    gap: 8px;
    padding: 8px 10px;
    background: #f0f0f0;
    border-top: 1px solid var(--brd)
}

.chat-input input {
    flex: 1;
    border: none;
    background: #fff;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: .8rem;
    font-family: var(--f2);
    outline: none
}

.chat-input button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #075E54;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.chat-input button:hover {
    background: #128C7E
}

.share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 16px
}

.share-buttons span {
    font-size: .78rem;
    font-weight: 600;
    color: var(--t3);
    font-family: var(--f1)
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: var(--r-f);
    font-size: .72rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all .2s;
    font-family: var(--f1)
}

.share-btn:hover {
    transform: translateY(-1px);
    color: #fff;
    filter: brightness(1.1)
}

.share-btn-fb {
    background: #1877F2
}

.share-btn-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888)
}

.share-btn-wa {
    background: #25D366
}

.article-share {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--brd)
}

.article-share .share-btn {
    padding: 9px 20px;
    font-size: .8rem
}

.announcement-banner {
    background: linear-gradient(135deg, var(--gold-p), #FFF8E7);
    border: 1px solid #F0D78C;
    border-radius: var(--r-l);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px
}

.announcement-icon {
    width: 46px;
    height: 46px;
    background: var(--gold);
    border-radius: var(--r-m);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0
}

.announcement-text h4 {
    font-size: .92rem;
    margin-bottom: 2px
}

.announcement-text p {
    font-size: .82rem;
    color: var(--t2)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px
}

.gallery-item {
    aspect-ratio: 4/3;
    background: var(--bg2);
    border-radius: var(--r-m);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all .35s;
    display: flex;
    align-items: center;
    justify-content: center
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--sh-l)
}

.gallery-item .placeholder-icon {
    font-size: 2.5rem;
    opacity: .2
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, .6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity .3s
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-overlay span {
    color: #fff;
    font-size: .82rem;
    font-weight: 600
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px
}

.video-card {
    background: var(--card);
    border-radius: var(--r-l);
    overflow: hidden;
    border: 1px solid var(--brd);
    transition: all .3s
}

.video-card:hover {
    box-shadow: var(--sh-l);
    transform: translateY(-3px)
}

.video-card .yt-embed {
    aspect-ratio: 16/9;
    width: 100%
}

.video-card .yt-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--r-l) var(--r-l) 0 0
}

.video-info {
    padding: 14px
}

.video-info h4 {
    font-size: .92rem;
    margin-bottom: 3px
}

.video-info p {
    font-size: .76rem;
    color: var(--t3)
}

.wedding-card {
    background: var(--card);
    border-radius: var(--r-l);
    border: 1px solid var(--brd);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all .3s
}

.wedding-card:hover {
    box-shadow: var(--sh-m);
    transform: translateY(-2px)
}

.wedding-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #FDE8EF, #FCE4EC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0
}

.wedding-details h3 {
    font-size: .98rem;
    margin-bottom: 3px
}

.wedding-details p {
    font-size: .82rem;
    color: var(--t2);
    line-height: 1.6
}

.wedding-date-badge {
    margin-left: auto;
    text-align: center;
    background: var(--green-p);
    padding: 10px 16px;
    border-radius: var(--r-m);
    flex-shrink: 0
}

.wedding-date-badge .day {
    font-family: var(--f1);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1
}

.wedding-date-badge .month {
    font-size: .66rem;
    font-weight: 600;
    color: var(--t3);
    text-transform: uppercase
}

.vefat-card {
    background: var(--card);
    border-radius: var(--r-l);
    border: 1px solid var(--brd);
    padding: 20px;
    border-left: 4px solid #888;
    transition: all .3s
}

.vefat-card:hover {
    box-shadow: var(--sh-m)
}

.vefat-card h3 {
    font-size: .98rem;
    margin-bottom: 3px
}

.vefat-card .vefat-meta {
    font-size: .8rem;
    color: var(--t3);
    margin-bottom: 8px
}

.vefat-card p {
    font-size: .84rem;
    color: var(--t2);
    line-height: 1.7
}

.village-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 18px
}

.village-card {
    background: var(--card);
    border-radius: var(--r-l);
    padding: 20px;
    border: 1px solid var(--brd);
    text-align: center;
    transition: all .3s
}

.village-card:hover {
    box-shadow: var(--sh-l);
    transform: translateY(-3px)
}

.village-card-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    background: var(--green-p);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem
}

.village-card h3 {
    font-size: .98rem;
    margin-bottom: 6px
}

.village-card p {
    font-size: .8rem;
    color: var(--t2)
}

.article-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 44px 24px
}

.article-page h1 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 12px
}

.article-meta {
    font-size: .8rem;
    color: var(--t3);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--brd);
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.article-hero-img {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--green-p), var(--bg2));
    border-radius: var(--r-l);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden
}

.article-hero-img .placeholder-icon {
    font-size: 5rem;
    opacity: .2
}

.article-body {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--t2)
}

.article-body p {
    margin-bottom: 16px
}

.article-body strong {
    color: var(--t1)
}

.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 18px
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: var(--r-l);
    overflow: hidden;
    border: 1px solid var(--brd)
}

.data-table th {
    background: var(--green);
    color: #fff;
    font-size: .76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 12px 16px;
    text-align: left;
    font-family: var(--f1)
}

.data-table td {
    padding: 12px 16px;
    font-size: .84rem;
    border-bottom: 1px solid var(--brd)
}

.data-table tr:last-child td {
    border-bottom: none
}

.data-table tr:hover td {
    background: var(--green-p)
}

.muhtar-panel {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    background: var(--card);
    border-radius: var(--r-xl);
    border: 1px solid var(--brd);
    overflow: hidden
}

.muhtar-photo {
    background: linear-gradient(135deg, var(--green), var(--green-l));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px;
    color: #fff;
    text-align: center
}

.muhtar-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    margin-bottom: 14px;
    border: 3px solid rgba(255, 255, 255, .3)
}

.muhtar-name {
    font-family: var(--f1);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px
}

.muhtar-role {
    font-size: .78rem;
    opacity: .8
}

.muhtar-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.muhtar-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px
}

.muhtar-info p {
    color: var(--t2);
    line-height: 1.8;
    margin-bottom: 16px
}

.info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.info-item-icon {
    width: 32px;
    height: 32px;
    background: var(--green-p);
    border-radius: var(--r-s);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0
}

.info-item-label {
    font-size: .68rem;
    color: var(--t3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em
}

.info-item-value {
    font-size: .86rem;
    font-weight: 600
}

.message-form {
    background: var(--card);
    border-radius: var(--r-l);
    padding: 24px;
    border: 1px solid var(--brd);
    margin-bottom: 24px
}

.form-group {
    margin-bottom: 16px
}

.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: var(--f1)
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--f2);
    font-size: .88rem;
    border: 1.5px solid var(--brd2);
    border-radius: var(--r-m);
    background: var(--bg);
    color: var(--t1);
    transition: border-color .25s;
    outline: none
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-p)
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.7
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.messages-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.message-item {
    background: var(--card);
    border-radius: var(--r-l);
    padding: 20px;
    border: 1px solid var(--brd)
}

.message-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

.message-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-p);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--green);
    font-size: .86rem
}

.message-author {
    font-weight: 600;
    font-size: .88rem
}

.message-date {
    font-size: .7rem;
    color: var(--t3)
}

.message-body {
    font-size: .86rem;
    color: var(--t2);
    line-height: 1.75
}

.page-header {
    background: var(--hero);
    padding: 44px 24px;
    text-align: center;
    color: var(--tw);
    position: relative;
    overflow: hidden
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.03'%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/svg%3E");
    z-index: 0
}

.page-header>* {
    position: relative;
    z-index: 1
}

.page-header h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 6px
}

.page-header p {
    font-size: .94rem;
    opacity: .75;
    font-weight: 300
}

.breadcrumb {
    font-size: .76rem;
    margin-bottom: 16px;
    opacity: .6
}

.breadcrumb a {
    color: #fff
}

.site-footer {
    background: var(--t1);
    color: rgba(255, 255, 255, .7);
    padding: 44px 24px 18px
}

.footer-inner {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 24px
}

.footer-brand .logo-title {
    color: #fff
}

.footer-brand .logo-sub {
    color: rgba(255, 255, 255, .4)
}

.footer-brand p {
    margin-top: 10px;
    font-size: .82rem;
    line-height: 1.7
}

.footer-col h4 {
    color: #fff;
    font-family: var(--f1);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 10px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 6px
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .6);
    font-size: .82rem;
    transition: color .2s
}

.footer-col ul li a:hover {
    color: #fff
}

.footer-bottom {
    max-width: 1340px;
    margin: 0 auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .74rem
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

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

.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s var(--ease), transform .6s var(--ease)
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:1024px) {
    .content-with-sidebar {
        grid-template-columns: 1fr
    }

    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .muhtar-panel {
        grid-template-columns: 1fr
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr
    }

    .slider-row {
        grid-template-columns: 1fr
    }

    .weather-widget {
        display: none
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        background: var(--card);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--brd);
        box-shadow: var(--sh-l);
        z-index: 1000
    }

    .nav-links.open {
        display: flex
    }

    .nav-toggle {
        display: flex
    }

    .info-list {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .sidebar {
        grid-template-columns: 1fr
    }

    .footer-inner {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .news-grid {
        grid-template-columns: 1fr
    }

    .category-grid {
        grid-template-columns: 1fr
    }

    .section {
        padding: 24px 16px
    }

    .slide-img {
        height: 220px
    }

    .wedding-card {
        flex-direction: column;
        text-align: center
    }

    .wedding-date-badge {
        margin-left: 0
    }

    .news-card-h {
        flex-direction: column
    }

    .news-card-h .card-h-img {
        width: 100%;
        min-height: 100px
    }

    .chat-widget {
        max-height: 380px
    }
}

@media(max-width:480px) {
    .share-btn {
        padding: 6px 10px;
        font-size: .68rem
    }
}

/* PLACEHOLDER IMAGE SYSTEM */
.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.news-card-img .placeholder-img,
.card-h-img .placeholder-img,
.slide-img .placeholder-img,
.gallery-item .placeholder-img,
.article-hero-img .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}