/* Updated CSS to complement Bootstrap */

/* Override default body and html styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif!important;
}

/* (A) WRONG ORIENTATION - SHOW MESSAGE HIDE CONTENT */
@media only screen and (orientation:landscape) {
  #turn { display:block; }
  #Data { display:none; }
}
 
/* (B) CORRECT ORIENTATION - SHOW CONTENT HIDE MESSAGE */
@media only screen and (orientation:portrait) {
  #turn { display:none; }
  #Data { display:block; }
}

/* (B) ACIMA DE 555W Fodeu */
@media (width > 555px) {
  #mobileApp { display:block; }
  #Data { display:none; }
}

@media (width < 555px) {
  #mobileApp { display:none; }
  #Data { display:block; }
}

/* Override background image styles */
.background-image {
    background-image: url('../imgs/bckground.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh; /* Ensure full viewport height */
    position: relative;
}

/* Override overlay styles */
.overlay {
    background-color: rgba(0, 135, 204, 0.5); /* Adjusted opacity */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Override main title styles */
.main-title {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    margin-top: 20vh;
}

/* Override sub title styles */
.sub-title {
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
    margin-top: 10px;
    margin-left: 15px;
    margin-right: 15px;
}

/* Override language buttons container styles */
.language-buttons {
    margin-top: auto;
    margin-bottom: 10px;
    display: inline-grid;
    flex-direction: column; /* Adjusted for mobile responsiveness */
    align-items: center; /* Center align items */
	width:80%;
}

/* Override language button styles */
.language-button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 135, 204, 1);
    background-color: #ffffff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 80%; /* Adjusted width */
    margin: 10px 0; /* Adjusted margin */
    text-align: center;
    height: 60px;
}

/* Override flag styles */
.flag {
    width: 50px;
    height: 50px;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
    border-radius: 16px;
    position: absolute;
    /*left: 60px;*/
	margin-top: 3px;
}
.text-btns-inicio{
	font-weight: 300;
	font-family: 'Kumbh Sans', sans-serif;
	color:#0087CC;
}
/* Hover effect for language buttons */
.language-button:hover {
    background-color: #cccccc;
}
    #status-conexao {
        width: 100%;
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 10px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
		overscroll-behavior-y: contain;
    }
/* Responsive adjustments for language buttons */
@media (max-width: 768px) {
    .language-buttons {
        flex-direction: row; /* Switch back to row direction */
    }


    /*.language-button {
        width: calc(50% - 20px); /* Adjusted width */
       /* margin: 0 10px; /* Adjusted margin */
    /*}*/
}

.titulos_capela{
	/*margin-top: 130px;*/
    /*padding-left: 15px;*/
   /* margin-left: 112px;*/
    padding-right: 30px;
	font-family: 'Kumbh Sans', sans-serif;
	font-size;21px;
	font-weight:600;
	color:#0087CC;
	margin-bottom:0px;
}

.subtitulos_capela{
	/*margin-top: 145px;
    padding-left: 15px;*/
   /* margin-left: 112px;*/
    padding-right: 24px;
	font-family: 'Kumbh Sans', sans-serif;
	font-size;16px;
	font-weight:300;
	color:#0087CC;
}

.texto-capela{
	/*margin-top: 145px;*/
	text-align:justify;
    padding-left: 9%;
   /* margin-left: 135px;*/
    padding-right: 10%;
	font-family: 'Kumbh Sans', sans-serif;
	font-size;16px;
	font-weight:300;
	color:#000000;
}

.btn-ouvir{
	bottom: 35px;
    float: left;
    width: 80%;
    height: 60px;
    border-radius: 15px;
    /* margin-left: 15px; */
    /* margin-right: 15px; */
    margin: auto;
    right: 0px;
    left: 0px;
	font-family: 'Kumbh Sans', sans-serif;
	font-size;16px;
		font-weight:500;
		background-color:#0087CC;
		border:none;
		color:white;
		
		
}