@charset "UTF-8";

/*google font*/
@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/*----------------remise à zéro-----------------------------*/
* {
    font-family: "Italiana", sans-serif;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    border: 0px;
    color: #533838;
}

/*reinitialise la valeur du retour*/
br{
    display: block;
}


html {
  scroll-behavior: smooth; /* effet de transition */
}

[id] {
  scroll-margin-top: 60px; /* ヘッダーの高さ */
}

/*------------------structure du html-----------------------*/
header {
    padding: 0px;
}

main {
    background-color: #fff;
    padding-top: 40px;
}

footer {
    background-color: #533838;
    text-align: center;
    padding: 20px;
}

section {
    margin-bottom: 50px;
}

section.no-margin-bottom {
  margin-bottom: 0 !important;
}

.contenu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
  max-width: 960px;
  margin: auto;
}


/* Chaque étage (rangee) */
.rangee {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


/* Style des boîtes */
.boite {
    padding: 10px;
    flex: 1;
    text-align: center;
}


/* Colonne asymétrique */
.large {
  flex: 2; /* 2 parts de largeur */
}

.petite {
  flex: 1; /* 0.5 part de largeur */
}

/*------------------ajustements typographiques-------------------*/

h1 {
    font-family: "Italiana", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #533838;
}

h2 {font-family: "Italiana", sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    text-align: right;
    color: #533838;
    margin-bottom: 20px;
    margin-top: 40px;
}



h3 {font-family: "Italiana", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    text-align: right;
    color: #533838;
    margin-bottom: 10px;
    margin-top: 0px;
}

.boite h3 {font-family: "Italiana", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    color: #533838;
    margin-bottom: 10px;
    margin-top: 20px;
}

h4 {font-family: "Italiana", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: right;
    color: #533838;
    margin-bottom: 0px;
    margin-top: 0px;
}


p { font-family: "Italiana", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.1em;
    text-align: left;
    color: #533838;
    margin-bottom: 10px;
    margin-top: 0px;
}


small {
    font-family: "Italiana", sans-serif;
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 0;
}

span {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #533838;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.1em;
    text-align: left;
    margin-bottom: 10px;
    margin-top: 0px;
}

/*------------------class effet de base-------------------*/


img{
    max-width: 100%;
    max-height: 100%;
}

.boite img {
  transition: transform 0.3s ease; /* スムーズな変化 */
}

.boite img:hover {
  transform: scale(1.1); /* 1.05倍に少し拡大 */
}


/*centrer le logo dans le menu navigation*/
.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.no-padding {
    padding: 0px;
}


/*--------------------menu navigation------------------------*/
nav {
    background-color: #533838;
    position: fixed;
    width: 100%;
    z-index: 100;
}


/*permet de centrer le menu navigation*/
nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*espacement dans le menu de navigation*/
nav li {
    list-style-type: none;
    margin:0px 20px 0px 20px;
}

/*items dans le menu de navigation*/
nav a {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 15px 0px 15px 0px;
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease-in-out;
}

/*survol des items dans le menu de navigation*/
nav a:hover {
　transform: scale(1.2); /* 1.1倍に拡大 */
  text-shadow:
    0 0 5px #fff,     /* 白の光のぼかし */
    0 0 10px #fff,
    0 0 20px #fffa,   /* 少し強めの光（薄黄色） */
    0 0 30px #fffa,
    0 0 40px #fffa;
}


a {
  color: #533838;
  text-decoration: underline;
}

/*--------------------Biographie------------------------*/

/* 横並びでテキストとタイトルを配置 */
.texte-et-titre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}

/* テキスト部分 */
.texte {
  flex: 1; /* 残り全部使う */
  min-width: 0; /* 折り返しOK */
  padding-right: 20px;
}

/* タイトル側を固定幅に */
.vertical-title {
  width: 40px; /* 縦書きの分だけ固定 */
  flex-shrink: 0;
}

/* BIOGRAPHIE タイトルを縦向きに */
.vertical-title h1 {
  transform: rotate(-90deg);
  transform-origin: center;
  font-size: 60px;
  margin-top: 350px;
  margin-left: 0px;
  padding-top: 50px;
  white-space: nowrap;
}

.texte-centre {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
}

.texte-centre h1 {
  text-align: left;
}


.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}


/*------------------tournee-------------------*/


.grid-container {
  display: grid;
  grid-template-columns: 25% 32% 34% 9%;
  grid-template-rows: auto auto;
  gap: 0px;
  padding: 0px;
  margin: 70px 0px;
}

.item {
  background-color: #ffff;
  border: 0.25px dashed #533838;
  text-align: center;
  padding: 0px;
}


/* 左端：1列目で2行にまたがる */
.left {
  grid-column: 1 / 2;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: center;
  padding: 0;
}

.left img {
  width: 100%;
  height: auto;
  max-width: 250px;
  object-fit: contain;
}

/* 右端：4列目で2行にまたがる */
.right {
  grid-column: 4 / 5;
  grid-row: 1 / span 2;
}


/* 上段中央2つ */
.center1 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  padding: 20px;

}

.center1 img {
    width: 80%;
    display: block;
    margin-left: auto;
}

.center1 img:hover {
    transform: scale(1.1);
}

.center2 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}

.center2 img {
  width: 100%;
  height: auto;
  max-width: 400px;
  object-fit: contain;
  margin: 0px;
}

/* 下段中央を2列結合 */
.bottom-center {
  grid-column: 2 / span 2;
  grid-row: 2 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-center img {
  width: 100%;
  height: auto;
  max-width: 500px;
  object-fit: contain;
  margin: 0px;
}


.gif-hover-stop {
  width: 100%;
  height: auto;
  max-width: 500px;
  object-fit: contain;
  margin: 0px;
  padding: 0;
}


/*------------------musiques-------------------*/


/*------------------video-------------------*/


/*------------------contact-------------------*/

.contenu2 {
  background-color: #533838;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 960px;
  margin: auto;
  padding: 50px 0 0 0;
}

.contact a:hover {
transform: scale(1.1); /* 1.1倍に拡大 */
text-shadow:
    0 0 5px #fff,     /* 白の光のぼかし */
    0 0 10px #fff,
    0 0 15px #fffa,   /* 少し強めの光（薄黄色） */
    0 0 18px #fffa,
    0 0 20px #fffa;
}


.contact .vertical-title h1 {
  transform: rotate(-90deg);
  transform-origin: center;
  font-size: 60px;
}

.contact h1 {
    font-family: "Italiana", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    margin-bottom: 0px;
    margin-top: 0px;
}


.button:hover {
    border-bottom: 3px solid red;
}

.sns {
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: left;     /* 中央寄せ（任意） */
  gap: 40px;               /* アイコンの間隔 */
  justify-content: flex-start;
}

.sns a {
  display: flex;
  align-items: center;
  font-family: 'Italiana', serif;
  color: #ffff;
  text-decoration: none;
  text-align: left;
}

/*icons survol*/
.icon {
    width: 40px;
    height: 40px;
    text-align: bottom;
    margin-right: 20px;
}


.contact .boite img {
    display: block;
    text-align: center;
    max-width: 100%;
    height: auto;
    transform: none;
}

.grid-container2 {
  display: grid;
  grid-template-columns: 10% 32% 32% 10%;
  height: 450px;
  width: fit-content;
  align-items: center;     /* ←縦中央 */
  margin-bottom: 0;
}

.contact-vertical {
  text-orientation: upright;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 50px;
}

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

.modal h2 {
    font-family: "Italiana", sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    text-align: left;
    color: #533838;
    padding: 10px;
    margin-bottom: 0;
}

.modal h4 {
    font-family: "Italiana", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: left;
    color: #533838;
    padding: 10px;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%; /* ← ここを調整 */
  max-width: 700px; /* ← 最大幅も調整可能 */
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 10px;
}

.close-btn:hover {
  color: #333;
}

#fanForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 600px;
  margin: 10px auto 0 10px;
}

#fanForm textarea {
  width: 100%;
  min-height: 150px;
  padding: 15px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 10px;
  resize: vertical;
  font-family: "Arial", sans-serif;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

#submitFanBtn {
  align-self: flex-end;
  padding: 12px 25px;
  font-size: 16px;
  color: #fff;
  background-color: #533838;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#submitFanBtn:hover {
  background-color: #7c4d4d;
}


#questionForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 650px;
  margin: 10px auto 0 10px;
}

#questionForm textarea {
  width: 100%;
  min-height: 150px;
  padding: 15px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 10px;
  resize: vertical;
  font-family: "Arial", sans-serif;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

#submitBtn {
  align-self: flex-end;
  padding: 12px 25px;
  font-size: 16px;
  color: #fff;
  background-color: #533838;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;

}

#submitBtn:hover {
  background-color: #7c4d4d;
}


#newsletterForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

#newsletterForm input {
  padding: 12px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-family: "Arial", sans-serif;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

#submitNewsletterBtn {
  align-self: flex-end;
  padding: 12px 25px;
  font-size: 16px;
  color: #fff;
  background-color: #533838;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#submitNewsletterBtn:hover {
  background-color: #7c4d4d;
}



/*------------------Back to top-------------------*/

#topBtn {
  font-family: "Italiana", sans-serif;
  font-weight: 400;
  font-size: 18px;
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%; /* 丸くする */
  background-image: url('images/back-botton.jpg'); /* ←ここに画像のパス */
  background-size: cover;
  background-position: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s;
}

#topBtn:hover {
  opacity: 0.8;
}

/*------------------id-------------------*/
#colors {
  animation: popin 1s;
}
@keyframes popin {
  0% { box-shadow: 0 0 20px #ffa; }
  100% { box-shadow: none; }
}



