/* General Styles */
body {
    font-family: Alexandria, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: #f4f4f4;
}

/* Header Styles */
header {
    background-color: transparent;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header #logo {
    height: 50px;
}

header nav {
    margin-top: 10px;
}

header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

header ul li {
    margin: 0 15px;
}

header ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header ul li a:hover {
    text-decoration: underline;
}

/* Hero Section Styles */
.hero {
    position: relative;
    background: url('group2.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3em;
    color: #D9631E;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

#countdown {
    display: flex;
    justify-content: center;
    font-size: 1.5em;
    margin-bottom: 30px;
}

.countdown-item {
    background: #D9631E;
    padding: 10px;
    border-radius: 4px;
    margin: 0 5px;
}

.signup-form {
    display: inline-block;
    max-width: 600px;
    width: 100%;
}

.signup-form input {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: Alexandria, sans-serif;
}

.signup-form button {
    background-color: #D9631E;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: Alexandria, sans-serif;

}

.signup-form button:hover {
    background-color: #b7561a;
}

.social-links {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
}

.social-icon img {
    height: 24px;
}

/* Footer Styles */
footer {
    background-color: transparent;
    color: #375C8C;
    text-align: center;
    padding: 20px;
    position: relative;
}

footer #footer-logo {
    height: 30px;
}

footer p {
    margin: 10px 0 0;
}
