/* 
Name: Joshua Limena
File: styles.css
Date:2/27/2026
*/

/* CSS Reset */
body, header, main , nav, footer,  figure,figcaption, div, section, ul , li , a , img {
    margin:0;
    padding: 0;
    border:0;
}

/*Body style */
body {
    text-align: center;
    background-color: #F9F1E7; 
    color: #333333; 
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
}

/* Store name Section */
header {
    padding: 10px 0;
    background-color: #ffffff;
}

h1#businessName {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 55px;
    color: #333333;
    letter-spacing: 2px;
}

/* Navigation Bar Style */
nav {
    background-color: #333333; 
    padding: 0; 
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    flex: 1; 
    max-width: 150px; 
}

nav ul li a {
    text-decoration: none;
    display: block; 
    color: #F9F1E7;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 20px 0; 
    
}

/* The Hover Effect */
nav ul li a:hover {
    background-color: #C5A059; 
    color: #333333; 
}

/* Main Content */
#welcome {
    padding: 60px 20px;
}

h2 {
    font-family: "DM Serif Display", serif;
    font-size: 32px;
    margin-bottom: 20px;
}

#welcome p {
    max-width: 600px;
    margin: 0 auto 10px;
}

.highlight {
    font-family: "Imperial Script";
    font-size: 30px;
    color: #C5A059; /* Gold */
    margin-top: 20px;
}

/* Brands Grid */
.featuredBrands {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

figure {
    background: white;
    padding: 10px;
    border: 1px solid #ad371f; 
    border-radius: 5px;
}

figure:hover {
    transform: translateY(-5px);
}

figure img {
    width: 250px;
    height: 300px;
    display: block;
}

figcaption h3 {
    margin-top: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Marquee Style */
marquee {
    background-color: #ad371f; 
    color: white;
    padding: 10px 0;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 40px;
}

/* Footer */
footer {
    padding: 50px 0;
    background-color: #ffffff;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

footer a {
    color: #C5A059;
    text-decoration: none;
    font-style: italic;
}

footer p {
    font-size: 12px;
    margin-bottom: 10px;
    color: #888;
}
