html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1f1f1f;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo img {
    height:2.5rem;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #1b73d8;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px;
    transition: all 0.3s ease;
}


/* Banner slider*/
.slider-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
  }
  
  .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    min-width: 100%;
    position: relative;
    background-color: rgb(0, 0, 0);
  }
  
  .slide img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
    opacity: 60%;
  }
  
  .caption {
    position: absolute;
    bottom: 0;
    left: 0rem;
    background: #000000;
    background: linear-gradient(57deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 54%);
    height: 100%;
    color: white;
    padding: 2rem 2rem;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    font-weight: lighter;
  }
  
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border: none;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
  }
  
  .next {
    right: 0;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  /* Banner slider end*/












  .valasztok{
    padding: 5rem 1.5rem 3rem 1.5rem;
     background-color: #272727;
  }
  
  .navigation-container {
      display: flex;
      max-width: 1200px;
      margin: 0 auto;
      gap: 20px;
  }
  
  .card {
      flex: 1;
      height: 200px;
      border-radius: 10px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .card:hover {
      transform: scale(0.95);
  }
  
  .card-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      color: white;
      height: 10rem;
      width: 10rem;
  }
  
  .card-title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
      border-left: 4px solid white;
      padding-left: 10px;
  }
  
  .card-bg {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 120%;
      height: auto;
      transition: all 0.3s ease;
      padding: 1.5rem;
  }
  
  .card:hover .card-bg {
      transform: translateX(-50%) scale(1.2);
  }
  
  .card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 50%;
      z-index: 1;
  }

  .navigation-container a {
    display: block;
    text-decoration: none;
    min-width: 10%;
  }
  
  
  /* Egyedi színek minden kártyához */
  .c1 {
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(242, 138, 73, 1) 100%);
  }
  
  .c2 {
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(115, 183, 48, 1) 100%);
  }
  
  .c3 {
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(30, 120, 217, 1) 100%);
  }
  
  .c4 {
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, #708090);
  }

    .c5 {
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, #9B59B6);
  }
    .c6 {
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, #1ABC9C);
  }



  h2{
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    font-weight: lighter;
    font-size: 2rem;
  }

/* Alap stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.labcontainer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Lábléc */
footer {
    background: #151d25;
    color: white;
    padding: 60px 0 30px;
    width: 100%;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-column {
    min-width: 0; /* Megakadályozza a tartalom túlcsordulását */
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #3498db;
}

.footer-column p {
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    width: 100%;
}

.footer-links li {
    margin-bottom: 12px;
    width: 100%;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    padding: 2px 0;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.social-links a:hover {
    background: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 0.9rem;
    width: 100%;
}

/* Reszponzív design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-links a {
        text-align: center;
        padding: 5px 0;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 25px;
    }
    
    .footer-column h3 {
        font-size: 1.3rem;
    }
    
    .footer-column p {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 4.5rem;
        background-color: #1f1f1f;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 1rem 0;
        box-shadow: 0 5px 5px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.5s ease-in;
        z-index: 99;
    }

    .nav-links.active {
        transform: translateY(0);
    }
}/* Rólunk szekció */
.about-section {
    padding: 5rem 0;
    background-color: #1f1f1f;
    color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1b73d8;
}

.stat-text {
    font-size: 0.9rem;
    color: #ccc;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Referenciák szekció */
.references-section {
    padding: 5rem 0;
    background-color: #272727;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reference-item {
    background-color: #1f1f1f;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-10px);
}

.reference-image {
    height: 200px;
    overflow: hidden;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.reference-item:hover .reference-image img {
    transform: scale(1.1);
}

.reference-content {
    padding: 1.5rem;
}

.reference-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reference-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reference-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: #1b73d8;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Partnerek szekció */
.partners-section {
    padding: 4rem 0;
    background-color: #1f1f1f;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-item {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: scale(1.05);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    transition: filter 0.3s ease;
}

/* Friss tartalmak szekció */
.latest-content {
    padding: 5rem 0;
    background-color: #272727;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-item {
    background-color: #1f1f1f;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.content-item:hover {
    transform: translateY(-10px);
}

.content-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-item:hover .content-image img {
    transform: scale(1.1);
}

.content-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #1b73d8;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
}

.content-info {
    padding: 1.5rem;
}

.content-info h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.content-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #1b73d8;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

/* Reszponzív design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-stats {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .references-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}




/* Kapcsolat szekció */
.contact-section {
    padding: 5rem 0;
    background-color: #1f1f1f;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1b73d8, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-text h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text p {
    color: #ccc;
    margin: 0.2rem 0;
    line-height: 1.4;
}

.contact-social {
    margin-top: 1rem;
    justify-content: flex-start;
}

/* Űrlap stílusok */
.contact-form {
    background-color: #272727;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: #1f1f1f;
    border: 2px solid #444;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: #1f1f1f;
    padding: 0 0.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1b73d8;
    outline: none;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: #1b73d8;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ccc' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1b73d8, #3498db);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Reszponzív design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        display: flex;
        margin: auto;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .contact-social {
        justify-content: center;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}


.navigation-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 10px; /* Kisebb gap */
    justify-content: center;
}

.navigation-container a {
    display: block;
    text-decoration: none;
    width: calc(16.666% - 9px); /* 6 kártya egy sorban */
    height: 150px; /* Kisebb magasság, hogy biztosan elférjen */
}

.card {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Kisebb kártya tartalom telefonon */
.card-title {
    font-size: 18px;
}

/* Tablet: 3 kártya egy sorban */
@media (max-width: 992px) {
    .navigation-container a {
        width: calc(33.333% - 7px);
        height: 160px;
    }
}

/* Telefon: 2 kártya egy sorban */
@media (max-width: 768px) {
    .navigation-container a {
        width: calc(50% - 5px);
        height: 140px;
    }
    
    .card-title {
        font-size: 16px;
    }
}


.contact-text a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #1b73d8;
}

.contact-icon a {
    color: white;
    text-decoration: none;
}

        /* Modal stílusok */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .modal.active {
            opacity: 1;
        }

        .modal-content {
            background-color: #1f1f1f;
            margin: 2% auto;
            border-radius: 15px;
            width: 90%;
            max-width: 1000px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
            overflow: hidden;
            transform: scale(0.8);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .modal.active .modal-content {
            transform: scale(1);
            opacity: 1;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 25px;
            color: white;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: rotate(90deg);
        }

        .modal-header {
            background: linear-gradient(135deg, #1b73d8, #3498db);
            padding: 25px 30px;
            color: white;
        }

        .modal-header h2 {
            margin: 0;
            font-weight: 600;
            font-size: 2rem;
        }

        .modal-image-full {
            width: 100%;
            height: 400px;
            overflow: hidden;
        }

        .modal-image-full img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-body {
            padding: 30px;
            color: #ccc;
            line-height: 1.7;
        }

        .modal-body p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        /* Referencia modal stílusok */
        .reference-modal .modal-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            padding: 0;
        }

        .reference-modal .modal-image-full {
            height: 100%;
            border-radius: 0;
        }

        .reference-content {
            padding: 30px;
        }

        .reference-content h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .reference-content p {
            margin-bottom: 1.5rem;
        }

        .reference-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag {
            background-color: #1b73d8;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        /* Kártya hover effektus */
        .service-card, .reference-card {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .service-card:hover, .reference-card:hover {
            transform: translateY(-5px);
        }


        /* Reszponzív modal */
        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
                margin: 5% auto;
            }
            
            .reference-modal .modal-body {
                grid-template-columns: 1fr;
            }
            
            .modal-image-full {
                height: 250px;
            }
            
            .modal-header h2 {
                font-size: 1.6rem;
            }
            
            .close {
                top: 10px;
                right: 15px;
                font-size: 30px;
                width: 40px;
                height: 40px;
            }
        }




        /* References grid egyenlő magasság */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch; /* Ez biztosítja, hogy mindegyik azonos magasságú legyen */
}

.reference-item {
    background-color: #1f1f1f;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%; /* Minden referencia item teljes magasságot tölt ki */
    display: flex;
    flex-direction: column;
}

.reference-content {
    padding: 1.5rem;
    flex-grow: 1; /* A tartalom kitölti a rendelkezésre álló teret */
    display: flex;
    flex-direction: column;
}

.reference-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* A bekezdés kitölti a fennmaradó helyet */
}

/* Service cardok négyzet alakúak */
.navigation-container a {
    display: block;
    text-decoration: none;
    width: calc(16.666% - 9px);
    aspect-ratio: 1 / 1; /* Négyzet alakú kártyák */
}

.card {
    width: 100%;
    height: 100%; /* Teljes magasság a konténerben */
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Tablet: 3 kártya egy sorban */
@media (max-width: 992px) {
    .navigation-container a {
        width: calc(33.333% - 7px);
        aspect-ratio: 1 / 1; /* Négyzet alakú kártyák */
    }
}

/* Telefon: 2 kártya egy sorban */
@media (max-width: 768px) {
    .navigation-container a {
        width: calc(50% - 5px);
        aspect-ratio: 1 / 1; /* Négyzet alakú kártyák */
    }
}


