:root {
    --header-height: 80px;
    --footer-height: 350px;
    --main-font: "Inter", Arial, sans-serif;
    --bg-color: #ffffff;
    --text-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    font-family: var(--main-font);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header Styles */
header {
    height: var(--header-height);
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 400;
}

.nav-link.active {
    font-weight: 700;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Layout Canvas */
.canvas {
    padding-top: var(--header-height);
}

.section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.full-width { width: 100%; }
.column-50 { width: 50%; }

.hero-img-container {
    height: calc(100vh - var(--header-height));
    overflow: hidden;
}

.hero-img, .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Spacing Classes */
.margin-105 { margin-top: 105px; }
.margin-75 { margin-top: 75px; }
.gap-200 { height: 200px; }

/* Text Content */
.content-text {
    font-size: 14px;
    text-align: justify;
    line-height: 1.6;
    padding: 0 60px;
    hyphens: auto;
}

.small-label {
    font-size: 12px;
    font-weight: 700;
    padding-left: 40px;
    text-transform: uppercase;
}

/* Video Player Styling */
.vimeo-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.aspect-21-9 { padding-top: 42.85%; } /* 9 / 21 * 100 */
.aspect-16-9 { padding-top: 56.25%; } /* 9 / 16 * 100 */

.vimeo-container iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; /* Allows hover on overlay */
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
    color: #fff;
    cursor: pointer;
}

.vimeo-container:hover .video-overlay {
    opacity: 1;
}

.video-title {
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.play-btn {
    border: 1px solid #fff;
    padding: 8px 25px;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

/* Dual Video Layout */
.dual-videos .vimeo-container {
    width: 50%;
}

/* Infinite Banner Animation */
.infinite-banner {
    overflow: hidden;
    white-space: nowrap;
    background: #f0f0f0;
}

.scroll-wrapper {
    width: 100%;
    overflow: hidden;
}

.scroll-content {
    display: inline-block;
    white-space: nowrap;
}

.scroll-content img {
    height: 60vh;
    width: auto;
    display: inline-block;
    margin-right: -4px; /* Fix inline gap */
}

@keyframes scroll-infinite {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.is-scrolled .scroll-content {
    animation: scroll-infinite 30s linear infinite;
}

/* Footer Section */
footer {
    height: var(--footer-height);
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 60px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .column-50 { width: 100%; }
    .text-right-section .column-50:first-child { display: none; }
    .dual-videos .vimeo-container { width: 100%; }
    .margin-105, .margin-75 { margin-top: 50px; }
    .content-text { padding: 0 40px; margin-bottom: 30px; }
    .small-label { padding-left: 40px; margin-bottom: 10px; }
}

@media (max-width: 768px) {
    .header-content { padding: 0 20px; }
    .logo { font-size: 1rem; }
    .video-title { font-size: 1rem; }
    .scroll-content img { height: 40vh; }
}
