/*
Theme Name: starleague
Theme URI: https://monurlpersonnel.com/mesthemes
Author: Kalan Yilmaz
Author URI: https://monurlpersonnel.com
Description: Le thème développé avec Chaton
Version: 0.1
Tags: simple, facile, sans danger, base pour la suite
*/

/* Reset des marges et paddings par défaut */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #EDF4FF;
}





/* Style général du header */
.site-header {
    background-color: #3D405C;
    padding: 10px 20px;
    border-bottom: 4px solid #EC3E5A;
    display: flex;
    justify-content: center;
    
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.logo img {
    width: 40px;
}

.header-icons {
    display: flex;
    align-items: center; /* Centre les icônes verticalement */
    gap: 1.2rem; /* Espace entre les icônes */
}

.icon-menu,
.icon-profile {
    width: 28px; /* Taille augmentée */
    height: 28px; /* Taille augmentée */
    display: inline-block;
}



/* Bouton de menu burger pour mobile */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Masquer le menu par défaut sur mobile */
.main-navigation {
    display: none;
}

/* Style pour le conteneur principal du menu */
.main-navigation {
    flex: 1;
    text-align: center;
}

/* Style pour le menu */
.header-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.header-menu li {
    display: inline;
}

.header-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    padding: 5px 10px;
}

.header-menu a:hover {
    color: #EC3E5A;
}

/* Affichage du menu en version desktop */
@media (min-width: 768px) {
    .main-navigation {
        display: flex;
    }
    .menu-toggle {
        display: none; /* Masque le bouton burger sur les grands écrans */
    }
}

/* Affichage du menu burger actif en mobile */
.main-navigation.active {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #3D405C;
    padding: 20px;
    text-align: center;
}








/* Styles pour la page "Menu" en plein écran */
.menu-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #111540;
    color: #ffffff;
    position: relative;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.fullscreen-navigation {
    text-align: center;
}

.fullscreen-menu-list {
    list-style: none;
    padding: 0;
}

.fullscreen-menu-list li {
    margin: 20px 0;
}

.fullscreen-menu-list a {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    font-family: 'Bangers', cursive; /* Police Bangers */
}

.fullscreen-menu-list a:hover {
    color: #EC3E5A;
}






/* Footer */
.site-footer {
    background-color: #3D405C;
    padding: 3rem;
    text-align: center;
    color: #FFFFFF;
    font-family: 'Bangers', cursive;
    
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}

.footer-logo {
  
    align-items: center;
    gap: 10px; /* Ajuste l'espacement entre le logo et le texte */

}

.footer-logo img {
    width: 40px;
}

.footer-title {
    font-size: 24px;
    color: #FFFFFF;
    font-family: 'Bangers', cursive;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-link {
    color: #FFFFFF;
    font-size: 16px;
    text-decoration: none;

   

}

.footer-link:hover {
    color: #EC3E5A;
}


















/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 20px; /* Ajuste le padding-top si nécessaire pour l'espacement avec le header */
    text-align: center;
    background-image: url('<?php echo get_template_directory_uri(); ?>/images/fond.webp');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
}

.hero-logo {
    width: 150px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Bangers', cursive;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-description {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #EDF4FF;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.btn-register {
    background-color: #EC3E5A;
}


.btn-login {
    background-color: #EC3E5A;
}





/* Section des matchs */
.matches-section {
    padding: 20px;
    margin-top: 20px;
}

.matches-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.matches-title {
    font-family: 'Bangers', cursive;
    font-size: 24px;
    margin: 0;
}

.view-all-link {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #2F80ED; /* Couleur du lien */
    text-decoration: none;
}

.view-all-link:hover {
    text-decoration: underline;
}









/* Style de la section des cartes de matchs */

.matches-new {
    padding: 20px;
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center; /* Centre toutes les cards */
}

.matches-section {
    background-color: #EDF4FF;
    padding: 20px;
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center; /* Centre toutes les cards */
}

.matches-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.matches-title {
    font-family: 'Bangers', cursive;
    font-size: 24px;
    margin: 0;
    margin-right: 10rem;
}

.view-all-link {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #3D5AFE;
    text-decoration: none;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* Style de la carte de match */
.matches-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
    justify-content: center; 
}

.match-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}

.match-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    width: 280px; /* Largeur augmentée pour mieux centrer le contenu */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Container pour la date et le statut */
.match-date-status {
    display: flex;
    flex-direction: column; /* Arrange la date et le statut en colonne */
    align-items: center;
    margin-bottom: 10px; /* Espace sous la date et le statut */
}

.match-date {
    font-weight: bold;
    font-size: 18px; /* Augmente la taille de la date */
    color: #333;
}

.match-status {
    color: #B1B1B1;
    font-size: 16px; /* Augmente la taille du statut */
    margin-top: 5px; /* Espace entre la date et le statut */
}

.match-details {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 20px 0;
}

.team-score {
    text-align: center;
}

.score {
    font-size: 26px; /* Augmente la taille des scores */
    font-weight: bold;
    color: #333;
}

.team-name {
    font-size: 18px; /* Augmente la taille des noms d'équipe */
    color: #666;
    margin-top: 5px;
}

.btn-view-more {
    padding: 10px 20px;
    background-color: #EC3E5A;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px; /* Augmente la taille de la police du bouton */
    font-family: 'Bangers', cursive;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.btn-view-more:hover {
    background-color: #d9304c;
}







.create-team-page {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
}

.create-team-title {
    font-size: 24px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.create-team-label {
    display: block;
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 5px;
    text-align: left;
    padding-left: 10px;
}

.create-team-input,
.create-team-select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #EC3E5A;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    background-color: #FFFFFF;
}

.projects-checkboxes {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 15px;
}

.project-checkbox {
    margin-bottom: 8px;
    font-size: 14px;
}

.create-team-submit {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    background-color: #EC3E5A;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.create-team-submit:hover {
    background-color: #d9304c;
}











/* Conteneur principal pour la page de modification de compte */
.account-edit-page {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif; /* Police par défaut pour la page */
}

/* Titre de la page de modification */
.account-edit-title {
    font-size: 28px; /* Taille augmentée */
    font-family: 'Bangers', cursive; /* Police Bangers pour le titre */
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Labels des champs */
.account-edit-label {
    display: block;
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-size: 16px; /* Taille augmentée */
    font-weight: 600; /* Semi-bold */
    margin-bottom: 5px;
    text-align: left;
    padding-left: 10px;
}

/* Champs de texte et mot de passe */
.account-edit-input {
    width: 100%;
    padding: 12px; /* Taille augmentée */
    font-size: 18px; /* Taille augmentée */
    border: 2px solid #EC3E5A;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #333;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

/* Bouton de soumission */
.account-edit-submit {
    width: 100%;
    padding: 12px; /* Taille augmentée */
    margin-top: 1.5rem;
    font-size: 20px; /* Taille augmentée */
    font-family: 'Bangers', cursive; /* Police Bangers pour le bouton */
    color: #FFFFFF;
    background-color: #EC3E5A;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.account-edit-submit:hover {
    background-color: #d9304c;
}

/* Messages de succès et d'erreur */
.update-success,
.update-error {
    font-family: 'Roboto', sans-serif; /* Police Roboto pour les messages */
    font-size: 16px; /* Taille augmentée */
    margin-top: 10px;
}

.update-success {
    color: #4CAF50;
}

.update-error {
    color: #FF3B3F;
}









/* Conteneur principal pour la page d'inscription */
.registration-page {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
}

/* Titre de la page d'inscription */
.registration-title {
    font-size: 28px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Labels des champs */
.registration-label {
    display: block;
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
    padding-left: 10px;
}

/* Champs de texte */
.registration-input {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: 2px solid #EC3E5A;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #333;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

/* Bouton de soumission */
.registration-submit {
    width: 100%;
    padding: 12px;
    font-size: 20px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    background-color: #EC3E5A;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.registration-submit:hover {
    background-color: #d9304c;
}

/* Messages de succès et d'erreur */
.registration-success {
    color: #4CAF50;
    font-size: 16px;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
}

.registration-error {
    color: #FF3B3F;
    font-size: 16px;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
}


.policy-checkbox {
    display: flex;
    align-items: center;
    margin: 1.5rem;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
}

.policy-checkbox a {
    color: #EC3E5A;
    text-decoration: underline;
}

.policy-checkbox a:hover {
    color: #d9304c;
}












/* Conteneur principal pour la page de connexion */
.login-page {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
}

/* Titre de la page de connexion */
.login-title {
    font-size: 28px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Labels des champs */
.login-label {
    display: block;
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
    padding-left: 10px;
}

/* Champs de texte */
.login-input {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: 2px solid #EC3E5A;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #333;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

/* Bouton de soumission */
.login-submit {
    width: 100%;
    padding: 12px;
    margin-top: 2rem;
    font-size: 20px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    background-color: #EC3E5A;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.login-submit:hover {
    background-color: #d9304c;
}

/* Message d'erreur */
.login-error {
    color: #FF3B3F;
    font-size: 16px;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
}

/* Case à cocher "Se souvenir de moi" */
.remember-me {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    text-align: left;
    margin-bottom: 15px;
}










/* Conteneur principal pour la page d'archive des équipes */
.teams-new {
    padding: 20px;
    text-align: center;
}

.teams-title {
    font-size: 28px;
    font-family: 'Bangers', cursive;
    color: #3D405C;
    margin-bottom: 20px;
}

/* Conteneur pour les cards d'équipes */
.teams-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Style de chaque card d'équipe */
.team-card {
    width: 280px;
    padding: 20px;
    background-color: #FFFFFF;
    border: 2px solid #EC3E5A;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px; /* Ajout d'une marge inférieure pour espacer le footer */
}

.team-name {
    font-size: 20px;
    font-family: 'Bangers', cursive;
    color: #3D405C;
    margin-bottom: 10px;
}

.team-members {
    margin-bottom: 15px;
}

.team-member {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.btn-view-more {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    background-color: #EC3E5A;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-view-more:hover {
    background-color: #d9304c;
}









.privacy-policy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
}

.privacy-policy-title {
    font-size: 28px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
}

.policy-date {
    font-size: 16px;
    color: #B1B1B1;
    text-align: center;
    margin-bottom: 20px;
}

.privacy-content h3 {
    font-size: 20px;
    color: #EC3E5A;
    margin-top: 20px;
}

.privacy-content h4 {
    font-size: 18px;
    color: #FFFFFF;
    margin-top: 15px;
}

.privacy-content p, .privacy-content ul {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.6;
}

.privacy-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.privacy-content li {
    margin-bottom: 8px;
}










.terms-of-use-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
}

.terms-of-use-title {
    font-size: 28px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
}

.terms-date {
    font-size: 16px;
    color: #B1B1B1;
    text-align: center;
    margin-bottom: 20px;
}

.terms-content h3 {
    font-size: 20px;
    color: #EC3E5A;
    margin-top: 20px;
}

.terms-content h4 {
    font-size: 18px;
    color: #FFFFFF;
    margin-top: 15px;
}

.terms-content p, .terms-content ul {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.6;
}

.terms-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.terms-content li {
    margin-bottom: 8px;
}









.legal-notice-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
}

.legal-notice-title {
    font-size: 28px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
}

.legal-date {
    font-size: 16px;
    color: #B1B1B1;
    text-align: center;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    color: #EC3E5A;
    margin-top: 20px;
}

.legal-content ul {
    list-style-type: none;
    padding-left: 0;
    color: #FFFFFF;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content p {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.6;
}

.legal-content a {
    color: #2F80ED;
    text-decoration: none;
}









.single-match-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.single-match-title {
    font-size: 28px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.single-match-score {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.single-team-score {
    background-color: #3D405C;
    border: 2px solid #EC3E5A;
    border-radius: 8px;
    padding: 20px;
    width: 45%;
    text-align: center;
}

.single-team-name {
    font-size: 22px;
    font-family: 'Bangers', cursive;
    color: #EC3E5A;
    margin-bottom: 15px;
}

.single-team-name a {
    color: #EC3E5A;
    text-decoration: none;
}

.single-score {
    font-size: 32px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.single-team-players {
    margin-top: 15px;
}

.single-player-name {
    font-size: 16px;
    color: #B1B1B1;
}










.single-team-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.single-team-title {
    font-size: 28px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.team-details {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.team-players, .team-ratio {
    background-color: #3D405C;
    border: 2px solid #EC3E5A;
    border-radius: 8px;
    padding: 20px;
    width: 45%;
    text-align: center;
}

.single-team-title {
    font-size: 28px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
}

.team-player-name {
    font-size: 16px;
    color: #B1B1B1;
    margin-top: 5px;
}

.team-stats {
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 5px;
}


.back-arrow {
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    
    
}


.back-arrow img {
    width: 45px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
    transform: rotate(180deg); /* Rotation de la flèche */

}


.single-team-header {
    display: flex;
    align-items: center;
    gap: 10px; /* Espace entre la flèche et le titre */
    justify-content: center;
    margin-bottom: 20px;
}








.contact-page {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
}

.contact-title {
    font-size: 24px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-label {
    display: block;
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 5px;
    text-align: left;
    padding-left: 10px;
}

.contact-input, .contact-textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #EC3E5A;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

.contact-textarea {
    resize: vertical;
}

.contact-submit {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    font-family: 'Bangers', cursive;
    color: #FFFFFF;
    background-color: #EC3E5A;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-submit:hover {
    background-color: #d9304c;
}
