/* seelostyle.css */

/* Body and font */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Navbar tweaks */
.navbar {
    background: linear-gradient(135deg, #6F4E37, #6F574E, #54463A);
    box-shadow: 0 4px 15px rgba(44, 83, 100, 0.7);
    font-weight: 600;
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #fffffe !important; /* gold-ish */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: #faf8f8 !important;
    text-shadow: 0 0 8px #ffffff;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #d1d1cd !important;
    text-shadow: 0 0 6px #c2c1bd;
    transform: scale(1.05);
}

.nav-item.active .nav-link {
    color: #dad9d3 !important;
    font-weight: 700;
    border-bottom: 2px solid #dbdad5;
}

/* Main content */
main.container {
    background: #fff;
    padding: 2rem 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgb(255, 255, 255);
    min-height: 70vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1e293b;
}

/* Headings */
h1, h2, h3, h4 {
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* Footer styling */
footer {
    font-size: 0.9rem;
    background: linear-gradient(135deg, #6F4E37, #6F574E, #54463A);
    color: #ffffff;
    letter-spacing: 0.05em;
    box-shadow: 0 -4px 15px rgba(32, 58, 67, 0.7);
    -webkit-user-select: none;
    user-select: none;
    padding: 1rem 0;
}

/* Buttons (optional enhancement) */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Responsive padding */
@media (max-width: 576px) {
    main.container {
        padding: 1rem 1.5rem;
        border-radius: 0.4rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Links styling */
a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: underline;
    color: #0a58ca;
}

/* Scroll to top button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffd700;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 22px;
    color: #203a43;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: none;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

#scrollTopBtn:hover {
    background-color: #ffea00;
}

/* Consistent product images */
.product-img-fixed {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth effect */
}

/* Hover zoom effect */
.product-img-fixed:hover {
    transform: scale(1.05); /* slight zoom */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* subtle shadow */
}

