:root {
    --primary: #2C3E50;
    --secondary: #1A56DB;
    --text: #111827;
    --text-light: #6B7280;
    --border: #E5E7EB;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}
        header {
    height: 88px;
    padding: 0;
    
}

nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 2rem;
     max-height: 140px;
    width: auto;
    object-fit: contain;
}
.spotlight-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(26, 86, 219, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem 0;
}

.spotlight-section.collapsed {
    transform: translateY(0);
}

.spotlight-toggle {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, var(--secondary) 0%, #0e4fa8 100%);
    border: none;
    border-radius: 20px 20px 0 0;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 -5px 20px rgba(26, 86, 219, 0.3);
}

.spotlight-toggle:hover {
    background: linear-gradient(135deg, #0e4fa8 0%, var(--secondary) 100%);
    transform: translateX(-50%) scale(1.05);
}

.spotlight-toggle i {
    transition: transform 0.3s ease;
}

.spotlight-section.collapsed .spotlight-toggle i {
    transform: rotate(180deg);
}

.spotlight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.spotlight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(26, 86, 219, 0.1);
}

.spotlight-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spotlight-title i {
    color: var(--secondary);
}

.spotlight-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.spotlight-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(26, 86, 219, 0.2);
    background: white;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.spotlight-nav-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.spotlight-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 1rem 6px 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) transparent;
}

.spotlight-track::-webkit-scrollbar { height: 6px; }
.spotlight-track::-webkit-scrollbar-track { background: rgba(26, 86, 219, 0.1); border-radius: 3px; }
.spotlight-track::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }

.spot-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 86, 219, 0.1);
    display: flex;
    flex-direction: column;
}

.spot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(2, 6, 23, 0.15);
    border-color: rgba(26, 86, 219, 0.3);
}

.spot-card-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #0e4fa8 100%);
    color: white;
    padding: 1rem;
}

.spot-flag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
}

.spot-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.spot-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.spot-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.spot-badge {
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
    color: white;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.spot-open {
    background: transparent;
    border: none;
    color: var(--secondary);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.spot-open:hover {
    background: rgba(26, 86, 219, 0.1);
    transform: translateX(3px);
}

.spotlight-counter {
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .spotlight-toggle { top: -35px; width: 50px; height: 25px; }
    .spotlight-header { flex-direction: column; gap: 1rem; align-items: stretch; }
    .spotlight-title { font-size: 1.2rem; justify-content: center; }
    .spotlight-nav { justify-content: center; }
    .spot-card { width: 280px; }
    .spot-card-body, .spot-card-header { padding: 1rem; }
    .spot-title { font-size: 1rem; }
}  body {
            font-family:  "Roboto", sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--background);
            font-weight: 300;
        }
      @media (max-width: 1769px) {
      .nav-links{
gap: 1.0rem;

    }
        }
        @media (max-width: 1511px) {
        .nav-links{
gap: 0.5rem;

    }
        }

      .footer-column p{
            font-weight: 400;
                text-align: left;
}
  .footer-grid{
         font-weight: 400;
            text-align: left;

        }
        .logo {
position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 2rem;
     max-height: 80px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 1356px) {
  
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
top: 44px;        left: 0;
        
        width: 100%;
        background-color: var(--background);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
height: calc(100vh - 44px);        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 0.7rem 0;
    }
    
    .has-submenu .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--background-alt);
        margin: 0.7rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-submenu.active .dropdown {
        max-height: 500px;
    }
    
    .dropdown a {
        padding: 0.8rem 1.2rem;
    }
    
    .lang-switcher-container {
        margin-left: 0;
        margin-top: 1.5rem;
        align-self: center;
    }
    
    .lang-dropdown {
        right: auto;
        left: 0;
    }
}
 @media (max-width: 1367px) {
        .nav-links{
gap: 0.5rem;

    }
        }
       

  .lang-option {
            display: flex;
            align-items: center;
         justify-content: center;
        text-align: center;
            padding: 0.8rem 1.2rem;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        #logo{
cursor: pointer;
        }
        .spotlight-track a{
    text-decoration: none;
    
}

        .news-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.spot-title{
         display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3; 
  line-height: 1.4;
  max-height: calc(1.4em * 3);
  margin: 0.5rem 0 0;
}
.news-card-title{
      display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3; 
  line-height: 1.4;
  max-height: calc(1.4em * 3);
  margin: 0.5rem 0 0;
}
.news-card-content { 
  min-height: 120px; 
}

.news-card-excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3; 
  line-height: 1.4;
  max-height: calc(1.4em * 3);
  margin: 0.5rem 0 0;
  color: #6b7280;
  font-size: 0.95rem;
}

            @media (max-width: 1356px) {
            .burger-menu {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                left: 0;
                right: 0;

                width: 100%;
height: calc(100vh - 44px);           
         background-color: var(--background);
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateX(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
                overflow-y: auto;
                gap: 0;
                align-items: stretch;
            }
            
            
            .nav-links.active {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links li {
                margin: 0;
                padding: 0;
                width: 100%;
                border-bottom: 1px solid var(--border);
            }

            .nav-links li:last-of-type {
                border-bottom: none;
            }
            
            .nav-links > li > a {
                display: block;
                padding: 1rem;
            }

            .nav-links li.has-submenu {
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-wrap: wrap; 
            }
            .nav-links li.has-submenu > a {
                flex-grow: 1;
            }
            .nav-links li.has-submenu .submenu-toggle {
                padding: 1rem; 
            }
            
            .has-submenu {
                position: relative;
            }
            
            .has-submenu .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: var(--background-alt);
                margin: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                border-radius: 0;
                flex-basis: 100%;
            }
            
            .has-submenu.active .dropdown {
                max-height: 500px;
            }
            
            .dropdown a {
                padding: 0.8rem 1.5rem 0.8rem 2rem;
            }
            
            .lang-switcher-container {
                margin-left: 0;
                margin-top: 1rem;
                width: 100%;
            }
            
            .lang-switcher-btn {
                width: 100%;
                justify-content: space-between;
            }
            
            .lang-dropdown {
                right: auto;
                left: 0;
                width: 100%;
            }
            
            .parent-link {
                width: auto; 
                position: relative;
            }
        }

@media (max-width: 992px) {

    .burger-menu {
        display: flex;
    }

    nav > .nav-links {
        display: none; 
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 88px; 
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 88px);
        width: 100%;
        background-color: var(--background);
        flex-direction: column;
        padding: 1.5rem;
        padding-bottom: 120px; 
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%); 
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        gap: 0;
        align-items: stretch;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border);
        display: flex; 
        flex-wrap: wrap; 
        align-items: center; 
        justify-content: space-between; 
    }

    .nav-links li:last-of-type {
        border-bottom: none;
    }

    .nav-links a {
        padding: 1rem;
        flex-grow: 1; 
    }

    .has-submenu .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--background-alt);
        margin: 0;
        max-height: 0; 
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0;
        flex-basis: 100%; 
        list-style: none;
    }
    
    .has-submenu.active .dropdown {
        max-height: 500px;
    }

    .dropdown a {
        padding: 0.8rem 1.5rem 0.8rem 2rem; 
    }

    .submenu-toggle {
        display: inline-flex; 
        padding: 1rem;
        margin-left: auto; 
    }

    .submenu-toggle i {
         transition: transform 0.3s ease;
    }

    .has-submenu.active .submenu-toggle i {
        transform: rotate(180deg);
    }
    
    .nav-right .lang-switcher-container {
        display: none;
    }

    .nav-links .lang-switcher-container {
        display: block;
        margin: 1.5rem 0 0 0;
        width: 100%;
        border-top: 1px solid var(--border);
        padding-top: 1rem;
        position: relative; 
    }

    .lang-switcher-btn {
        width: 100%;
        justify-content: space-between;
    }

   
    .lang-dropdown {
        width: 100%;
        top: auto;         
        bottom: 100%;       
        margin-top: 0;
        margin-bottom: 8px; 
        transform: translateY(10px);
    }
    
    .lang-dropdown.active {
        transform: translateY(0);
    }
}


@media (max-height: 644px) and (max-width: 992px) {
 
    
    header {
        height: 70px; 
    }
    
    .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
 
    .nav-links {
        padding-bottom: 140px;
    }
}