/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    --primary: #2AB0A5;      /* Teal/Aqua */
    --primary-dark: #1E8E85;
    --secondary: #2D2D2D;    /* Dark Graphite */
    --text-main: #4A4A4A;
    --text-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --bg-light: #F9F9F9;
    --bg-dark: #1A1A1A;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', 'Roboto', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.15);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    transition: opacity 0.2s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.text-light { color: var(--text-light); }

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.bg-dark .section-title::after {
    background: var(--primary);
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--secondary);
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: #404040;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.0);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--bg-white);
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-links a {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links.is-open {
    display: flex;
}

.lang-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.navbar.scrolled .lang-btn {
    background: var(--bg-white);
    color: var(--secondary);
    border-color: #ddd;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
.navbar.scrolled .mobile-menu-btn {
    color: var(--secondary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.8) 0%, rgba(42, 176, 165, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Overview / Services Section
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-banner {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.news-banner h3 {
    margin-bottom: 0;
    white-space: nowrap;
}

.news-ticker {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.news-item i {
    color: var(--primary);
    margin-top: 4px;
}

/* ==========================================================================
   Journals Section
   ========================================================================== */
.journals-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    align-items: stretch;
}

.journal-showcase {
    display: flex;
    height: 420px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.journal-image {
    flex: 0 0 320px;
    min-height: 100%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.journal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #50586d;
    transition: transform 0.5s ease;
}

.journal-showcase:hover .journal-image img {
    transform: scale(1.05);
}

.journal-info {
    flex: 1;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journal-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(42, 176, 165, 0.1);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.journal-title {
    font-size: 1.55rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.journal-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
}

.journal-details p {
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-main);
}

.journal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.journal-card-placeholder {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.journal-card-placeholder .journal-card-image {
    min-height: 0;
    height: 100%;
}

.journal-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(42, 176, 165, 0.08);
    height: 420px;
}

.journal-card-image {
    height: 240px;
    background: linear-gradient(135deg, #eaf6f5 0%, #dceeed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.journal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-card-image-placeholder {
    background: linear-gradient(135deg, rgba(42, 176, 165, 0.1) 0%, rgba(45, 45, 45, 0.08) 100%);
    border-bottom: 1px solid rgba(42, 176, 165, 0.08);
}

.journal-card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
}

.journal-card-body {
    padding: 1.5rem;
}

.journal-card-tag {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(42, 176, 165, 0.12);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.journal-card-body h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.journal-card-body p {
    margin-bottom: 0;
    color: var(--text-main);
    font-size: 0.96rem;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-stack {
    display: grid;
    gap: 2rem;
}

.about-blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.info-block {
    margin-bottom: 0;
}

.block-icon {
    width: 50px;
    height: 50px;
    background: rgba(42, 176, 165, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-block h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-block ul {
    list-style-type: none;
}

.info-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.5rem;
}

.info-block ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 2px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-wrapper {
    display: block;
    background: var(--secondary);
    border-radius: 16px;
    padding: 4rem;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item p {
    margin: 0;
    font-size: 1.1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #111;
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: block;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 3rem;
}

.footer .logo-text {
    color: #fff;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.footer-policy-links a {
    color: #fff;
    opacity: 0.88;
}

.footer-policy-links a:hover {
    color: var(--primary);
}

.footer-links p {
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
}

/* ==========================================================================
   Policy Pages
   ========================================================================== */
.policy-page .navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.policy-page .logo-text,
.policy-page .nav-links a {
    color: var(--secondary);
}

.policy-main {
    padding-top: 88px;
}

.policy-hero {
    padding: 5rem 0 2rem;
    background: linear-gradient(180deg, rgba(42, 176, 165, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
}

.policy-hero h1 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.policy-intro {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.08rem;
    color: var(--text-main);
}

.policy-content {
    padding: 1rem 0 5rem;
}

.policy-section {
    background: var(--bg-white);
    border: 1px solid rgba(42, 176, 165, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    padding: 2rem;
}

.policy-section + .policy-section {
    margin-top: 1.5rem;
}

.policy-section h2 {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.policy-section li {
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 2rem;
        left: 2rem;
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 14px;
        box-shadow: var(--shadow-md);
    }
    .nav-links a {
        color: var(--secondary);
    }
    .mobile-menu-btn { display: block; }
    
    .hero h1 { font-size: 3.5rem; }
    
    .journals-layout { grid-template-columns: 1fr; }
    .journal-showcase { flex-direction: column; }
    .journal-showcase,
    .journal-card { height: auto; }
    .journal-image { min-height: 300px; }
    
    .about-blocks { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .contact-wrapper { padding: 2rem; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    
    .section-padding { padding: 4rem 0; }
    
    .news-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    
    .journal-info { padding: 1.75rem; }

    .policy-main {
        padding-top: 78px;
    }

    .policy-hero {
        padding-top: 4rem;
    }

    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 1.5rem;
    }
}

/* force show all homepage sections */
.hero,
.hero * {
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-content {
  position: relative !important;
  z-index: 5 !important;
}

.reveal,
.reveal.active,
.reveal * ,
.reveal.active * {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
}

section,
.overview,
.journals-section,
.about-section,
.contact-section,
.news-banner,
.features-grid,
.journals-layout,
.about-stack,
.contact-wrapper,
.journal-showcase,
.journal-card,
.info-block,
.feature-card {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  min-height: auto !important;
  height: auto !important;
  overflow: visible !important;
}

.bg-light,
.bg-dark {
  display: block !important;
  min-height: auto !important;
}

/* ===== homepage reset for OJS ===== */
.pkp_structure_head,
.pkp_navigation_primary_wrapper,
.pkp_navigation_user_wrapper,
.pkp_site_name_wrapper,
.pkp_search,
.cmp_breadcrumbs,
.page_header,
.pkp_page_index .obj_issue_toc,
.pkp_page_indexJournal .obj_issue_toc {
  display: none !important;
}

.pkp_page_index,
.pkp_page_indexJournal,
.pkp_op_index,
.pkp_op_journal,
.pkp_op_journal_index,
.pkp_structure_content,
.pkp_structure_main,
.page_index_journal,
.page {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.pkp_structure_sidebar,
.pkp_sidebar_left,
.pkp_sidebar_right {
  display: none !important;
}

body {
  overflow-x: hidden !important;
}

.hero {
  width: 100vw !important;
  min-height: 100vh !important;
  margin: 0 !important;
}

.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
}

.hero-content {
  padding-top: 180px !important;
}

/* ===== fix navbar + logo on OJS homepage ===== */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: rgba(14, 34, 39, 0.72) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.nav-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 16px 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex: 0 0 auto !important;
  text-decoration: none !important;
  color: #fff !important;
  min-width: 0 !important;
}

.logo img {
  display: block !important;
  width: auto !important;
  height: 48px !important;
  max-height: 48px !important;
  max-width: 180px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.logo span {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 28px !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  flex-wrap: nowrap !important;
}

.nav-links a {
  color: #fff !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.lang-switcher {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 14px !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 999px !important;
}

.hero {
  width: 100vw !important;
  min-height: 100vh !important;
  margin: 0 !important;
  padding-top: 0 !important;
}

.hero-content {
  position: relative !important;
  z-index: 5 !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 220px 24px 120px !important;
  text-align: center !important;
}

.hero-content h1 {
  margin-top: 0 !important;
}

@media (max-width: 1100px) {
  .nav-container {
    padding: 14px 20px !important;
  }
  .logo img {
    height: 40px !important;
    max-height: 40px !important;
    max-width: 140px !important;
  }
  .logo span {
    font-size: 1.4rem !important;
  }
  .nav-links {
    gap: 16px !important;
  }
  .nav-links a {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 900px) {
  .mobile-menu-btn {
    display: inline-flex !important;
  }
  .nav-links {
    display: none !important;
  }
}

/* hide OJS default footer on homepage */
.pkp_brand_footer,
.pkp_structure_footer_wrapper,
.page_index_journal .pkp_structure_footer_wrapper,
.page_index_journal .pkp_brand_footer,
.pkp_page_indexJournal .pkp_structure_footer_wrapper,
.pkp_page_indexJournal .pkp_brand_footer {
  display: none !important;
}

/* hide OJS default footer sitewide where this css is loaded */
.pkp_brand_footer,
.pkp_structure_footer_wrapper {
  display: none !important;
}

/* ===== final navbar fix ===== */
#navbar.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: rgba(10, 33, 38, 0.68) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

#navbar .nav-container {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 18px 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

#navbar .logo {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  text-decoration: none !important;
  min-width: 0 !important;
}

#navbar .logo span {
  color: #ffffff !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  letter-spacing: 0.2px !important;
}

#navbar .nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 28px !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  flex-wrap: nowrap !important;
}

#navbar .nav-links a {
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  line-height: 1.3 !important;
}

#navbar .lang-switcher {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 14px !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  border-radius: 999px !important;
}

.hero-content {
  padding-top: 190px !important;
}

@media (max-width: 1200px) {
  #navbar .nav-container {
    padding: 16px 24px !important;
  }

  #navbar .logo span {
    font-size: 1.7rem !important;
  }

  #navbar .nav-links {
    gap: 18px !important;
  }

  #navbar .nav-links a {
    font-size: 0.86rem !important;
  }
}

@media (max-width: 900px) {
  #navbar .nav-links {
    display: none !important;
  }
}
