.avoidNavbar {
    margin-top: 60px !important;
}

embed {
  display: block;
  margin: 0 auto;
  width: 80%;
  height: 1000px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.navbar.solid {
    background: #000000;
    backdrop-filter: none;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff !important;
    letter-spacing: 1px;
    transition: color 0.3s ease, opacity 0.3s ease;

    width: auto;
}

.nav-link:hover {
    color: #d4d4d4 !important;
    opacity: 0.85;
}

.navbar-toggler {
    background-color: rgb(255, 255, 255);
}

.navbar-brand {
    margin: 0 0 0 20px;
    z-index: 1;
}

/* Smaller screens */
@media (max-width: 991px) {
    .navbar-collapse.collapse, .navbar-collapse.collapsing {
        margin-top: .5rem;
        width: auto;
        padding: 0;
    }

    .navbar-nav {
        display: inline-block;
        margin: 0 0 0 20px;
        margin-bottom: 0 !important;
    }
    
}

/* Larger screens */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        position: absolute;
        display: block !important;
        width: 100%;
        left: 0;
        right: 0;
    }

    .navbar-nav {
        display: flex;
        justify-content: center;
        gap: 40px;
    }

    .resume-border {
        padding: 20px 20px 0px 20px;
        border-radius: 20px;
        border: 2px solid black;
    }
}

/* HERO CONTENT */

.hero {
    position: relative;
    height: 95vh;
    background-image: url('../images/backgroundImg2.jpg');
    background-size: cover;
    background-position: bottom center;
    display: flex;
    justify-content: center;
    align-items: center;

    background-attachment: fixed;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-subtitle {
    color: #e1e1e1;
    font-size: 1.25rem;
}

/* RESUME SECTION  */
.resume-header {
    margin-top: 80px;
    margin-bottom: 40px;
    max-width: 800px;
    text-align: center;
}

.resume-section {
    margin-top: 80px;
    max-width: 800px;
}

.resume-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 0 auto 40px auto;
    max-width: 1000px;
}

.left-column h3, .right-column h3 {
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.resume-item {
    margin-top: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.resume-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 25px;
    border-left: 4px solid #000;
    padding-left: 12px;
}

.resume-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.item-date {
    font-size: 0.95rem;
    color: #666;
}

.item-details {
    margin-top: 10px;
    padding-left: 20px;
}

.item-details li {
    margin-bottom: 6px;
}

.resume-logo-small {
    width: 28px;
    height: auto;
}

.uah-bg {
    background-color: #003DA5;
}

.two-col-list {
    display: grid;
    grid-template-columns: .65fr 1fr;
}

/* Download button */
.download-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.download-btn:hover {
    background: rgb(100, 100, 100);
}

/* CONTACT */
.contact-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-container {
    text-align: center;
    max-width: 900px;
}

.contact-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.contact-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
}

.contact-value:hover {
    text-decoration: underline;
}


.quick-message {
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 15px 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
    margin-bottom: 20px;
    text-align: left;
}
