@import url('https://fonts.googleapis.com/css2?family=Anek+Kannada:wght@400;700&display=swap');



.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    background: linear-gradient(to bottom, #ffffff, rgba(130, 155, 163, 0.2), #ffffff, #ffffff, #FFFFFF); /* Adjusted opacity */
    font-family: 'Anek Kannada', sans-serif; /* Apply the font here */
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #1c1c1c;
    line-height: 1.2;
    margin: 0;
    height: 60%;
    text-align: center;
}

.hero .inter{
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    color: #829BA3;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: normal;
}
.sessions {
    display: flex;
    font-family: 'Inter', sans-serif;
    text-align: center;
    justify-content: center;
    gap: 20px; /* Add some space between the session types */
}

.session {
    cursor: pointer; /* Change cursor to pointer to indicate clickable items */
}

.session.selected h2 {
    font-weight: bold;
    text-decoration: underline;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    gap: 20px; /* Espaçamento entre as imagens */
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto; /* Centralizar a galeria */
}

.gallery-box {
    overflow: hidden;
    border-radius: 10px; /* Bordas arredondadas (opcional) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra leve */
    transition: transform 0.3s ease-in-out;
}

.gallery-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.gallery-box:hover {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}



.contact {
    display: flex;
    flex-direction: column;
    padding: 100px 20px;
    background-color: #ffffff; /* Fundo branco */
    align-items: flex-start; /* Alinhar à esquerda */
    margin-bottom: -480px;
}

.contact h2 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #829BA3;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left; /* Alinhar texto à esquerda */
    padding-left: 15%; /* Ajuste o valor conforme necessário */
}

.contact p {
    font-family: 'Anek Kannada', sans-serif;
    font-size: 52px;
    font-weight: bold;
    color: #1c1c1c;
    margin: 0;
    line-height: 1.2;
    text-align: left;
    padding-left: 15%; /* Ajuste o valor conforme necessário */
}

.contact h1 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #1c1c1c;
    line-height: 1.8;
    max-width: 600px;
    margin: -7% 0 0px 60%; /* Ajuste o valor conforme necessário */
    text-align: left;
}


.btn-gallery2 {
    font-family: 'Inter', sans-serif;
    font-size: 23px;
    font-weight: bold;
    color: #1c1c1c;
    line-height: 1.8;
    max-width: 600px;
    margin: 3% 0 0px 60%; /* Ajuste o valor conforme necessário */
    text-align: left;
}
.session-view {
    text-align: center;
    padding: 50px 20px;
}

.session-title {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    color: #1c1c1c;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.photo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.main-photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.side-photos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.side-photos .gallery-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #1c1c1c;
    text-decoration: none;
    font-weight: bold;
}
@media (max-width: 1024px) { 
    .photo{
        margin-top:0%;
    }
    .contact{
        margin-bottom: 10%;
    }
}

/* Para tablets pequenos */
@media (max-width: 768px) {

    
}

/* Para telemóveis médios */
@media (max-width: 600px) { 

}

/* Para telemóveis pequenos */
@media (max-width: 480px) {
    .photo{
        margin-top:0%;
    }
    .hero h1{
        font-size:34px;
    }
    .hero p{
        font-size:36px;
    }
    .session-title {
        font-size:18px;
    }
    .session.selected h2 {
        font-size:18px;
    }
    .session h2{
        font-size:18px;
    }

}

/* Para dispositivos muito pequenos (ex: relógios inteligentes) */
@media (max-width: 320px) { 
 
}
