/* 
- id
- classi
- tag

- selettori avanzati
settore discente
selettore > discendente diretto
*/

/* Debug */

.debug {
  * {
    border: 0;
  }

  header {
    background-color: #0060e5;
  }

  .container {
    height: 100%;
  }

  .container-sm {
    display: flex;
    flex-direction: column;
  }

  .jumbotron {
    background-image: url(../img/jumbo.png);
    background-size: cover;
    background-position: center;
    aspect-ratio: 16/6;

    display: flex;
    text-align: center;
    
    padding-top: 2rem;
  }

  section {
    padding-block: 8rem;
  }

  .channel, .meeting {
    padding-top: 4rem;
  }
}

/* .degug header {} */
/* .debug .jumbotron {} */
/* .degug > header {} */

/* Common */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Outfit;
}

.container {
  width: 70%;
  max-width: 90rem;

  margin: auto;
}

.container-sm {
  width: 55%;
  max-width: 60rem;

  margin: auto;
}

.meeting {
  text-align: center;
}

/* Utilities */

.d-flex {
  display: flex;
  gap: 3rem;
}

nav .d-flex {
  align-items: center;
  flex-wrap: wrap;
}

nav button {
  align-self: center;
}

.justify-content-between {
  justify-content: space-between;
}

.align-center {
  align-items: space-evenly;
}

.list-unstyled {
  list-style: none;
}

nav a {
  text-decoration: none;
}

/* Header */

header {
  padding: 0.5rem 0;
}

/* Main */

.w-70 {
  width: 70%;
}

.w-30 {
  width: 30%;
}

.w-100 {
  width: 100%;
}

section {
  padding: 3rem 0;
}

/* Images */

.w-70 img{
  width: 100%;
  height: auto;
}

.w-100 img {
  width: 100%;
  height: auto;
}

.w-30 > * {
  width: 100%;
}

.h2-stars img {
  width: 100%;
  max-width: 50rem;
  height: auto;
}

/* Text */

nav ul a {
  color: white;
}

nav {
  font-size: 1.3rem;
  font-weight: 400;
}

.jumbotron .container-sm {
  color: white;
}

.jumbotron h1 {
  font-size: 4rem;
}

p {
  font-size: 1.6rem;
  margin: 2rem auto;
}

.jumbotron p {
  font-size: 1.6rem;
  margin-block: 2rem;
}

section h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.meeting h2,
.meeting p {
  width: 80%;
  margin: 2rem auto;
}

.meeting h3 {
  margin-bottom: 5rem;
  font-size: 2.5rem;
}

.ending ul {
  list-style: none;
}

.sub-title {
  color: #8ea1e1;
  font-size: 2rem;
  font-weight: 600;
}

.ending .category {
  color: #8ea1e1;
  font-weight: 600;
}

/* Buttons */

button {
  padding-inline: 2.2rem;
  padding-block: 1.2rem;
  border-radius: 3rem;
  font-weight: 400;
  margin-bottom:2rem;
}

button:hover {
  cursor: pointer;
}

nav button {
  padding: 0.5rem 1.1rem;
  margin-bottom: 0;

  color: black;
  font-weight: 400;
  font-size: 1.3rem;
}

.jumbotron button,
.meeting button {
  margin-inline: 0.5rem;
  font-size: 1.8rem;
}

.light-b {
  background-color: white;
  color: black;
}

.dark-b {
  background-color: rgb(39, 39, 39);
  color: white;
}

.lightblue-b {
  background-color: #8ea1e1;
  color: white;
}

/* Background */

.middle-wave {
  height: 8rem;
  background-image: linear-gradient(rgb(255 255 255 / 0.95)),
    url(../img/wave2.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
}

.middle-wave-a {
  height: 10rem;
  background-image: linear-gradient(rgb(255 255 255 / 0.95)),
    url(../img/wave.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
}

.meeting, .channel {
  background-color: #f2f2f2;
}


/* Footer */


.ending {
  padding-block: 1rem;
  background-color: #23272a;
  color: white;
}

.ending .container {
  padding-top: 2rem;
}

.ending > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.first-class {
  width: 25%;
}

.first-class > * {
  margin-block: 1.2rem;
}

.ending .socials {
  display: flex;
  gap: 0.6rem;
}

.ending img {
  width: auto;
  height: 1.5rem;
  object-fit: cover;
  margin-inline: 0.3rem;
}

.ending .end-page {
  border-top: 2px solid rgba(118, 127, 193, 0.189); 
  margin-top: 2rem;
  padding-block: 1rem;
  
  display: flex;
  align-items: center;
}

.ending li {
  margin-block:0.5rem;
}

.ending button {
  padding-block:1rem;
  padding-inline: 1.2rem;
}