/* General styles */
body {
    background: linear-gradient(135deg, #1f1c2c 0%, #928dab 100%);
    color: #fff;
    font-family: Arial, sans-serif;
    padding-top: 75px; /* Adjust padding to prevent content overlap with the fixed navbar */
}
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap');

.raleway-bold {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}

.small-sup {
    font-size: 0.6em;
    vertical-align: super;
}

.jumbotron h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}

/* Style for the navigation bar */
/* Center the monogram in the navbar */
.navbar .monogram {
    height: 50px; /* Adjust size as needed */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translateY(-50%);
}

/* Background image for home section */
header#home {
    background: url('background.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    padding: 100px 0; /* Adjust padding as needed */
}


.jumbotron {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    padding: 100px 25px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.jumbotron h1, .jumbotron p {
    margin: 0;
}

.jumbotron h1 {
    font-size: 3.5em;
    font-weight: bold;
}

.jumbotron p {
    font-size: 1.5em;
    font-weight: 300;
}

/* Style for the "About Us" section */
#about {
    background-color: #2e2e2e; /* Dark background */
    color: #ddd;
    padding: 50px 0;
}

#about .card {
    background-color: #444; /* Dark background for cards */
    border: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#about .card-body .card-title {
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

#about .card-body .card-text {
    color: #ddd;
    text-align: center;
}

#about .card img {
    width: 100%;
    height: 100%;
    
    object-fit: contain;
    border-bottom: 3px solid #3498db;
    max-height: 250px;
}

/* Style for the "Our Products" section */
#products {
    background-color: #3a3a3a; /* Slightly lighter dark background */
    color: #fff;
    padding: 50px 0;
}

.card {
    background-color: #444; /* Dark background for cards */
    border: none;
}

.card-title, .card-text {
    color: #ddd; /* Lighter text color */
}

.card-body .btn {
    margin-top: 10px;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    background-color: #3498db; /* Button color */
    border: none;
}

/* Style for the "Contact Us" section */
#contact {
    background-color: #2c3e50; /* Darker background */
    color: #ddd;
    padding: 50px 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
}

p {
    color: #bbb;
}

footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #3498db;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
