/* ===================================================
SECTION 1: Font Styles
=================================================== */
/* Importing different fonts used in the webpage */


@font-face {
    font-family: "museo-sans-500";
    src: url('fonts/museo-sans-500.otf') format('truetype');
}

/* Importing Google font */
@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&display=swap');



/* =========================================
SECTION 2: Global Styles
========================================= */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "museo-sans-500";
    margin: 0;
    padding: 0;
    background-image: url(images/bck2.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* For screens smaller than 768px (typical mobile screens) */
@media screen and (max-width: 768px) {
    #contact-form {
        max-width: 100%; /* Form will take full width on smaller screens */
    }

        /* Adjust label and input/textarea styles for better mobile display */
        #contact-form label,
        #contact-form input,
        #contact-form textarea,
        #contact-form .form-submit-button {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
        }
}

/* Container Styles */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    font-family: "museo-sans-500";
}
.advert {
    font-family: "museo-sans-500";
    font-size: 2vw;
    color: #fff;
    margin: 0;
    border: 0;
    padding-bottom: 20px;
    padding-top: 10px;
    text-align: center;
}

    .advert img {
        width: 360px;
        height: 88.333px;
    }



h2 {
    font-family: "museo-sans-500";
    font-size: 6vw;
    color: #fff;
    margin: 0;
    border: 0;
    padding-bottom: 20px;
    padding-top: 10px;
    text-align: center;

}

.h2 {
    font-family: "museo-sans-500";
    font-size: 6vw;
    text-shadow: rgb(0, 0, 0) 3px 1px;
    color: #fff; 
    margin: 0;
    display: flex;
    justify-content: center;
    text-align: center;
}



p {
    font-family: "museo-sans-500";
    text-align: center;
    font-size: 2.5;
    text-shadow: black 1px 1px;
}

.container {
    background-color: #333;
    color: #fff;
    padding: 15px;
    font-family: "museo-sans-500";
}

.Subhead {
    margin: 0; /* Remove default margin */
    font-weight: normal; /* Remove bold styling */
}

.Subhead2 {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
}

    .Subhead2 li {
        margin-bottom: 5px; /* Add margin between list items */
    }

    .Subhead2 a {
        color: #fff;
        text-decoration: underline; /* Underline links */
    }

        .Subhead2 a:hover {
            color: #fff; /* Optional: Keeps links white even on hover */
        }


/* ===================================================
SECTION 3: Section Styles
=================================================== */

section {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Section headings */
section h2 {
font-size: 44px;
margin: 0 0 20px;
}

/* Section paragraphs */
section p {
  margin: 0 0 10px;
}


/* ===================================================
SECTION 4: Footer Styles
=================================================== */

footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-family: "museo-sans-500";
}

footer p {
  margin: 0;
}

/* ===================================================
SECTION 5: Contact Form
=================================================== */

#contact-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
  text-shadow:black 2px 1px;
  color:white;
}

#contact-form label {
  font-size: 29px;
  margin-top: 20px;
}

#contact-form input[type="text"], #contact-form input[type="email"], #contact-form textarea {
  font-size: 18px;
  padding:auto 10px;
  width: auto 100%;
  box-sizing: border-box;
}

    #contact-form input[type="submit"] {
        font-size: 14px;
        padding: 10px;
        margin-top: 20px;
        cursor: pointer;
        font-family: "museo-sans-500";
    }

.form-submit-button {
    background: #ff0000;
    color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 5px 5px 5px #eee;
    text-shadow: none;
    width: 150px;
    align-self: center;
}

    .form-submit-button:hover {
        background: #ff000090;
        color: #fff;
        border: 1px solid #eee;
        border-radius: 10px;
        box-shadow: 5px 5px 5px #eee;
        text-shadow: none;
        width: 150px;
        align-self: center;
    }



/* /* ===================================================
SECTION 6: Media Queries
=================================================== */

/* For devices smaller than 768px */
@media (max-width: 768px) {
  .container,
  footer {
    padding: 10px;
  }

  h2,
  .h2,
  .h3 {
    font-size: 4vw;
  }

  .host img {
    width: 150px;
    height: 150px;
  }
}

/* For devices smaller than 600px */
@media (max-width: 600px) {

  h2,
  .h2,
  .h3,
  .h22 {
    font-size: 4vw;
  }

  #episodes li {
    flex: 0 1 100%;
  }

  .h2 {
    font-size: 2.5vw; /* Increase this value to adjust the size */
  }

}

/* ===================================================
SECTION 7: Contact Form Styles
=================================================== */
.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    font-family: "museo-sans-500";
}

    .contact-form h2 {
        font-family: "museo-sans-500";
        font-size: 3vw;
        text-shadow: rgb(0, 0, 0) 3px 1px;
        color: rgb(255, 255, 255);
        text-align: center;
    }

    .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        font-family: "museo-sans-500";
        font-size: 1em;
    }

    .contact-form button {
        font-family: "museo-sans-500";
        font-size: 1em;
        padding: 10px;
        cursor: pointer;
        transition: background 0.3s ease-in-out;
    }

.contact-form button:hover {
background-color: #555;
}

#contact-form label {
font-size: 19px;
}

/* ===================================================
SECTION 8: Media Queries
=================================================== */

/* For devices smaller than 768px */
@media (max-width: 768px) {
.contact-form {
  width: 90%;
}

.contact-form h2 {
  font-size: 4vw;
}

.social-links li a img {
  height: 34px;
  width: 34px;
}

footer p {
  font-size: 12px; /* Adjust this value to match your design */
}


@media (max-width: 768px) {
  footer p {
    font-size: 0.8rem;
  }
}

form input, form textarea {
  font-size: 0.8em; /* Adjust this value to make the font smaller on smaller devices */
}
}

/* For devices smaller than 600px */
@media (max-width: 600px) {
.contact-form {
  width: 95%;
}

.contact-form h2 {
  font-size: 1vw;
}


footer p {
  font-size: 10px; /* Adjust this value to match your design */
}


form input, form textarea {
  font-size: 0.3em; /* Adjust this value to make the font even smaller on very small devices */
}
}

