/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #07131f;
    color: white;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(5,10,18,0.75), rgba(5,10,18,0.85)),
        url("images/mountain-bg.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(7, 19, 31, 0.2),
        rgba(7, 19, 31, 0.6),
        rgba(7, 19, 31, 1)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.brand {
    color: #d6a34d;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.tagline {
    color: #d6a34d;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero h1 {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: #d6a34d;
}

.hero-text {
    max-width: 700px;
    margin: auto;
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 40px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
    font-weight: bold;
}

.btn-primary {
    background: #d6a34d;
    border: none;
    color: black;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #e6b45e;
}

.btn-secondary {
    border: 2px solid #d6a34d;
    background: transparent;
    color: #d6a34d;
}

.btn-secondary:hover {
    background: #d6a34d;
    color: black;
}

/* SCROLL TEXT */
.scroll-down {
    position: absolute;
    bottom: 30px;
    color: #d6a34d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* SECTION COMMON */
section {
    padding: 100px 0;
}

.section-subtitle {
    color: #d6a34d;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.section-title {
    font-size: 50px;
    margin-bottom: 20px;
}

.section-title span {
    display: block;
    color: #d6a34d;
}

.center {
    text-align: center;
}

/* VISION */
.vision {
    background: linear-gradient(to bottom, #07131f, #0c1d2e);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-text h2 {
    font-size: 52px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.vision-text h2 span {
    display: block;
    color: #d6a34d;
}

.vision-text p {
    color: #d1d5db;
    margin-bottom: 20px;
    font-size: 18px;
}

.vision-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

/* PRODUCTS */
.products {
    background: #07131f;
}

.product-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #0e2031;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(214,163,77,0.2);
}

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card h3 {
    color: #d6a34d;
    padding: 25px 25px 10px;
    font-size: 24px;
}

.card p {
    color: #cbd5e1;
    padding: 0 25px 25px;
}

/* QUOTE */
.quote {
    text-align: center;
    background: linear-gradient(to right, #0b1825, #12253a, #0b1825);
}

.quote h2 {
    font-size: 52px;
    line-height: 1.4;
    margin-bottom: 25px;
}

.quote span {
    display: block;
    color: #d6a34d;
}

.quote p {
    color: #d1d5db;
    font-size: 20px;
}

/* OFFLINE STORE */
.offline-store {
    background: #07131f;
}

.offline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.store-content h2 {
    font-size: 54px;
    margin-bottom: 25px;
}

.store-content h2 span {
    display: block;
    color: #d6a34d;
}

.store-content p {
    color: #d1d5db;
    margin-bottom: 20px;
}

.details h4 {
    color: #d6a34d;
    margin-top: 20px;
    margin-bottom: 8px;
}

.store-image img {
    width: 100%;
    border-radius: 30px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 70px 20px;
    background: #050d15;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer h2 {
    color: #d6a34d;
    font-size: 42px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

footer p {
    color: #94a3b8;
    max-width: 700px;
    margin: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px 0;
    color: #64748b;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .vision-grid,
    .offline-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 48px;
    }

    .quote h2,
    .vision-text h2,
    .store-content h2 {
        font-size: 38px;
    }
}

@media (max-width: 600px) {
    .brand {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-text {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}