/* GLOBAL */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: #f6f6f6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper {
    width: 1200px;
    margin: 0 auto;
}

.wrapper2 {
    margin: 0 auto;
    display: flex;
}

.wrapper2 div{
    margin: 10px;
}

.wrapper2 div a{
    text-decoration: none;
    color: black;
}

.numara-mesaj{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.alo198{
    display: flex;
    align-items: center;
}

.topbar-lang{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---------------------------------------------------------
   TOPBAR
--------------------------------------------------------- */
.topbar {
    background: #003366;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.topbar .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-left a,
.topbar-right a {
    color: #fff;
    font-weight: 600;
}

.topbar-phone-icon {
    width: 18px;
    height: 18px;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
}

.topbar-alo198 {
    background: #B71C1C;
    color: #fff;
    padding: 4px 8px;
    font-weight: 700;
    border-radius: 4px;
}

/* ---------------------------------------------------------
   LOGOBAR
--------------------------------------------------------- */
.logobar {
    background: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
}

.logo-icon {
    width: 100%;
    height: 85px;
    display: inline-block;
    margin-right: 12px;
}


/* ---------------------------------------------------------
   NAVBAR
--------------------------------------------------------- */
.navbar-kvkk {
    background: #023b61;
}

.navbar-kvkk .wrapper {
    display: flex;
}

.navbar-kvkk > .wrapper > ul {
    display: flex;
}

.navbar-kvkk > .wrapper > ul > li > a {
    color: white;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    display: block;
    text-decoration: none;
}

.navbar-kvkk > .wrapper > ul > li:hover {
    background: #7a0000;
}

.navbar-kvkk li {
    position: relative;
}

.navbar-kvkk li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    border: 1px solid #ddd;
    z-index: 10;
}

.navbar-kvkk li:hover ul {
    display: block;
}

.navbar-kvkk li ul li a {
    padding: 10px 14px;
    color: #333;
    display: block;
}

/* ---------------------------------------------------------
   MODULES BAR
--------------------------------------------------------- */
.modules-bar {
    background: white;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}

.modules-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.module-item {
    flex: 1;
    background: #B71C1C;
    color: white;
    padding: 18px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: 0.2s;
}

.module-item:hover {
    background: #8f0000;
}

/* ---------------------------------------------------------
   CAROUSEL
--------------------------------------------------------- */
.carousel-inner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* ---------------------------------------------------------
   DUYURULAR
--------------------------------------------------------- */
.section-title {
    font-size: 26px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #003366;
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.announcement-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 18px 20px;
    border-radius: 6px;
    transition: 0.2s;
}

.announcement-card:hover {
    transform: scale(1.02);
}

.announcement-date {
    color: #a00000;
    font-weight: 700;
}

.announcement-title {
    font-size: 16px;
    font-weight: 600;
    color: #003366;
}

/* ---------------------------------------------------------
   VIDEO + GÜNDEM
--------------------------------------------------------- */
.video-section {
    margin-top: 60px;
}

.video-layout {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 22px;
}

.video-box {
    background-image: url(../img/gundem.jpg);
    background-position: center;
    height: 80%;
    border-radius: 6px;
    background-size: cover;
}

.side-cards {
    display: grid;
    gap: 22px;
}

.side-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px 20px;
    border-radius: 6px;
}

.side-card-img{
    background-image: url(../img/gundem.jpg);
    background-position: center;
    height: 120px;
    border-radius: 6px;
    background-size: cover;
}

.side-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #003366;
}

/* ------------------------------
   YÖNETMELİKLER SAYFASI DÜZELTİLMİŞ
------------------------------ */

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #003366;
    margin: 40px 0 25px;
}

.page-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.page-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.law-card {
    background: white;
    padding: 22px 24px;
    border-radius: 6px;
    border: 1px solid #ddd;
    display: flex;
}

.law-card-photo{
    padding: 10px;
    border: none;
}

.law-card-data{
    padding-left: 20px;
}

.law-card-photo img{
    border-radius: 10px;
    max-width: 200px;    
    height: 125px;
}

.law-card-title {
    font-size: 20px;
    color: #003366;
    font-weight: 700;
}

.law-card-desc {
    margin: 6px 0;
    font-size: 15px;
    color: #444;
}

.law-card-link {
    margin-top: 10px;
    font-weight: 600;
    color: #B71C1C;
}



/* RIGHT SIDE - DUYURULAR */
.page-right .side-title {
    font-size: 22px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
}

.side-announcement {
    background: white;
    padding: 16px 18px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.side-ann-date {
    color: #a00000;
    font-weight: 700;
    margin-bottom: 6px;
}

.side-more {
    display: inline-block;
    margin-top: 10px;
    color: #B71C1C;
    font-weight: 600;
}


/* EVENTS SECTION */
.event-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 22px;
    margin-bottom: 60px;
}

.event-card {
    background: white;
    padding: 18px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.event-date {
    color: #a00000;
    font-weight: 700;
}

.event-title {
    margin-top: 6px;
    font-size: 16px;
    color: #003366;
}

/* ------------------------------
   HOME PAGE TOP LAYOUT
   (Carousel Left + Announcements Right)
------------------------------ */
.home-top-layout {
    margin-top: 35px;
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: 30px;
}

/* Carousel container inside layout */
.home-carousel img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

/* RIGHT: SIDE ANNOUNCEMENTS */
.home-ann-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.section-title-small {
    font-size: 20px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 5px;
}

.announcement-side-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 14px 16px;
    border-radius: 6px;
}

.announcement-side-card .date {
    color: #a00000;
    font-weight: 700;
    margin-bottom: 4px;
}

.announcement-side-card .title {
    color: #003366;
    font-size: 15px;
    font-weight: 600;
}

.ann-more {
    margin-top: 6px;
    color: #B71C1C;
    font-weight: 600;
}


/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
.footer {
    background: #003366;
    color: #fff;
    padding: 50px 0;
    margin-top: 60px;
}

.footer .wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-column ul{
    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-column ul li a{
    text-decoration: none;
}

.footer-bottom {
    background: #002244;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    /*margin-top: 30px;*/
}


/* -----------------------------------------------------
   MEVZUAT SAYFASI ÖZEL TASARIM
----------------------------------------------------- */

/* TOP GOV HEADER */
.mev-header {
    background: white;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-size: 14px;
}

.mev-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mev-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #003366;
}

.mev-logo-circle {
    width: 50px;
    height: 50px;
}

.mev-header-nav a {
    margin-right: 16px;
    color: #003366;
    font-weight: 600;
}

.mev-header-account a {
    color: #003366;
    font-weight: 600;
}

/* HERO */
.mev-hero {
    background: url(../img/background.png);
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 30px;
    font-weight: 800;
}

.hero-icon {
    width: 85px;
    margin-bottom: 10px;
}

.hero-search {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.hero-search input {
    width: 380px;
    padding: 10px 12px;
    border-radius: 5px 0 0 5px;
    border: none;
    opacity: 50%;
}

.hero-search button {
    padding: 10px 16px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
}

/* CONTENT AREA */
.mev-content {
    background: #e9f0fa;
    padding: 40px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mev-content-toolbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.toolbar-icons span {
    margin-right: 14px;
    font-size: 20px;
}

.mev-home-btn {
    background: #22a6b3;
    padding: 6px 12px;
    color: white;
    border: none;
    border-radius: 5px;
}

/* PDF BOX */
.mev-pdfbox {
    background: white;
    padding: 22px;
    border-radius: 8px;
    min-height: 800px;
    max-width: 80%;
}

.pdf-like-box {
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 18px;
    margin-top: 20px;
    border-radius: 6px;
    background: #fff;
}

.pdf-like-box p{
    white-space: pre-wrap;
    font-size: 15px;
    line-height: 1.6;
}

/* FOOTER */
.mev-footer {
    background: #37475a;
    color: white;
    padding-top: 40px;
}

.mev-footer-main {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-col a {
    color: #d7e0ea;
    display: block;
    margin-bottom: 6px;
}

.app-icons {
    display: flex;
    gap: 14px;
    font-size: 32px;
}

.mev-footer-bottom {
    background: #2a3745;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
}
