/* home.css */

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

/* Navigation styles */
header {
    background-color: #343a40;
    padding: 1.5em 0;
}

nav {
    display: flex;
    justify-content: center; /* Center the navigation bar */
    align-items: center;
}

nav .logo img {
    max-width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5em;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5em 1em;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #007bff;
    border-radius: 5px;
}

/* Hero Section */
#hero {
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay effect */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 1.5em;
}

.hero-content .btn {
    padding: 0.8em 2em;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.hero-content .btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Location Section */
#location {
    padding: 3em 0;
    background-color: #ffffff;
    text-align: center;
}

#location h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
    color: #343a40;
}

#location p {
    font-size: 1.2em;
    margin-bottom: 2em;
}

#location iframe {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#location p strong {
    color: #007bff;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 1.5em 0;
}

footer p {
    font-size: 1em;
}