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

.cookie-info {
    padding: 4rem 4rem;
    background-color: #333;
    color: #fff;
}

.biography-content {
    text-align: center;
    color: white;
}

.biography-img {
    width: 400px;
    height: auto;
}

.modal-content h2 {
    font-size: 0.6rem;
}

.captcha-description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 0.5em;
	margin-top: -0.5em;
}

.privacy-policy p {
  color: white;
  margin-bottom: 1em;
}

.privacy-policy h1 {
  color: white;
  margin-bottom: 1em;
}

.privacy-details {
  box-shadow: none;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
}

.footer-link {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #333;
  color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  font-size: 12px;
}

.modal-content a {
  color: #5c6bc0;
  text-decoration: none;
}

.modal-content a:hover {
  color: #3f51b5;
  text-decoration: underline;
}

.register .btn-secondary {
  display: block;
  margin: 0 auto;
  margin-bottom: 1rem;
}



.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #333; /* background-color: #f5f5f5; */
	margin-left: 10px; /* Add this line */
    margin-right: 10px; /* Add this line */
}

html {
    scroll-behavior: smooth;
}

.header {
    background-color: #333;
    padding: 0.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
	color: #fff; 
    
}

.nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #555;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.hero {
    background-image: url('img/piano9.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container {
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;

}

.hero-text-title {
    background-color: rgba(64, 64, 64, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
	
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background-color: #5c6bc0;
    color: #fff;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
	margin-top: 1rem;
}

.btn-primary:hover {
    background-color: #3f51b5;
}

.about {
    padding: 4rem 0;
    background-color: #ffffff;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
	background-color: #444;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding-left: 4rem;
    padding-right: 4rem;
	padding-bottom: 50px;
}

.about-img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
	margin-top: 20px;
}

.masterclasses {
    padding: 4rem 0;
}

.masterclasses h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.masterclass {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #444;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: box-shadow 0.3s;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

p {
    line-height: 1.6;
}

.masterclass:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.masterclass-img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.details {
    max-width: 500px;
}

.btn-secondary {
    display: inline-block;
    background-color: #9fa8da;
    color: #fff;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7986cb;
}

.register {
    padding: 4rem 0;
    background-color: #ffffff;
}

.register h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.register-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.register-form label {
    font-weight: 500;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="tel"],
.register-form input[type="number"],
.register-form select {
    padding: 0.5rem;
    font-size: 1rem;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.register-form input[type="text"]:focus,
.register-form input[type="email"]:focus,
.register-form input[type="tel"]:focus,
.register-form input[type="number"]:focus,
.register-form select:focus {
    border-color: #5c6bc0;
    outline: none;
}

.register-form input[type="submit"] {
    cursor: pointer;
    width: 100%;
    background-color: #5c6bc0;
    color: #fff;
    padding: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s;
}

.register-form input[type="submit"]:hover {
    background-color: #3f51b5;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

@media screen and (max-width: 768px) {
    .hero-text {
        padding: 0 1rem;
    }
    .about-content {
        padding: 1rem;
    }
}


.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-img,
.masterclass-img {
    width: 100%;
    max-width: 400px;
}

.about,
.masterclasses,
.register {
    padding: 4rem 0;
    background-color: #333;
    color: #fff; /* Add this line */
}

#cookie-warning {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 1rem;
background-color: #333;
border-top: 1px solid #ccc;
text-align: center;
z-index: 9999;
}

#cookie-warning p {
margin: 0;
font-size: 0.9rem;
color: #fff;
}

#cookie-warning a {
color: #0088cc;
text-decoration: none;
}

#accept-cookies {
background-color: #0088cc;
color: #fff;
padding: 0.5rem 1rem;
border: none;
border-radius: 4px;
cursor: pointer;
margin-left: 1rem;
}

#accept-cookies:hover {
background-color: #3f51b5;
}

#captcha {
    height: inherit;
    font-size: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
	margin-top: -0.5em;
}