* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Forum', serif;
    margin: 0;
    background-color: #0d0d0d;
    
}

ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    max-width: 1200px;

    padding: 20px 40px;

    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(214, 185, 140, 0.35);
    border-radius: 50px;

    box-shadow: 0 12px 35px rgba(0,0,0,0.3);

    z-index: 10;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

nav,
.profile-card,
.hero-content {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(214, 185, 140, 0.45);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.35),
        0 0 35px rgba(214,185,140,0.12),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

nav:hover,
.profile-card:hover {
    border-color: rgba(214,185,140,0.75);

    box-shadow:
        0 22px 60px rgba(214,185,140,0.16),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

header {
    background: transparent;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 80px;
    

    min-height: 100vh;
    padding: 130px 80px 80px;

    position: relative;
}

.profile-card{
    width: 280px;
    
}

.hero-content{
    width: 560px;
    
}



h1, h2, h3 {
    font-family: 'Forum', serif;
}

.hero-content h2 {
    
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.8);
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}





.profile-card,
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {

    width: 560px;

    padding: 36px 42px;

    position: relative;

    z-index: 2;

    background: rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(214, 185, 140, 0.35);

    border-radius: 28px;

    color: white;

    box-shadow: 0 12px 35px rgba(0,0,0,0.3);

}

.hero-content input,
.hero-content textarea {
    padding: 12px 16px;
}






.hero-content:hover {
    transform: translateY(-6px);

    border-color: rgba(214,185,140,0.75);

    box-shadow:
        0 22px 60px rgba(214,185,140,0.18),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;

    text-shadow: 0 0 22px rgba(214,185,140,0.25);

    letter-spacing: 1px;
}

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.45);

    z-index: 1;
}

  .hero-content h2 {
        font-size: 2.3rem;
    }

.profile-card,
.hero-content,
nav {
    position: relative;
    z-index: 2;
}

a {
    text-decoration: none;
    color: white;

    font-weight: 600;

    transition: 0.3s ease;
    
}

a:hover {
    color: #d6b98c
}

h1 {
    color: white;
}

button {
    margin-top: 20px;
    padding: 12px 28px;

    border: none;
    border-radius: 8px;

    background-color: white;
    color: black;

    font-size: 1rem;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s ease;
}

button:hover {
    background-color: #d4d4d4;
    
}

.about img {
    width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.about {
    padding: 100px 10%;
    background-color: #111;
    color: white;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.profile-card {

    width: 260px;

    padding: 24px;

    position: relative;

    z-index: 2;

    background: rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(214, 185, 140, 0.35);

    border-radius: 24px;

    color: white;

    text-align: center;

    box-shadow: 0 12px 35px rgba(0,0,0,0.3);

}






.profile-card img {
    width: 120px;
    height: 120px;

    object-fit: cover;
    object-position: center top;
    border-radius: 50%;

    border: 3px solid #d6b98c;
    margin-bottom: 16px;
}

.profile-card h3 {
    font-size: 1.4rem;
    
    margin-top: 40px;
}

.profile-card p {
    margin-bottom: 32px;
    margin-top: 32px;
    color: #d6b98c;
}

.profile-card a {
    display: inline-block;
    color: #d6b98c;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.profile-card a:hover {
    color: white;
    transform: translateY(-2px);
    text-shadow: 0 0 12px rgba(214,185,140,0.45);
}

.diana-romans-logo {
    width: 120px;

    margin-top: 20px;

    opacity: 0.9;

}

.contact-link {
    display: block;
    margin: 12px 0;
    color: #d9c095;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.contact-link:hover {
    color: #fff;
}

footer {
    background-color: #0d0d0d;

    padding: 60px 10%;

    color: white;

    text-align: center;
}

.footer-content {
    margin-bottom: 20px;

    color: #d6b98c;
}

.footer-content h3 {
    margin-bottom: 20px;

    color: #d6b98c;
}

.footer-content p {
    margin-bottom: 20px;

    line-height: 1.6;
}

.wire-fraud {
    color: #ff4d4d;

    font-weight: bold;

    max-width: 900px;

    margin: 30px auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d6b98c;
    text-decoration: none;
}


    .about-section-title {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .about-section-title h2 {
        color: #d6b98c;
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: 1px;
    }



    .about-hero {
        padding: 180px 10% 100px;
        background: #0d0d0d;
        color: white;
        text-align: center;
    }

    .about-hero-content {

        max-width: 900px;

        margin: 0 auto;

        padding: 50px 70px;

        background: rgba(0,0,0,0.45);

        backdrop-filter: blur(16px);

        -webkit-backdrop-filter: blur(16px);

        border: 1px solid rgba(214,185,140,0.45);

        border-radius: 28px;

        box-shadow:

            0 18px 45px rgba(0,0,0,0.35),

            0 0 35px rgba(214,185,140,0.12),

            inset 0 1px 0 rgba(255,255,255,0.08);

    }

    .about-hero-content h1 {

        color: #d6b98c;

        font-size: 3rem;

        margin-bottom: 20px;

    }

    .about-hero-content p {

        color: white;

        font-size: 1.2rem;

        line-height: 1.6;

    }


    .about-bio-card {
        flex: 2;

        background: rgba(0,0,0,0.45);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        border: 1px solid rgba(214,185,140,0.35);
        border-radius: 24px;

        padding: 40px;

        box-shadow:
            0 18px 50px rgba(0,0,0,0.35),
            0 0 30px rgba(214,185,140,0.08);

        color: white;
    }

    .about-bio-card h2 {
        color: #d6b98c;
        font-size: 1.8rem;
        margin-bottom: 10px;
        margin-top: 25px;
    }

    .about-bio-card h3 {

        margin-top: 28px;

        margin-bottom: 8px;

    }

    .areas-list {

        margin-bottom: 26px;

    }



    .about-bio-card p {
        color: rgba(255,255,255,0.82);
        font-size: 1rem;
        line-height: 1.9;
        font-weight: 300;
    }

    .specialties-list {
        list-style: none;
        padding: 0;
        margin-top: 15px;
    }

    .specialties-list li {
        display: inline-block;
        margin: 6px;
        padding: 8px 18px;

        border: 1px solid rgba(214,185,140,0.35);
        border-radius: 999px;


        color: #d6b98c;
        background: rgba(214, 185, 140, 0.35)
    }
    
    .areas-list {
        color: rgba(255,255,255,0.85);
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .areas-list span {
        color: #d6b98c;
    }

    .about-image-card {
        flex: 1;

        background: rgba(0,0,0,0.45);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        border: 1px solid rgba(214,185,140,0.35);
        border-radius: 24px;

        padding: 20px;

        box-shadow:
            0 18px 50px rgba(0,0,0,0.35),
            0 0 30px rgba(214,185,140,0.08);
    }

    .about-image-card img {
        width: 100%;
        display: block;
        border-radius: 20px;
    }



    .about-image-card,
    .about-bio-card {

    transition: 0.35s ease;

}

.about-image-card:hover,

.about-bio-card:hover {

    transform: translateY(-6px);

    border-color: rgba(214,185,140,0.75);

    box-shadow:

        0 22px 60px rgba(214,185,140,0.18),

        inset 0 1px 0 rgba(255,255,255,0.1);

}

.about-main {
    padding: 40px 40px 90px;
}

.about-main-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}


.contact-hero {
    padding: 180px 10% 80px;
    background: #0d0d0d;
    color: white;
    text-align: center;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 70px;

    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(214,185,140,0.35);
    border-radius: 28px;

    box-shadow:
        0 18px 50px rgba(0,0,0,0.35),
        0 0 30px rgba(214,185,140,0.08);
}

.contact-hero-content h1 {
    color: #d6b98c;
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-section {
    padding: 0 10% 100px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;

}

.contact-info,
.contact-form {
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(214,185,140,0.35);
    border-radius: 24px;

    padding: 40px;

    box-shadow:
        0 18px 50px rgba(0,0,0,0.35),
        0 0 30px rgba(214,185,140,0.08);
}

contact-info h2 {
    color: #d6b98c;
    margin-bottom: 20px;
}

contact-info p {
    color: white;
    line-height: 1.7;
}

contact-info p:first-of-type {
    margin-bottom: 30px;
}
   
    

.contact-details {
    margin-top: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-details p {
    margin-bottom: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.5);

    border: 1px solid rgba(214,185,140,0.25);

    border-radius: 12px;

    padding: 14px 18px;

    color: white;

    font-size: 1rem;
}

.contact-form input::placeholder,

.contact-form textarea::placeholder {

    color: rgba(255,255,255,0.5);

}

.contact-form button {

    background: #d6b98c;

    color: #111;

    border: none;

    border-radius: 999px;

    padding: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;

}

.contact-form button:hover {

    transform: translateY(-2px);

    box-shadow:

        0 0 25px rgba(214,185,140,0.35);

}

.contact-info,
.contact-form {
    transition: all 0.35s ease;
}

.contact-info:hover,
.contact-form:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.45),
        0 0 40px rgba(214,185,140,0.15);
}

.contact-form button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 30px rgba(214,185,140,0.5);
}


.listings-hero {
    padding: 180px 10% 80px;
    background: #0d0d0d;
    color: white;
    text-align: center;
}

.listings-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 55px 70px;

    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(214,185,140,0.35);
    border-radius: 28px;

    box-shadow:
        0 18px 50px rgba(0,0,0,0.35),
        0 0 30px rgba(214,185,140,0.08);

    transition: 0.35s ease;
}

.listings-hero-content:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.45),
        0 0 40px rgba(214,185,140,0.15);
}

.listings-hero-content h1 {
    color: #d6b98c;
    font-size: 3rem;
    margin-bottom: 20px;
}

.listings-hero-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.7;
}

.listings-button,
.listings-secondary-button {
    display: inline-block;
    padding: 15px 32px;

    background: #d6b98c;
    color: #111;

    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;

    transition: 0.3s ease;
}

.listings-button:hover,
.listings-secondary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 0 30px rgba(214,185,140,0.45);
}

.listings-info-section {
    padding: 0 10% 100px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;

    max-width: 1200px;
    margin: 0 auto;
}

.listings-info-card {
    padding: 40px;

    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(214,185,140,0.35);
    border-radius: 24px;

    box-shadow:
        0 18px 50px rgba(0,0,0,0.35),
        0 0 30px rgba(214,185,140,0.08);

    color: white;

    transition: 0.35s ease;
}

.listings-info-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.45),
        0 0 40px rgba(214,185,140,0.15);
}

.listings-info-card h2 {
    color: #d6b98c;
    margin-bottom: 18px;
    font-size: 2rem;
}

.listings-info-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-form {
    padding: 32px;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
}

.hero-content h2 {
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 14px;
}

.hero-subtitle {
    margin-bottom: 14px;
}

.hero-description {
    margin-bottom: 24px;
}

        


    @media (max-width: 768px) {
    nav {
        top: 12px;
        width: 92%;
        padding: 14px 18px;
        border-radius: 24px;
        flex-direction: column;
        gap: 10px;
    }

    nav h1 {
        font-size: 1rem;
        line-height: 1.15;
        text-align: center;
    }

    nav ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 0.85rem;
    }

    .listings-hero {
    padding: 150px 6% 60px;
    }

    .listings-hero-content {
        padding: 40px 25px;
    }

    .listings-hero-content h1 {
        font-size: 2.2rem;
    }

    .listings-info-section {
        grid-template-columns: 1fr;
        padding: 0 6% 80px;
    }

    @media (max-width: 768px) {
    .hero {
        flex-direction: column;

        align-items: center;

        justify-content: flex-start;

        padding: 150px 20px 70px;

        gap: 35px;

        min-height: auto;

         display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: flex-start;
        }

    .profile-card {
        order: 1;

        position: relative;

        width: 100%;

        max-width: 340px;

        margin: 0 auto;

        z-index: 2;
    }

    .hero-content {
        order: 2;

        position: relative;

        width: 100%;

        max-width: 360px;

        z-index: 2;
    }

    .hero-content h2 {
        font-size: 2.1rem;
        line-height: 1.1;
    }

    .hero-subtitle,
    .hero-description {
        font-size: 1rem;
        line-height: 1.4;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        padding: 22px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        font-size: 0.95rem;
    }

    .about-hero {

        padding: 140px 6% 60px;

    }

    .about-hero-content {

        width: 100%;

        max-width: 360px;

        padding: 35px 24px;

    }

    .about-hero-content h1 {

        font-size: 2.4rem;

        line-height: 1.1;

    }

    .about-hero-content p {

        font-size: 1.05rem;

        line-height: 1.6;

    }

    .about-main-container {

        display: flex;

        flex-direction: column;

        width: 100%;

        max-width: 360px;

        margin: 0 auto;

        gap: 30px;

    }

    .about-image-card,

    .about-bio-card {

        width: 100%;

        max-width: 360px;

    }

    .about-bio-card {

        padding: 28px 22px;

    }

    .about-bio-card h2 {

        font-size: 2rem;

        line-height: 1.1;

    }

    .about-bio-card p {

        font-size: 1rem;

        line-height: 1.6;

    }

        .specialties-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 0;
    }

    .specialties-list li {
        width: auto;
        max-width: 150px;
        text-align: center;
        font-size: 0.85rem;
        padding: 10px 14px;
    }

     .hero {

        display: flex;

        justify-content: center;

        align-items: center;

        gap: 80px;

        min-height: 100vh;

        padding: 150px 80px 80px;

        position: relative;

    }

    .profile-card,

    .hero-content {

        position: relative;

        left: auto;

        right: auto;

        top: auto;

        bottom: auto;

        transform: none;

        margin: 0 auto;

        width: 100%;

        max-width: 340px;

    }

    

    .hero-content {

        order: 2;

        max-width: 360px;

        padding: 28px 22px;

    }

    .hero {
    gap: 80px;
    }

    .diana-romans-logo {

        max-width: 120px;

    }

    .diana-romans-logo {
    
    object-fit: contain;
    margin-top: 18px;
    }

    

    .profile-card h3{

        font-size:1.9rem;

    }

    .profile-card p{

        margin:8px 0;

    }

    .profile-card {
    width: 100%;
    max-width: 340px;
    padding: 24px;
    border-radius: 24px;
    text-align: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    }

    .profile-card h3 {
        color: white;
        font-size: 1.4rem;
        margin-top: 40px;
    }

    .profile-card p {
        margin-top: 32px;
        margin-bottom: 32px;
        color: #d6b98c;
    }

    .diana-romans-logo {
        width: 120px;
        height: auto;
        margin-top: 20px;
    }




}





    }



    