
:root {
    --background-color: #e2e2e2; 
    --text-color: #333;
    --primary-color: #4CAF50;
    --secondary-color: #d6d6d6;
    --highlight-color: #ff6f61;
    --font-size-p: 1.05rem; 
    --font-size-h1: 2.8rem; 
    --hover-scale: 1.03; 
    --margin-large: 100px;
    --margin-medium: 50px;
    --margin-small: 20px;
    --container-padding: 20px;
    --text-align-center: center;
    --text-align-justify: justify;
    --text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
    --line-height-title: 1.3;
    --line-height-p: 1.7;
}

body 
{
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    font-weight: 300; /* Light and airy typography for elegance */
    line-height: var(--line-height-p);
    transition: background-color var(--transition-duration);
}

h1
{
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
    text-align: var(--text-align-center);
    line-height: var(--line-height-title);
    text-shadow: var(--text-shadow);
    margin: var(--margin-small) 0;
    letter-spacing: 1px;
}

h1 
{
    font-size: var(--font-size-h1);
    text-transform: uppercase;
}


p 
{
    font-size: var(--font-size-p);
    color: var(--text-color);
    text-align: var(--text-align-justify);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    margin-bottom: var(--margin-medium);
    line-height: var(--line-height-p);
    letter-spacing: 0.5px;
}

button 
{
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

button:hover 
{
    background-color: var(--highlight-color); 
    transform: scale(var(--hover-scale));
}

.navbar-brand, .nav-link 
{
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
}

.nav-link:hover, .navbar-brand:hover 
{
    color: var(--highlight-color);
    transform: scale(var(--hover-scale));
}

.product-name 
{
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.product-price 
{
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.product-price:hover 
{
    color: var(--highlight-color);
}

.carousel-item 
{
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
}


.carousel-item:hover 
{
    transform: scale(var(--hover-scale-small));
    opacity: 0.9;
}

.product-img img 
{
    border-radius: 15px;
    transition: transform var(--transition-duration);
}

.product-img img:hover 
{
    transform: scale(var(--hover-scale));
}

.background-image 
{
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-image:hover 
{
    transform: scale(var(--hover-scale));
}

.text-left 
{
    text-align: left;
}