/* Add custom styles here */

/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #403c572b;
}

/* Navigation bar styles */
.navbar {
    background-color: #403c57;
    /* Background color (dark purple) */
    color: #d2d282;
    /* Text color (muted yellow) */
}

.navbar a {
    color: #ffb409 !important;
    /* Link color (muted yellow) */
}

.navbar a:hover {
    color: #e94077 !important;
    /* Link color on hover (red) */
}

/* Right-align the text in the navbar */
.navbar-nav {
    margin-left: auto;
}

/* Style the navigation items */
.navbar-nav .nav-item {
    text-align: right;
}

/* Style the navigation links (optional) */
.navbar-nav .nav-item .nav-link {
    padding-right: 1rem;
    /* Add some right padding between items */
}

/* Media query for screens with min-height: 1180px (max-width: 820px) */
.ml-custom {
    font-size: 24px;
    /* Default font size */
    text-align: center;
    display: flex;
    align-items: center;
    /* Vertically center the text */
    padding-left: 20px;
    /* Add some padding to separate the text from the logo on the left */

    /* Media query for smaller screens (max-width: 820px) */
    @media (max-width: 820px) {
        font-size: 18px;
        /* Adjust the font size for smaller screens */
        text-align: center;
        /* Center the text horizontally */
        margin-left: auto;
        /* Reset margin to center text horizontally */
    }
}



/* Combined Hero Section styles */
.hero-merged {
    position: relative;
    overflow: hidden;
    padding: 0;
    text-align: center;
    background-color: #403c57;
    /* Set the background color */
}

/* Adjust the layout of the left and right sections */
.left-section,
.right-section {
    position: absolute;
    top: 0;
    height: 100%;
    padding: 20px;
}

.left-section {
    left: 0;
    right: 50%;
    /* Adjust this value to control the separation between sections */
}

.right-section {
    left: 50%;
    /* Adjust this value to control the separation between sections */
    right: 0;
}

/* Styles for the content within the left and right sections */
.left-section img,
.right-section img {
    display: block;
    margin: 0 auto;
    margin-top: 20px;
}

.left-section h1,
.right-section h1 {
    font-size: 2rem;
    color: #fff;
    margin-top: 20px;
}

.left-section p,
.right-section p {
    color: #fff;
    margin-top: 20px;
}

.text-custom-color {
    color: #fbdf02;
}


/* Rest of your CSS styles */

/* Work section styles */
.card {
    margin: 20px 0;
}

.card-title {
    font-size: 1.25rem;
}

/* Custom CSS for card background color */
.custom-card {
    background-color: #f09322b8;
}

/* Add this to your CSS file or style section */
.project-card {
    background-color: #f09322b8;
  }

  /* The BeWyld Project Modal */
#bewyld-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

#bewyld-modal .modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

#bewyld-modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#bewyld-modal .close:hover,
#bewyld-modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Updated ID for BeWyld container */
#bewyld {
    /* background-color: #c7e2179e; */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}
  
  /* The TBT Education App Modal */
#tbt-education-app-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

#tbt-education-app-modal .modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

#tbt-education-app-modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#tbt-education-app-modal .close:hover,
#tbt-education-app-modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Skills section styles */
#skills ul {
    list-style: none;
    padding: 0;
}

.custom-skills-section {
    background-color: var(--section-background-color, #146f6f);
    font-family: Lato, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-icon {
    color: var(--icon-color, #fff);
}

.custom-text {
    color: var(--text-color, #fff);
}

.custom-text-color {
    color: var(--section-text-color, #fff);
}


/* About/Contact section styles */
#about {
    margin-top: 50px;
}

.contact-button:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

/* Button styles */
.btn:hover {
    box-shadow: 2px 2px 5px #888;
}

/* CSS for hover effect on icons */
.text-info a:hover {
    color: #1bcbcb;
    /* Change the color on hover */
}

.text-info a i:hover {
    color: #1bcbcb;
    /* Change the color of icons on hover */
}

/* CSS for box shadow on buttons */
.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    /* Add a box shadow on button hover */
}

/* Media Query for responsiveness */
@media (max-width: 768px) {
    .jumbotron {
        padding: 50px;
    }

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