:root {
    --primary-color: #E7B1A5;
    --secondary-color: #000000;
    --accent-gold: #D4AF37;
    --light-bg: #FAFAFA;
}

body {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--secondary-color);
    background-color: #FFFFFF;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Garamond', Georgia, serif;
}

/* Navbar */
.navbar {
    background-color: #FFFFFF;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 2rem;
}
.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color) !important;
    letter-spacing: 1px;
}
.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 10px;
}
.nav-link:hover, .dropdown-item:hover {
    color: var(--primary-color) !important;
}

/* Hero / Company Description Section */
.hero-section {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}
.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}
.hero-subtitle {
    font-style: italic;
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.hero-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Featured Products Section */
.products-section {
    padding: 4rem 2rem;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}
.category-title {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 10px 20px;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    letter-spacing: 1px;
}
.product-card {
    border: none;
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-img-placeholder {
    background-color: #F0F0F0;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-name {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}
.product-price {
    color: var(--accent-gold);
    font-weight: bold;
}

/* Parallax Slogan Section */
.parallax-section {
    background-image: linear-gradient(rgba(231, 177, 165, 0.8), rgba(231, 177, 165, 0.8)), url('../img/background.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
}
.parallax-slogan {
    font-family: 'Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}
.choose-card {
    text-align: center;
    padding: 2rem 1rem;
}
.choose-img-placeholder {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.5rem;
}
.choose-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: var(--accent-gold);
}
.choose-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Why Shop With Us Section */
.why-shop-with-us {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 4rem 2rem;
}
.shop-title {
    color: #FFFFFF;
}
.shop-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    height: 100%;
    background-color: rgba(255,255,255,0.05);
}
.shop-icon {
    font-size: 2.5rem;
    color: #A6826C;
    margin-bottom: 1rem;
}
.shop-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Footer & Socials */
.social-footer {
    padding: 2rem;
    background-color: #FFFFFF;
    border-top: 1px solid #eee;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white !important;
    margin-left: 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.social-icons a:hover {
    background-color: var(--secondary-color);
}
.copyright-bar {
    background-color: var(--secondary-color);
    color: #FFFFFF;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 1px;
}