/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #7bbf7b; /* Soft green for a natural, calming feel */
    padding: 1rem 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logo styling */
.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Navbar links container */
.nav-links {
    display: flex;
    list-style-type: none;
}

.nav-links li {
    margin-left: 2rem;
}

/* Navbar links styling */
.nav-links a {
    text-decoration: none;
    font-size: 1rem;
    color: #ffffff; /* White text */
    transition: color 0.3s ease-in-out;
}

/* Hover effect for links */
.nav-links a:hover {
    color: #f4a261; /* A warm orange color */
}

/* Responsive design: Align navbar links vertically on smaller screens */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        width: 100%;
        flex-direction: column;
        padding-top: 1rem;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
}

/* Trading Hours page specific styling */
.hours-section {
    padding: 2rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.hours-container {
    max-width: 800px;
    margin: 0 auto;
}

.hours-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.hours-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    text-align: left;
    border: 1px solid #ddd;
}

.hours-table td {
    padding: 1rem;
    font-size: 1.1rem;
    color: #555;
    border-top: 1px solid #ddd;
}

.hours-table td:first-child {
    font-weight: bold;
    color: #7bbf7b; /* Soft green for the days of the week */
}

.hours-table tr:nth-child(even) {
    background-color: #f0f5f0; /* Light green background for even rows */
}

.hours-table tr:hover {
    background-color: #e1e1e1; /* Light grey background on hover */
    transition: background-color 0.3s ease;
}


footer {
    text-align: center;
    padding: 1rem;
    background-color: #7bbf7b; /* Soft green background for the footer */
    color: white;
    margin-top: 260px;
}