/* styles.css */

/* Global Styles */
body {
    margin: 0;
    font-family: 'Cinzel', serif;
    background-color: #fdf4e3; /* Background color */
    color: #333;
}

/* Header Styles */
.site-header {
    text-align: center;
    padding: 20px 10px;
}

.logo h1 {
    margin: 0;
    font-size: 3rem;
    font-family: 'Great Vibes', cursive; /* Cursive font for the logo */
    color: #312e7f; /* Deep blue color for the logo */
}

.navigation-menu {
    margin: 20px 0;
}

.navigation-menu .line {
    height: 2px;
    background-color: #9e3137; /* Deep red color for the line */
    margin: 10px auto;
    width: 80%;
}

.navigation-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navigation-menu ul li {
    display: inline;
}

.navigation-menu ul li a {
    text-decoration: none;
    color: #312e7f; /* Deep blue color for the links */
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation-menu ul li a:hover {
    color: #9e3137; /* Deep red hover effect */
}

/* Content Section */
.content {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    height: 300px;
    background: url('https://salilchowdhury.com/imx/banner.jpg') no-repeat center center/cover; /* Add your banner image */
    color: #fff;
    font-family: 'Cinzel', serif;
}

.content h2 {
    font-size: 2.5rem;
    margin: 0;
}

.content p {
    font-size: 1.25rem;
    margin-top: 10px;
}