/* Navbar */

.navbar {
    padding: 10px;
    background-color: #211f20;
}

.navbar-collapse {
    align-items: center;
    justify-content: space-between;
}

/* Basic Style */

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 3rem;
    font-family: 'Zen Dots', sans-serif;
}

.btn-info {
    font-size: 1.1rem;
    margin: 20px;
}

.dark-section {
    color: white;
    background-color: #211f20;
}

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

.title-section {
    font-size: 2rem;
    font-weight: 400;
    font-family: 'Convergence', sans-serif;
    color: goldenrod;
}

.text-section {
    font-size: 1.2rem;
}

.dark-text {
    color: black;
}

.light-text {
    color: whitesmoke;
}

.description-section {
    font-size: 1.2rem;
    color: whitesmoke;
}
.bg-image-section {
    background-image: url('images/bgImg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0; /* Adjust padding as needed */
  }

  .transparent-card {
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
    border-color: transparent; /* Optional: removes border */
  }

/* Hero Section */

.hero {
    background-color: lightgrey;
    background-size: cover;
    max-height: 1100px;
    width: auto;
    text-align: center;
}

.hero-main {
    padding: 15px;
}

.hero .carousel {
    max-width: 1280px;
    max-height: 800px;
    padding: 30px;
}

.carousel-item {
    max-height: 780px;
}

.hero-main h2 {
    font-size: 1rem;
    color: #615151;
}

/* About Us */

.about-us {
    height: 30%;
    padding: 30px;
}

.about-us .container {
    max-width: 500px;
    text-align: center;
}


/* Services */

.services {
    padding: 30px 30px 70px 30px;
    margin: 30px;
}

.services .columns {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    transition: all 0.2s ease-in;
}

.services .columns:hover {
    color: white;
    background-color: #1b1b32;
}

.services i {
    font-size: 30px;
    color: green;
    background-color: black;
    padding: 9px 18px;
    border-radius: 50%;
}

.title-services {
    font-size: 25px;
    font-weight: bold;
    margin: 10px 0;
}

.badges-container {
    font-size: 15px;
    font-weight: bold;
    margin: 10px 0;
}

.badge {
    margin: 5px;
}



/* Portfolio Classes */
.classes {
    padding: 30px;
    text-align: center;
}

.classes .row .div {
    height: 333px;
}

.classes-title {
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0;
}

.classes img {
    height: 100%;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    display: block;
    transition: all 0.2s ease;
}

.classes-container {
    padding-top: 60px;
    margin-bottom: 40px;
}

.overlay {
    transition: all 0.2s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.overlay p {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 0;
}

.gallery {
    position: relative;
}

.gallery:hover img {
    opacity: 0.2;
}


.gallery:hover .overlay {
    opacity: 1;
}

.overlay .icons-container {
    display: flex;
    text-align: center;
    justify-content: center;
}

.overlay i {
    color: black;
    font-size: 60px;
    margin: 10px;
}

/* Blog */

.blog {
    min-height: 500px;
    padding: 30px;
}

.blog .card {
    width: 80%;
    max-width: 600px;
    margin: 20px;
}

.blog .card-header {
    font-weight: bold;
}
/* Contact */

.contact .container {
    max-width: 1100px;
    min-height: 200px;
    padding: 30px;
}

.contact .rectangle {
    margin-top: -5rem;
    background-color: goldenrod;
    border-radius: 10px;
    box-shadow: 0px 1px 4px 1px white;
}

.contact .row {
    width: 100%;
    display: flex;
    align-items: center;
}

.contact .description {
    color: white;
    font-size: 1.2rem;
}

.contact button {
    color: white;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid white;
    padding: 1.25em 2em;
    margin: 10px;
    border-radius: 100px;
    transition: all 0.2s ease-in-out;
}

.contact button:hover {
    background-color: white;
    color: black;
}

.contact button i {
    color: white;
    font-size: 1.3rem;
    transition: all 0.2s ease-in-out;
}

.contact button:hover i {
    color: black;
}

/* Footer */

footer {
    min-height: 500px;
}

.footer-logo {
    height: 80px;
    width: 80px;
    margin: 10px;
    border-radius: 50%;
}

.footer-text {
    font-size: 1.5rem;
    padding: 20px;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.form {
    padding: 10%;
}

.social-media-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    margin: 10px;
    border: 2px solid white;
    border-radius: 50%;
    transition: all 0.2s ease-in;
}

.social-media-icons i {
    color: white;
    font-size: 1.5rem;
    transition: ease-in;
}

.social-media-icons a:hover {
    background-color: white;
    border: 2px solid goldenrod;
}

.social-media-icons a:hover i {
    color: black;
}

/* Copyright */

.copyright {
    font-size: 15px;
    color: #f5f6f7;
    padding: 20px;
}

.message {
    font-size: 3px;
    font-style: italic;
    color: goldenrod;
    padding: 9px;
}

/* Adaptable (Responsive) */

@media screen and (max-width: 400px) {
    .process-overlay p {
        font-size: 18px;
    }
    .process-overlay i {
        font-size: 40px;
    }
}

@media screen and (max-width: 400px) {
    .overlay p {
        font-size: 18px;
    }
    .overlay i {
        font-size: 40px;
    }
}

@media screen and (max-width: 767px) {
    .navbar-brand {
        display: none;
    }   
}

