/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-color: #ffffff;
    --secondary-color: #2c3e50; /* Dark Blue/Grey */
    --accent-green: #e8f5e9;
    --accent-blue: #e3f2fd;
    --text-color: #333333;
    --gold: #c5a059;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--accent-green) 0%, #ffffff 100%);
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.btn-custom {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
}

.btn-custom:hover {
    background-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Product Section */
.product-card {
    border: none;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img-wrapper {
    background: var(--accent-blue);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-wrapper img {
    max-height: 80%;
    transition: transform 0.5s;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-body {
    padding: 25px;
    text-align: center;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Features */
.feature-box {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 50px 0 20px;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}
