/* ============================================
   GLOBAL
============================================ */

body {
    background: #f5f5f5;
}

/* ============================================
   HERO SECTION
============================================ */

.hero {
    background: url('/images/hero.jpg') center/cover no-repeat;
    padding: 140px 20px;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.hero .btn {
    padding: 12px 28px;
    font-size: 1.2rem;
}

/* ============================================
   CARDS
============================================ */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.cards .card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.cards .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ============================================
   MOBILE NAV BUTTON
============================================ */

.navbar-toggler {
    border: none;
    padding: 8px;
}

/* Offcanvas Menü */
.offcanvas {
    background: #001B4C;
    color: #fff;
}

.offcanvas a {
    color: #fff !important;
}

/* ============================================
   FOOTER
============================================ */

.msg-footer {
    background: #001B4C;
    color: #fff;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.msg-footer a {
    color: #fff;
    text-decoration: none;
}

.msg-footer a:hover {
    text-decoration: underline;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-social {
    margin: 20px 0 30px;
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #fff;
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    transition: opacity .2s, transform .2s;
}

.footer-social a:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.footer-social svg {
    width: 28px;
    height: 28px;
}

.footer-logos {
    margin: 10px 0 30px;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity .2s, transform .2s;
}

.footer-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

footer.container-footer.footer.full-width {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

/* ============================================
   TOPBAR (MODERN)
============================================ */

header.container-header {
    background: linear-gradient(180deg, #00235A 0%, #001B4C 100%) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}

/* SHRINK */
body.scrolled header.container-header {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    background: rgba(0, 27, 76, 0.92) !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.45);
}

/* ============================================
   MENÜ (METISMENU) – PERFEKT ZENTRIERT
============================================ */

.container-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0 !important;
    margin: 0 !important;
}

.container-nav .navbar-collapse {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
}

.container-nav .mod-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px;
    padding: 0 !important;
    margin: 0 !important;
}

.container-nav .mod-menu > li {
    list-style: none;
    display: flex;
    align-items: center;
}

.container-nav .mod-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px !important;
    line-height: 1 !important;
    height: 48px;
    border-radius: 6px;
    color: #fff !important;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

/* Hover */
.container-nav .mod-menu > li > a:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-1px);
}

/* Active */
.container-nav .mod-menu > li.current > a,
.container-nav .mod-menu > li.active > a {
    background: rgba(255,255,255,0.22);
}
