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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/*
header {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    */

header {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: center; /* This centers the items horizontally */
    align-items: center;     /* This centers the logo and nav vertically if needed */
    flex-direction: column;  /* Stacks the logo and nav vertically */
}

.logo {
    height: 60px;
    margin-left: 20px;
}

/*
.navbar nav ul {
    list-style: none;
    display: flex;
}

.navbar nav ul li {
    margin-right: 20px;
}

.navbar nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
*/

.navbar nav ul {
    list-style: none;
    display: flex;              /* Keep using flexbox for the menu items */
    justify-content: center;    /* Center menu items inside the ul */
    padding: 0;
}

.navbar nav ul li {
    margin-right: 20px;         /* Space between menu items */
}

.navbar nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('../images/hero-image.jpg') no-repeat center center/cover;
    height: 500px;
    position: relative;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 0, 0, 0.7);
    padding: 20px;
    color: white;
    text-align: center;
}

.hero-text h1 {
    font-size: 30px;
    line-height: 1.3;
}

/* Main Content Section */
.content {
    padding: 60px 0;
    text-align: center;
}

.content h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.content p {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.info-boxes {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.info-box {
    flex: 1;
    margin: 0 20px;
    text-align: center;
}

.info-box img {
    max-width: 100%;
    height: auto;
}

.info-box h3 {
    margin-top: 10px;
}

/* Subscribe Section */
.subscribe {
    background-color: red;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.subscribe input[type="email"] {
    padding: 10px;
    border: none;
    width: 300px;
    margin-bottom: 10px;
}

.subscribe button {
    padding: 10px 20px;
    background-color: white;
    border: none;
    color: red;
}

/* Social Section */
.social {
    text-align: center;
    padding: 40px 0;
}

/* Contact Section */
.contact {
    padding: 40px 0;
    text-align: center;
}

.contact input, .contact textarea {
    display: block;
    width: 300px;
    padding: 10px;
    margin: 10px auto;
}

.contact button {
    padding: 10px 20px;
    background-color: red;
    color: white;
    border: none;
}

/* Footer Section */
footer {
    background-color: #f8f8f8;
    text-align: center;
    padding: 20px;
}