/* General Styles */
:root {
    --color-powder-pink: #F4E4E4;
    --color-nude-beige: #E0D8D0;
    --color-off-white: #F8F8F8;
    --color-gold: #D4AF37;
    --color-dark-gray: #333333;
    --color-light-gray: #666666;
}

body {
    font-family: 'Montserrat', 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--color-dark-gray);
    background-color: var(--color-off-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--color-dark-gray);
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
    color: var(--color-dark-gray);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--color-off-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--color-nude-beige);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: bold;
    color: var(--color-dark-gray);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1.1em;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-off-white);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: var(--color-off-white);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: var(--color-off-white);
}

/* Featured Products */
.featured-products, .new-arrivals, .testimonials {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border: 1px solid var(--color-nude-beige);
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.product-card .price {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 15px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid var(--color-nude-beige);
    padding: 30px;
    text-align: center;
    font-style: italic;
}

.testimonial-card p {
    margin-bottom: 15px;
}

.testimonial-card .author {
    font-weight: bold;
    color: var(--color-gold);
}

/* Call to Action */
.cta-section {
    background-color: var(--color-powder-pink);
    color: var(--color-dark-gray);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background-color: var(--color-dark-gray);
    color: var(--color-off-white);
    padding: 60px 0;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--color-off-white);
}

.footer-section a:hover {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 1.5em;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Newsletter Popup */
.newsletter-popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.newsletter-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.newsletter-content h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: var(--color-dark-gray);
}

.newsletter-content p {
    margin-bottom: 25px;
    color: var(--color-light-gray);
}

.newsletter-content input[type="email"] {
    width: calc(100% - 20px);
    padding: 12px 10px;
    margin-bottom: 20px;
    border: 1px solid var(--color-nude-beige);
    border-radius: 5px;
    font-size: 1em;
}

.newsletter-content .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8em;
    cursor: pointer;
    color: var(--color-dark-gray);
}