* {
    padding: 0;
    margin: 0;
    box-sizing: border-box; 
}

body {
    background-color: #8a8a8a;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #282828;
    border-radius: 5px;
    line-height: 1.6;
    height: 100%;
}

/* Header Styles */

header {
    background-color: gray;
    padding: 25px;
    justify-content: space-between;
    display: flex;
}

.header-title {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 100px;
    height: 50px;
    border-radius: 20%;
    margin-right: 20px;
}

.header-name {
    font-size: 30px;
    font-weight: bold;
    color: #0178a7
}

.header-nav-ul {
    display: flex;
    list-style: none;
}

.header-nav-list {
    margin: 10px;
    margin-top: 5px;
}

.header-nav-link {
    text-decoration: none;
    color: #282828;
    font-size: 20px;
    font-weight: bold;
}

.header-nav-link:hover {
    color: #008ac0;
    text-decoration: underline;
}

/* Title Section Styles */

.title-section {
    max-width: 1000px;
    background-color: #8a8a8a;
    padding: 20px;
    border-radius: 10px;
}

.title-header {
    font-size: 40px;
    font-weight: bold;
    color: #0178a7;
    text-align: center;
    text-decoration: underline;
}

.title-tagline {
    font-size: 24px;
    color: #2c2c2c;
    text-align: center;
    margin-top: 10px;
}

.title-summary {
    font-size: 20px;
    color: #2c2c2c;
    text-align: center;
    margin-top: 10px;
}

.title-summary a {
    text-decoration: none;
}

/* Home Main Styles */

.home-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.soundbath-info {
    width: 90%;
    background-color: #c4c4c4;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.soundbath-info-section {
    margin-bottom: 30px;
}

.soundbath-info-p {
    font-size: 25px;
    color: #2c2c2c;
    margin-bottom: 15px;
    text-align: center;
}

.soundbath-title {
    font-size: 30px;
    font-weight: bold;
    color: #0178a7;
    text-align: center;
    margin-bottom: 15px;
}

.asterisk-list {
  list-style-type: none;
  padding-left: 0;
}

.asterisk-list li::before {
  content: "* ";
  color: #0178a7;
  font-weight: bold;
  font-size: 18px;
}

.soundbath-item {
    font-size: 20px;
    color: #2c2c2c;
}

/* Events Main Styles */

.events-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    justify-content: center;
}

.events-container {
    width: 90%;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.events-poster {
    width: 600px;
    height: 800px;;
    margin-bottom: 20px;
}

/* Sessions Main Styles */

.sessions-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.session-info {
    width: 90%;
    background-color: #c4c4c4;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.session-title {
    font-size: 30px;
    font-weight: bold;
    color: #0178a7;
    text-align: center;
    margin-bottom: 15px;
}

.session-description {
    font-size: 25px;
    color: #2c2c2c;
    margin-bottom: 15px;
    text-align: center;
}

.session-benefits {
    font-size: 20px;
    color: #2c2c2c;
    margin-bottom: 15px;
    text-align: center;
}

.session-item {
    font-size: 20px;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.session-contact-section {
    width: 90%;
    background-color: #8a8a8a;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.session-contact {
    font-size: 20px;
    color: #2c2c2c;
}

.session-button {
    padding: 10px;
    background-color: #0178a7;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    margin-top: 20px;
}

.session-button:active {
    background-color: #006f9a;
}


/* About Main Content Style */

.about-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.about-info {
    width: 90%;
    background-color: #c4c4c4;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.about-me {
    font-size: 30px;
    font-weight: bold;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 15px;
}

/* Gallery Main Content Style */

.gallery-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.gallery-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 75vw;
    margin: 20px auto;
    justify-content: center;
}

figure {
    margin: 10px;
    padding: 0;
    position: relative;
    width: 100%;
}

.gallery-item {
    padding: 0px;
    position: relative;
    width: 100%;
}

.gallery-video-container {
    width: 85%;
    height: auto;
    display: flex;
    align-items: center;
}

.gallery-item video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}

.gallery-image {
    width: 400px;
    height: 400px;
}

/* Feedback Main Content Style */

.feedback-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.form-section {
    margin-top: 30px;
}

/* Contact Main Content Style */

.contact-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.contact-main {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 60px;
    align-items: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    font-family:Arial, Helvetica, sans-serif;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 20px;
}

.contact-input,
.contact-textarea {
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-family:Arial, Helvetica, sans-serif;
    background-color: white;
    color: #2c2c2c;
}

.contact-button {
    padding: 10px;
    background-color: #0178a7;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family:Arial, Helvetica, sans-serif;
}

.contact-button:active {
    background-color: #006f9a;
}

/* Footer Styles */

footer {
    background-color: #141414;
    padding: 15px 10px;
    justify-content: center;
    display: flex;
    position: sticky;
    width: 100%;
    bottom: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40%;
}

.footer-text {
    color: #e9e9e9;
    font-size: 16px;
}

.footer-socials {
    font-size: 16px;
    color: #e9e9e9;
}

.footer-socials a {
    color: #e9e9e9;
    text-decoration: none;
    margin: 0 6px;
    font-size: 18px;
}

.footer-socials a:hover {
    color: #0178a7;
}

/* Mobile Styles */

@media (max-width: 650px) {
    /* Header Mobile Styles */
    header {
        flex-direction: column;
        align-items: center;
        padding: 5px;
        text-align: center;
    }

    .header-title {
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }

    .header-logo {
        width : 70px;
        height: 35px;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .header-name {
        font-size: 22px;
    }

    .header-nav-ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        padding: 0;
        margin: 0;
    }

    .header-nav-list {
        flex: 0 1 calc(33.33% - 20px);
        text-align: center;
        margin: 5px;
        padding: 0;
    }

    .header-nav-link {
        font-size: 16px;
        padding: 2px 6px;
        display: inline-block;
    }

    /* Title Mobile Styles */

    .title-section {
        padding: 15px;
        border-radius: 6px;
    }

    .title-header {
        font-size: 28px;
    }

    .title-tagline {
        font-size: 18px;
    }

    .title-summary {
        font-size: 16px;
    }

    /* Home Main Mobile Styles */

    .soundbath-title {
        font-size: 24px;
    }

    .soundbath-info {
        padding: 20px;
        margin: 15px 0;
        border-radius: 6px;
    }

    .soundbath-info-section {
        margin-bottom: 20px;
    }

    .soundbath-info-p {
        font-size: 18px;
    }

    .soundbath-item {
        font-size: 16px;
    }

    .asterisk-list li::before {
        font-size: 16px;
    }

    /* Events Main Mobile Styles */

    .events-container {
        padding: 20px;
        border-radius: 6px;
        margin: 15px 0;
    }

    .events-container img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .events-poster {
        width: 100%;
        height: auto;
        max-width: 450px;
    }

    /* Sessions Main Mobile Styles */

    .session-title {
        font-size: 24px;
    }

    .session-description {
        font-size: 18px;
    }

    .session-info,
    .session-contact-section {
        padding: 20px;
        border-radius: 6px;
        margin: 15px 0;
    }

    .session-benefits,
    .session-item,
    .session-contact {
        font-size: 16px;
    }

    .session-button {
        font-size: 16px;
        padding: 8px 12px;
    }

    /* About Main Mobile Styles */

    .about-info {
        padding: 20px;
        margin: 15px 0;
        border-radius: 6px;
    }

    .about-me {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .about-contact {
        font-size: 16px;
        padding: 12px;
        margin-bottom: 12px;
        border-radius: 8px;
    }

    .about-button {
        font-size: 16px;
        padding: 8px 12px;
        margin-top: 16px;
    }

    /* Gallery Main Mobile Styles */

    .gallery-content {
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }

    .gallery-image {
        width: 100%;
        height: auto;
        max-width: 400px;
        aspect-ratio: 1 / 1;
        object-fit: cover
    }

    .gallery-item video {
        width: 90%;
        height: auto;
        aspect-ratio: 9 / 16;
        display: block;
        margin: 0 auto;
        object-fit: contain;
    }

    /* Feedback Main Mobile Styles */

    .iframe-wrapper {
        width: 100%;
        max-width: 550px;
        aspect-ratio: 9 / 16;
        margin: 0 auto;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .iframe-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

    .form-section {
        margin-top: 30px;
    }

    /* Contact Main Mobile Styles */

    .contact-content {
        padding: 15px;
    }

    /* Footer Mobile Styles */
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        width: 100%;
    }

    .footer-text,
    .footer-socials {
        font-size: 14px;
    }

    .footer-socials a {
        padding: 8px 12px;
        font-size: 16px;
    }
}