:root {
    --tumi-dark: #000000;
    --tumi-light: #ffffff;
    --tumi-gray: #555555;
    --tumi-silver: #d0d0d0;
}

/* Import Proxima Nova font dari folder lokal */
@font-face {
    font-family: 'Proxima Nova';
    src: url('font/ProximaNova-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('font/Proxima Nova Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('font/Proxima Nova Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('font/Proxima Nova Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

body {
    font-family: 'Proxima Nova', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--tumi-dark);
    color: var(--tumi-light);
    min-height: 100vh;
    overflow-x: hidden;
}

.tumi-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.tumi-header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    text-align: center;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 50;
}

.tumi-logo {
    max-width: 150px;
    height: auto;
}

.tumi-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: transparent;
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#hero-video, #hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Video Overlay */
/* .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    font-size: 20px;
} */

/* Luggage Showcase */
/* .luggage-showcase {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: transparent;
    z-index: 10;
} */

.luggage-image {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 10;
}

/* Luggage Features */
.luggage-features {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 20;
}

.feature {
    position: absolute;
    padding: 10px;
    color: var(--tumi-light);
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    z-index: 20;
}

.feature::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--tumi-light);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.feature-label {
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--tumi-light);
    padding: 5px 10px;
    border-radius: 3px;
    margin-top: 10px;
    display: none;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature:hover .feature-label {
    display: block;
}

/* Position for each feature */
.zipper {
    top: 42%;
    left: 50%;
    transform: translate(-10px, -50px);
}

.handle {
    top: 25%;
    left: 30%;
}

.lock {
    bottom: 35%;
    right: 28%;
}

/* Join Button */
.join-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 20px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.tagline {
    font-size: 5rem;
    font-weight: 300;
    color: var(--tumi-light);
    margin-bottom: 30px;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Proxima Nova', sans-serif;
}

.btn-join {
    background-color: var(--tumi-dark);
    color: var(--tumi-light);
    border: 2px solid var(--tumi-light);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    min-width: 250px;
}

.btn-join:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.8);
}

/* Help Button */
.help-button {
    position: absolute;
    right: 10%;
    bottom: -40px; /* Posisi di bawah tombol join */
    z-index: 60;
}

.btn-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--tumi-dark);
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-circle:hover {
    transform: scale(1.1);
    background-color: var(--tumi-light);
}

/* Media Queries untuk Responsif */
@media (max-width: 768px) {
    .tumi-logo {
        max-width: 120px;
    }
    
    .tumi-header {
        height: 60px;
        padding: 42px 0;
    }
    
    .btn-join {
        font-size: 16px;
        padding: 12px 25px;
        max-width: 450px;
    }
    
    .btn-circle {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .help-button {
        right: 8%;
        bottom: -35px;
    }
    
    .join-wrapper {
        bottom: 10%;
    }
}

@media (max-width: 480px) {
    .tumi-logo {
        max-width: 100px;
    }
    
    .btn-join {
        font-size: 14px;
        padding: 10px 20px;
        max-width: 350px;
    }
    
    .btn-circle {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .help-button {
        right: 5%;
        bottom: -30px;
    }
    
    .join-wrapper {
        bottom: 7%;
    }
}



@media (max-width: 768px) {
    .tagline {
        font-size: 36px;
        margin-bottom: 15px;
    }
}