* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: Helvetica, sans-serif;
}

/* NAVBAR */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(11, 24, 45, 0.70);
    backdrop-filter: blur(8px);
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.nav-links {
    display: flex;
    gap: 26px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}

.shop-btn {
    background: #C6A56A;
    padding: 6px 15px;
    border-radius: 6px;
    color: black !important;
}

/* HERO */
.hero {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: absolute;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

.hero-text {
    position: absolute;
    bottom: 18%;
    left: 7%;
    color: white;
    max-width: 460px;
}

.hero-text h1 {
    font-size: 50px;
    font-weight: 600;
}

.hero-text p {
    margin-top: 6px;
    font-size: 18px;
    opacity: 0.9;
}

.cta {
    display: inline-block;
    margin-top: 15px;
    background: #C6A56A;
    color: black;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
}

/* PRODUCTS */
.products-section {
    padding: 90px 80px;
    background: #f4f4f4;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 600;
}

.product-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.product-card {
    background: white;
    padding: 26px;
    width: 260px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-details {
    display: none;
    margin-top: 10px;
    background: white;
    padding: 28px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.product-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
}

.shop-now {
    display: inline-block;
    margin-top: 16px;
    background: #C6A56A;
    padding: 10px 20px;
    border-radius: 6px;
    color: black;
    font-weight: 600;
    text-decoration: none;
}

/* ABOUT */
.about-section {
    padding: 80px;
    background: #0F172A;
    color: white;
    text-align: center;
}

.about-section p {
    width: 75%;
    max-width: 850px;
    margin: 20px auto 0;
    font-size: 18px;
    line-height: 1.65;
    opacity: 0.92;
}


/* CONTACT */
.contact-section {
    padding: 80px;
    background: #eaeaea;
    text-align: center;
}

/* FOOTER */
footer {
    background: #0B182D;
    padding: 24px;
    color: white;
    text-align: center;
    font-size: 14px;
}

/* VIDEO SECTION */
.video-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.video-overlay h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.video-overlay p {
    font-size: 20px;
    margin-bottom: 20px;
}

.learn-btn {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.85);
    color: black;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.learn-btn:hover {
    background: white;
}

.slide-indicator {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
}

.slide-indicator .dot {
    width: 4px;
    height: 30px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    transition: 0.3s ease;
}

.slide-indicator .dot.active {
    background: white;
    height: 50px;
}


