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

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header & Navigation */
header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #ff6b35;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b35;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    text-decoration: none;
    color: #555;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b35;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: #E7670E;
    width: 100%;
}

.hero-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Marquee Section */
.marquee {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: scroll 45s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Collection Section */
.collection {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.collection h2 {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #ff6b35;
    letter-spacing: 2px;
}

.shoe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.shoe-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.shoe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.shoe-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shoe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.shoe-card:hover .shoe-overlay {
    opacity: 1;
}

.shoe-overlay h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #ff6b35 !important;
    letter-spacing: 1px;
}

.shoe-overlay .size {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #ff6b35 !important;
}

.shoe-overlay .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35 !important;
}

.gradient-purple {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #ff8c42 0%, #ffb347 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #ffb347 0%, #ffd280 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9a56 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #ff5722 0%, #ff6b35 100%);
}

.gradient-teal {
    background: linear-gradient(135deg, #ffa366 0%, #ffbb85 100%);
}

.shoe-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: #222;
}

.shoe-card p {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
}

/* About Section */
.about {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.about h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #ff6b35;
    letter-spacing: 2px;
}

.about-intro {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature {
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
}

.feature p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #fff5f0;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid #ffe5d9;
}

footer p {
    color: #777;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-image {
        max-width: 180px;
    }

    .nav-links {
        gap: 1rem;
    }

    .shoe-grid {
        grid-template-columns: 1fr;
    }

    .collection h2,
    .about h2 {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .marquee {
        padding: 0.75rem 0;
    }

    .marquee-content span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        padding: 1.5rem 0;
    }

    .hero-image {
        max-width: 140px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 1.5rem;
    }

    .marquee {
        padding: 0.5rem 0;
    }

    .marquee-content span {
        font-size: 0.85rem;
    }
}
