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

body {
    background-color: #000;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #fff;
}

/* Header */
.top-header {
    width: 100%;
    background-color: #fff; /* white top bar */
    height: 100px;
    display: flex;
    justify-content: center; /* center logo */
    align-items: center;
    position: relative;
}

/* Main Logo */
.logo-left img {
    height: 60px;
}

/* Login Button */
.login-right {
    position: absolute;
    right: 50px;
}

.login-right a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #000;
    padding: 8px 20px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.login-right a:hover {
    background-color: #000;
    color: #fff;
}

/* Hero Section */
.hero {
    width: 100%;
    background-color: #000;
}

/* Hero Image */
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Shop Logo */
.shop-logo {
    text-align: center;
    margin-top: 20px; /* spacing below hero image */
}

.shop-logo img {
    height: 80px;
}

/* Store Section (App badges) */
.store-section {
    text-align: center;
    margin-top: 20px; /* spacing below shop logo */
}

.store-section img {
    height: 60px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.store-section img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    font-size: 13px;
    opacity: 0.7;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .login-right {
        right: 20px;
    }

    .store-section img {
        height: 50px;
    }

    .shop-logo img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .top-header {
        height: auto;
        padding: 15px 10px;
    }

    .store-section img {
        height: 45px;
        margin: 0 5px;
    }

    .shop-logo img {
        height: 50px;
    }
}