/* ===================== GLOBAL ===================== */
body {
    background-color: #FFEDEA;
    color: #4A3B3F;
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* ===================== NAVBAR ===================== */
.my-navbar,
.my-footer {
    background-color: #B56F79 !important;
}

.navbar .nav-link {
    color: #FFEDEA !important;
}

.navbar .nav-link:hover {
    color: #FFFFFF !important;
}

/* ===================== HEADINGS ===================== */
h1, h2, h3 {
    color: #B56F79;
    font-weight: 700;
}

.overideH {
    color: #FFEDEA !important;
}

/* ===================== HERO ===================== */
#hero {
    background-color: #4A3B3F;
    color: #FFEDEA;
    padding: 6rem 0 4rem;
    text-align: center;
    clip-path: polygon(0 0, 100% 0%, 100% 85%, 0 100%);
}

/* ===================== PORTFOLIO GRID ===================== */
/* Force portfolio images to equal height */
.portfolio-img {
    width: 100%;
    height: 550px; /* adjust this height if you want */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Let images return to natural height on small screens */
@media (max-width: 576px) {
    .portfolio-img {
        height: auto;
        object-fit: contain;
    }
}

/* ===================== CONTACT ===================== */
#contact {
    background-color: #4A3B3F;
    color: #FFEDEA;
    padding: 6rem 0 4rem;
    clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0 100%);
    text-align: center;
}

#contact a {
    color: #FFEDEA;
    text-decoration: underline;
}

/* ===================== FOOTER ===================== */
.my-footer {
    color: #FFEDEA;
}

.my-footer a {
    color: #FFEDEA;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.2rem;
    }
}
