
/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

/* Navigation Bar */
.navbar {
    width: 100%;
    background-color: #1a1a1a;
    color: white;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #ffcc00;
}

/* Hero Banner */
.hero-banner {
    background-image: url('assets/hero-banner.png');
    height: 100vh;
    background-size: cover;
    background-position: top;
    position: relative;
    color: white;
    overflow: hidden;
    margin-top: 60px;
}

/* Overlay */
.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

/* Brand Title */
.brand-title {
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

/* Tagline */
.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Button Styling */
.shop-now {
    background-color: #ffffff;
    color: #000000;
    padding: 10px 30px;
    font-size: 1.2rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-now:hover {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

/* Boy and Halo Positioning */
.boy-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
}

.boy-image {
    height: 400px;
    z-index: 1;
}

.halo-container {
    position: absolute;
    top: -80px;
    z-index: 2;
}

.halo-image {
    width: 150px;
    animation: spin 10s linear infinite, glow 2s ease-in-out infinite alternate;
}

/* Animation Effects */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5px #ffffff);
    }
    100% {
        filter: drop-shadow(0 0 15px #ffffff);
    }
}

/* Footer Styling */
.footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    position: relative;
}

.footer-logo {
    margin-top: 20px;
}

.footer-logo img {
    width: 150px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Featured Collections Styling */
.featured-collections {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.collections-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.collection-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.collection-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.collection-item:hover img {
    opacity: 0.9;
}

.collection-item h3 {
    margin: 10px 0;
}

.collection-item p {
    padding: 0 10px;
}
