/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Навигация */
.navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff0000;
    padding: 10px;
}

.navbar li a {
    text-decoration: none;
    color: white;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.navbar li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Геройский блок */
#hero {
    background-image: url('images/hero-bg.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	background-color:black;
    background-position: center;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

#hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

#hero button {
    background-color: #ff0000;
    color: white;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

#hero button:hover {
    background-color: #b30000;
}

/* О танго */
#about {
    background-color: white;
    padding: 50px 0;
}

#about img {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    display: block;
}

/* Уроки танго */
#lessons {
    background-color: #ff0000;
    color: white;
    padding: 50px 0;
}

#lessons button {
    background-color: white;
    color: #ff0000;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

#lessons button:hover {
    background-color: #e6e6e6;
}

/* События */
#events {
    background-color: white;
    padding: 50px 0;
}

#events ul {
    list-style-type: square;
    padding-left: 20px;
}

/* Контактная информация */
#contact {
    background-color: #ff0000;
    color: white;
    padding: 50px 0;
}

#contact input, #contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    outline: none;
}

#contact button[type="submit"] {
    background-color: white;
    color: #ff0000;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

#contact button[type="submit"]:hover {
    background-color: #e6e6e6;
}

/* Футер */
footer {
    background-color: #ff0000;
    color: white;
    text-align: center;
    padding: 20px 0;
}