*{
    margin: 0;
    padding: 0;
}
body{
   font-family: 'Poppins', sans-serif;
    background-color: #2c2c2c; /* Dark background as seen in the image */
    color: #f5f5dc; /* Off-white for general text */
}
a {
    text-decoration: none;
    color: inherit; /* Inherit color from parent for nav links by default */
}

a:hover {
    color: #d1b48c; /* Lighter brown for hover effects */
}

/* Navbar adjustments */
.navbar {
    background-color: #3a3a3a !important; /* Darker nav background */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar-brand img {
    margin-right: 5px;
}

.navbar h1 {
    font-size: 1.8rem;
    color: #f5f5dc;
    margin-bottom: 0;
}

.navbar h1 span {
    color: #d1b48c; /* Accent color for the dot */
}

.navbar-nav .nav-link {
    color: #f5f5dc !important;
    font-weight: 500;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #d1b48c !important;
}

.dropdown-menu {
    background-color: #3a3a3a;
    border: none;
}

.dropdown-item {
    color: #f5f5dc;
}

.dropdown-item:hover {
    background-color: #4b4b4b;
    color: #d1b48c;
}
.coffee-section {
    display: flex;
    align-items: center; /* Vertically aligns items */
    justify-content: space-between; /* Adds space between text and image */
    padding: 20px; /* Adds padding around the section */
}

/* Container for the text */
.content {
    flex: 1;
    padding-right: 20px; /* Adds space between text and image */
}
/* Container for the image */
.image-container {
    flex: 1;
    display: flex;
    justify-self: right;
    justify-self: end;
    align-self: center;
    /* Centers the image horizontally */
}
/* Image styling */
.image-container img {
    max-width: 80%; /* Keeps the image responsive */
    height: 300px;
    width: 800px;
    display: block; /* Removes extra space below the image */
}
/* Text styling adjustments */
.content h1 {
    margin-top: 0; /* Removes default top margin */
    font-size: 2em; /* Adjusts font size as needed */
    font-weight: bold;
}

.content p {
    margin: 10px 0; /* Adds space around the paragraph */
    line-height: 1.6; /* Improves readability */
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-content p {
    margin: 0;
    padding: 5px 0;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-content a {
    color: #ddd;
    text-decoration: none;
}

.footer-content a:hover {
    color: #fff;
}

.footer-credits {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 10px;
}