html {
  font-size: 14px;
}

.navbar-brand img {
    height: 40px; /* perfect for desktop */
    max-height: 40px;
    width: auto;
    object-fit: contain;
}



@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem gray, 0 0 0 0.25rem #258cfb;
}
.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px auto;
}

.grid-item {
    padding: 20px;
    background: #222;
    text-align: center;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 19, 32, 0.95);
    color: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    max-width: 620px;
    width: calc(100% - 40px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    z-index: 9999;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

    .cookie-banner a {
        color: #1cc88a;
        text-decoration: underline;
    }

.cookie-actions {
    display: flex;
    gap: 10px;
}
 


/* PAGE MUST BE FLEX */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Zalando Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

main {
    flex: 1; /* pushes footer down */
}

.site-footer {
    background: #0f2027;
    color: #cbd5e1;
    padding-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #38bdf8;
}

.footer-cta {
    background: linear-gradient(135deg, #203a43, #2c5364);
    text-align: center;
    padding: 3rem 1rem;
}

.footer-cta h3 {
    color: lightgray;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-social {
    margin-top: 1rem;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        color: #cbd5f5;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .footer-social a:hover {
            color: #0a66c2;
        }


.linkedin-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

 

.grid-item:hover {
    background: #333;
}

:root {
    --accent: #38bdf8; /* cyan */
    --accent-dark: #0ea5e9; /* deeper cyan */
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 19, 32, 0.95);
    color: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    max-width: 620px;
    width: calc(100% - 40px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    z-index: 9999;

    /* New vertical layout */
    display: flex;
    flex-direction: column;
    gap: 12px; /* space between title, paragraph, buttons */
    align-items: flex-start; /* left align text/buttons */
}

.cookie-banner a {
    color: #1cc88a;
    text-decoration: underline;
}

.cookie-bottomText {
    /* remove flex from paragraph */
    display: block;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center; /* centers buttons horizontally */
    width: 100%;
}

.cookie-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    color: #fff;

    /* Glass effect */
    background-color: rgba(76, 175, 80, 0.6); /* green default */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#accept-cookies {
    background-color: rgba(76, 175, 80, 0.6); /* green glass */
}

#reject-cookies {
    background-color: rgba(244, 67, 54, 0.6); /* red glass */
}

.cookie-buttons button:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.15); /* subtle highlight effect */
}