.tutorial {
    position: fixed;
    inset: 0;
    background: rgba(0, 35, 29, 0.9);
    z-index: 9999999;
    display: none;
    justify-content: center;
    align-items: center;
}
.tutorial.active {
    display: flex;
}
.tutorial iframe {
    width: 60%;
    height: 80%;
    border-radius: 12px;
    border: none;
}
.tutorial .close {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 2rem;
    color: var(--text1);
    cursor: pointer;
}
.tutorial-btn{
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    --btn-color: var(--accent) !important;
    font-size: 28px !important;
    padding: 0 !important;
}
.tutorial-btn:hover{
    --btn-color: var(--accent2);
}

body{
    background: var(--primary) !important;
}

section{
    width: 100%;
    min-height: 100lvh;
    height: max-content;
    padding: 20px 0;
}

/* ------------------------------
   HOME SECTION
--------------------------------*/
section.home {
    width: 100%;
    height: 100vh;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section.home .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}
section.home .text h1 {
    color: var(--text1);
    font-size: 4rem;
    margin: 0;
}
section.home .text p {
    color: var(--text1);
    text-align: center;
    margin: 0;
}
section.home .text .btn {
    background: var(--secondary);
    margin-top: 20px;
}

section.home .down {
    position: absolute;
    bottom: 50px;
    color: var(--text1);
    font-size: 2.5rem;
    animation: up-down 2s infinite linear;
}

section.home .text .content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center !important;
    color: var(--text1);
}

/* ------------------------------
   BARBERS GRID
--------------------------------*/
section.barbers {
    background: var(--bg1);
    padding: 40px 6%;
    width: 100%;
    text-align: left !important;
}
.heading {
    text-align: center;
    font-size: 3rem;
    color: var(--primary);
}


.nobarber{
	display: flex;
	justify-content: center;
	align-items: center;
}

.nobarber img{
    max-width: 300px;
    width: 100%;
}


/* ------------------------------
  ABOUT SECTION
--------------------------------*/
.about{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.about .left, .about .right{
    height: 80%;
    width: 40%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.about .left img{
    border-radius: 20px;
    width: 60%;
}

.about > .right > h1, p{
    width: 100%;
    text-align: left;
}

/* ------------------------------
    NEWS SECTION
--------------------------------*/
.news{
    width: 100%;
    height: 100lvh;
    background: var(--bg1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.news .placeholder{
    width: 70%;
    padding: 50px 35px;
    background: var(--bg2);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.news .placeholder img{
    max-width: 300px;
    width: 100%;
}

/* ------------------------------
   CONTACT SECTION
--------------------------------*/
.footer {
  background: var(--text2);
  padding: 40px 50px;
  color: var(--text1);
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.footer-section {
  flex: 1 1 130px;
}

.footer-map{
    height: 300px;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.footer-links,
.contact-list {
  list-style: none;
  padding: 0;
}
.footer-links li,
.contact-list li {
  margin-bottom: 10px;
}
.footer-links a,
.contact-list a {
  color: var(--text1);
  transition: color 0.3s;
}
.footer-links a:hover,
.contact-list a:hover {
  color: var(--accent);
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  border-top: 1px solid var(--text4);
  padding-top: 15px;
}
.btn.black {
  background: var(--accent);
  color: var(--text1);
  padding: 8px 15px;
  margin-top: 10px;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn.black:hover {
  background: var(--accent2);
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 900px) {
    .barbers_container {
        grid-template-columns: 1fr;
    }
    .barber-card {
        flex-direction: column;
        text-align: center;
    }
    .about {
        flex-direction: column;
    }
    .about .left, .about .right{
        width: 80%;
        height: 35%;
    }
    .about .right h1, p{
        text-align: center;
    }
    .contact .info {
        flex-direction: column-reverse;
        text-align: center;
        gap: 60px;
    }
    .contact .right {
        width: 100%;
    }
}
@media (max-width: 600px) {
    section.home .text h1 {
        font-size: 2.5rem;
    }
    .tutorial iframe {
        width: 90%;
        height: 60%;
    }

    .news .placeholder{
        background: transparent;
        width: 100%;
        height: 80%;
    }
}