/* ==========================================================================
   FIGMA DEMO - DESKTOP BASE STYLES
   Clean implementation matching Figma design
   ========================================================================== */

:root {
    --color-gold: #CEB472;
    --color-dark-green: #21362C;
    --color-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 55px;
    height: 55px;
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--color-gold);
    background: transparent;
}

.logo-text {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 2px;
}

.menu-btn {
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-btn span:first-child {
    width: 20px;
}

.menu-btn:hover span:nth-child(2) {
    transform: translateX(-5px);
}

/* ==========================================================================
   MAIN CONTAINER
   ========================================================================== */

.main-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Background */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/progress/1261040531f91f146e331738ab0d9f8be5819f0b.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

/* ==========================================================================
   CAROUSEL
   ========================================================================== */

.carousel-container {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    z-index: 3;
}

.carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}
.carousel-slide.active{
    visibility: visible;
}
/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-height: 860px !important;
    padding: 0 20px;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.card {
    background: unset;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(206, 180, 114, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 300px;
    overflow: hidden;
}


.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

/* Card Badge */
.card-badge {
    background: var(--color-gold);
    color: var(--color-dark-green);
    padding: 6px 4px;
    width:68px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    z-index: 2;
}

/* Card Content */
.card-content {
    position: fixed;
    bottom: 0px;
    height: 123px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(0, 51, 18, 0.00) 0%, rgba(0, 51, 18, 0.56) 52.43%, #003312 100%);
        align-content: end;
}

.card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   NAVIGATION BUTTONS
   ========================================================================== */

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-btn:hover {
    background: var(--color-white);
    color: #000;
    transform: translateY(-50%) scale(1.15);
}

.prev-btn {
    left: -50px;
}

.next-btn {
    right: -50px;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.pagination {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 40px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--color-white);
}
