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

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #f5f5f5;
    color: #54595f;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

/* Header - Logo STÂNGA, Hamburger DREAPTA */
.header-contact {
    background: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo-container img {
    height: 96px;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: #0288D1;
    cursor: pointer;
}

/* Hero Contact cu background + overlay */
.hero-contact {
    background: url('https://www.valahia.ro/wp-content/uploads/blue-flag.jpg') center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 126px;
    position: relative;
}

.background_overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(180deg, #00000000 0%, #000000 100%);
    opacity: 0.7;
    z-index: 1;
}

.hero-contact h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-transform: lowercase;
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

/* Main Contact */
.main-contact {
    padding: 25px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
}

.contact-list {
    list-style: none;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    font-size: 20px;
    line-height: 20px;
    color: #0072a7;
    width: 30px;
    flex-shrink: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.contact-item span {
    font-size: 16px;
    line-height: 24px;
    color: #54595f;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.contact-item a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.contact-item a span {
    color: #0072a7;
}

/* Map */
.map-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Meniu lateral */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1100;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.menu-header-valahia {
    background: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #0288D1;
    cursor: pointer;
}

/* Quick links - culoare iconițe #fef200 */
.quick-links-valahia {
    background: #0288D1;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.quick-link {
    color: #fff;
    background: rgba(0,0,0,0.04);
    border-radius: 6px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: background 0.2s;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}


.quick-link:hover {
    background: rgba(255,255,255,0.25);
}

.quick-link i {
    font-size: 20px;
    color: #fef200;
}

.quick-link-full {
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    transition: background 0.2s;
}


/* Meniu sections */
.menu-section-blue {
    background: #0288D1;
}

.menu-section-light {
    background: #E3F2FD;
}

.menu-link, .menu-link-yellow, .menu-link-white {
    display: block;
    padding: 7px 11px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: background 0.2s;
    position: relative;
    border-style: solid;
    border-color: #C1E4F5;
    border-bottom-width: 1px;
    align-items: center;
    text-align: center;
}



.menu-link {
    color: #1565C0;
}

.menu-link:hover {
    background: rgba(0,0,0,0.05);
}

.menu-link-yellow {
    color: #fef200;
    font-weight: 500;
}

.menu-link-white {
    color: #fff;
}

.menu-link-active {
    background: rgba(0,0,0,0.1);
    font-weight: 600;
}

/* Dropdown arrow */
.menu-link.has-dropdown::after{content:'';display:none;}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1050;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Buton accesibilitate */
.accessibility-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2962FF;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
}

/* Responsive */
@media (min-width: 768px) {
    .hero-contact h1 {
        font-size: 64px;
    }
}


/* Dropdown (gol) */
.menu-link.has-dropdown::after{content:'';display:none;}
.menu-link.has-dropdown.dropdown-open::after { transform:translateY(-50%) rotate(180deg); }

/* Logged app header */
.app-body { background:#f5f5f5; }
.app-header{
  position:sticky; top:0; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  background:#ffffff; height:60px; padding:0 14px;
  border-bottom:1px solid rgba(0,0,0,0.06);
}
.app-menu-toggle{
  border:0; background:transparent; font-size:20px; padding:8px 10px; border-radius:8px;
}
.app-brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:#111; font-weight:600; }
.app-logo{ width:26px; height:26px; display:block; }
.app-brand-text{ font-size:18px; font-weight:600; color:#111; text-transform:lowercase; }
.app-actions{ display:flex; align-items:center; gap:12px; }
.app-icon-btn{ width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:10px; background:#f3f4f6; text-decoration:none; color:#111; }
.app-avatar{ width:40px; height:40px; border-radius:50%; background:#dbeafe; color:#1e3a8a; display:flex; align-items:center; justify-content:center; font-weight:700; }

.app-main{ padding:16px; max-width:520px; margin:0 auto; }
.app-cardlist{ display:flex; flex-direction:column; gap:10px; }
.app-carditem{
  background:#f3f4f6;
  border-radius:10px;
  padding:14px 14px;
  display:flex; align-items:center; gap:12px;
  text-decoration:none; color:#111;
  border:1px solid rgba(193,228,245,.9);
}
.app-carditem .ci{ width:28px; display:flex; justify-content:center; color:#111; }
.app-carditem .arrow{ margin-left:auto; color:#111; opacity:.8; }

/* Drawer reuse */
.app-drawer{ /* same as .mobile-menu */ }
.drawer-logo img{ height:44px; }

/* Notes */
.notes-wrap{ background:transparent; }
.notes-title{ font-size:22px; font-weight:600; text-transform:none; margin:4px 0 12px; color:#232323; }
.notes-table-wrap{
  background:#fff; border-radius:10px; overflow:auto;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
}
.notes-table{ width:100%; border-collapse:collapse; min-width:720px; }
.notes-table th{
  background:#3b6fb8; color:#fff; font-weight:600;
  padding:10px; text-align:left; font-size:13px;
}
.notes-table td{ padding:10px; border-bottom:1px solid rgba(0,0,0,0.06); font-size:13px; color:#232323; }
.notes-table tr:nth-child(even) td{ background:#fafafa; }
.notes-legend{ margin-top:10px; font-size:13px; color:#232323; }

/* Accessibility button */
.accessibility-btn{
  position:fixed; right:16px; bottom:16px;
  width:56px; height:56px; border-radius:10px;
  background:#4054b2; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px rgba(0,0,0,0.2);
  z-index:1200;
}
