body {
    background-color: black;
    color: white;
}

.link_container {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    border: 1px solid white;
}

.project_card_container {
    width: 270px;
    min-width: 270px;
    height: 425px;

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;

    border-radius: 10px;
    border: 2px solid white;
    overflow: hidden;
    /* Ensures any overflow from the container is hidden */
    text-decoration: none;
    /* Remove underline */
    color: inherit;
    /* Keep the text color the same as the card */
}

.big_project_card_container {
    width: 375px;
    min-width: 375px;
    height: 425px;

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;

    border-radius: 10px;
    border: 2px solid white;
    overflow: hidden;
    /* Ensures any overflow from the container is hidden */
    text-decoration: none;
    /* Remove underline */
    color: inherit;
    /* Keep the text color the same as the card */
}


.project_card_image_container {
    width: 100%;
    height: 60%;
    min-height: 60%;
    overflow: hidden;
    /* Ensures that the overflowing parts of the image are cropped */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    /* Applies rounding to the container */
}

.project_card_image_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the container */
    border-radius: 10px;
    /* Ensures the image respects the rounded corners */
}

.project_card_text_container h2 {
    margin: 15px 0;
    /* Reduces the vertical margin around the heading */
    line-height: 1.2;
    /* Adjust line height to reduce the spacing between lines */
}

.project_card_text_container p {
    margin: 10px 0;
    /* Reduces the vertical margin around the paragraph */
    font-size: 0.9rem;
    /* Optional: Adjust font size if needed */
    line-height: 1.3;
    /* Adjust line height for tighter text */
}


.scroll_view {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}

.scroll_item {
    display: inline-block;
    width: 200px;
    height: 200px;
    background-color: #ccc;
    margin-right: 10px;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

html,
body,
div,
span,
a,
li,
td,
th {
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3 {
    font-weight: 400;
}

.shimmer_text {
    font-size: 72px;
    background: linear-gradient(120deg, #e0e0e0, #313131, #e0e0e0);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shimmer 3s infinite;
}


@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* New styles for header, navigation, and hero */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 44px;
    max-height: 8vw;
    min-height: 32px;
    width: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav {
    display: flex;
    gap: clamp(2px, 2vw, 16px);
}

.nav-link {
    font-size: clamp(12px, 2vw, 20px);
    text-align: center;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.nav-link.active {
    font-size: clamp(12px, 2vw, 20px);
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-text {
    font-size: clamp(32px, 7vw, 60px);
    margin: 0;
    padding: 0;
    text-align: center;
}

.hero-text-medium {
    font-size: clamp(24px, 4vw, 32px);
    margin: 0;
    padding: 0;
    text-align: center;
}

.hero-text-medium-left {
    font-size: clamp(24px, 4vw, 32px);
    margin: 0;
    padding: 0;
    text-align: left;
}

.hero-text-small {
    font-size: clamp(18px, 2vw, 20px);
    margin: 0;
    padding: 0;
    text-align: center;
}

.hero-text-small-left {
    font-size: clamp(18px, 2vw, 20px);
    margin: 0;
    padding: 0;
    text-align: left;
}

/* Fade-in animation for first load */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

/* Logo + brand text alignment */
.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
}

.logo-link:visited,
.logo-link:hover,
.logo-link:active {
    color: white;
    text-decoration: none;
}

.logo-text {
    font-size: clamp(24px, 4vw, 32px);
    margin: 0;
}

.hero-lines {
    display: flex;
    flex-direction: column;
}

.store-badges {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.store-badges img {
    height: 8vw;
    max-height: 60px;
    min-height: 36px;
    width: auto;
    filter: none;
}

.info-sections {
    max-width: 900px;
    margin: 60px auto 70px auto;
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
}

/* Scroll reveal states */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
}

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

.site-footer {
    margin-top: 120px;
    padding: 32px 20px 48px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link::after {
    content: '·';
    margin-left: 12px;
    opacity: 0.6;
}

.footer-link:last-child::after {
    content: '';
    margin: 0;
}

/* Top-aligned hero variant */
.hero.hero--top {
    align-items: center;
    justify-content: center;
    padding-top: 140px;
}

/* Subtle subtitle (last updated) */
.subtle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
}

/* Privacy page: tighter hero spacing */
.hero.hero--top {
    padding-top: 140px;
    padding-bottom: 40px;
    min-height: auto;
    gap: 16px;
}

.copyright-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
}

.body-text {
    font-size: clamp(12px, 1.5vw, 16px);
    margin: 10px 0;
    line-height: 1.3;
    color: #b0b0b0;
}

.centered-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}