body {
    background-color: pink;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}



h1 {
    font-size: 60px;
    margin: 0 0 15px;
}

h2 {
    font-weight: normal;
    margin: 0 0 35px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.buttons a {
    color: black;
    text-decoration: none;
    border: 1px solid black;
    padding: 12px 22px;
    border-radius: 4px;
}

.buttons a:hover {
    background-color: black;
    color: pink;
}

.scroll-text {
    margin-top: 45px;
}
html {
    scroll-behavior: smooth;
}

.scroll-text {
    margin-top: 45px;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.section {
    min-height: 100vh;
    padding: 80px 20px;
    text-align: center;
    background-color: white;
    color: black;
}

.section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.section p {
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}
.project-card {
    width: min(900px, 100%);
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.project-image {
    width: 50%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    background-color: #f3f3f3;
    overflow: hidden;
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.project-info {
    width: 50%;
}

.project-info h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.project-info a {
    display: inline-block;
    margin-top: 15px;
    color: black;
    text-decoration: none;
    border-bottom: 1px solid black;
}

@media (max-width: 700px) {
    .project-card {
        flex-direction: column;
        text-align: center;
    }

    .project-image,
    .project-info {
        width: 100%;
    }
}
.section {
    max-width: 1100px;
    margin: 120px auto;
    padding: 40px;
}

.section h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 50px;
}

.project-image {
    width: 320px;
    height: 450px;
    background: white;
    border: 2px solid #444;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 18px;
}

.project-info {
    text-align: left;
    flex: 1;
}

.project-info h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.project-info p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.project-info a {
    display: inline-block;
    text-decoration: none;
    color: black;
    border: 2px solid black;
    padding: 12px 24px;
    transition: 0.3s;
}

.project-info a:hover {
    background: black;
    color: white;
}
.headshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.headshot-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}
.headshot-placeholder {
    overflow: hidden;
    border-radius: 10px;
}

.headshot-placeholder img {
    transition: transform 0.3s ease;
}

.headshot-placeholder:hover img {
    transform: scale(1.05);
}
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.about-text {
    flex: 1;
    text-align: left;
    max-width: 500px;

}

.about-text p {
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 18px;
}
.about-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.about-buttons a {
    text-decoration: none;
    color: black;
    border: 1px solid black;
    padding: 12px 24px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.about-buttons a:hover {
    background-color: black;
    color: white;
}
    
    

    .hero-with-image {
    background-image: url("images/hero.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: black;

}
.hero-with-image {
    min-height: 100vh;

    background-image: url("images/hero.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 40px 20px;

    color: black;
}
.hero h1 {
    font-size: 60px !important;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 15px;
}

.hero h2 {
    font-size: 24px !important;
    font-weight: normal;
    margin: 0 0 35px;
}
#contact h2 {
    margin-top: 50px;
    font-size: 32px;
    font-weight: 600;
}

#contact a {
    color: #1d3557;
    text-decoration: none;
    font-weight: bold;
}

#contact a:hover {
    text-decoration: underline;
}

hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
    .hero h1 {
    font-size: 2.5rem;
}

}
