@import "tailwindcss";

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #2e4a3a;
}



img,
video {
    max-width: none !important;
    height: auto;
}



.w-screen {
    width: 100vw;
    max-width: 100%;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.app-bar {

    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid #e2e8f0;
    transition: transform 0.3s ease-in-out;
}

.app-bar.app-bar-hidden {
    transform: translateY(-100%);
}

.app-bar .nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
}

.section-title {
    font-weight: 700;
    font-size: 2.25rem;
    color: #1a362a;
    margin-bottom: 2rem;
    text-align: left;
    text-transform: uppercase;
}

.sub-section-title {
    font-weight: 600;
    text-align: left;
    font-size: 1.5rem;
    color: #1a362a;
    margin-bottom: 0.75rem;
}

.card {
    background-color: #9b9b9b0f;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.line-divider {
    height: 1px;
    background-color: #ffffff;
    margin: 0rem 0;
}

.icon-text-group {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.icon-text-group i {
    color: #1a362a;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}




#veritas-section {
    position: relative;
    overflow: hidden;
}

#veritas-section .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    transition: opacity 0.8s ease-in-out, background-image 0.5s ease-in-out;
}

#veritas-section>* {
    position: relative;
    z-index: 1;
}


.bg-overlay {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease, opacity 0.4s ease;
    z-index: 0;
}

.bg-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}


.zoom-btn {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 8px;
    color: rgba(245, 245, 245, 0.677);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.zoom-btn:hover {
    background-color: rgba(255, 255, 255, 0.185);
}

.close-btn {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 8px;
    color: rgba(255, 30, 0, 0.627);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.185);
}


#popupImage.grabbing {
    cursor: grabbing;
    transition: transform 0.3s ease;
}

.resp-size{
    width: 100%;
    aspect-ratio: 16/9;
    background-color: pink;
    max-width: 600px;
}
