/* =========================================
   LADY ROZIER REALTY GROUP, LLC
   MAIN WEBSITE STYLESHEET
========================================= */


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}


/* =========================================
   COLORS
========================================= */

:root {
    --black: #111111;
    --soft-black: #1c1c1c;
    --gold: #d8bd82;
    --dark-gold: #9b7b3e;
    --cream: #f7f3eb;
    --white: #ffffff;
    --gray: #555555;
}


/* =========================================
   HEADER / NAVIGATION
========================================= */

header {
    background: var(--black);
    color: var(--white);

    padding: 20px 6%;

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

    position: sticky;
    top: 0;

    z-index: 1000;

    border-bottom: 1px solid #443b2e;
}

header h1 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--gold);

    font-size: 24px;
    font-weight: 600;
}

nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

nav a {
    color: var(--white);
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

nav a:hover {
    color: var(--gold);
}


/* =========================================
   HOME / HERO SECTION
========================================= */

#home {
    min-height: 700px;

    background: linear-gradient(
        120deg,
        #0d0d0d 0%,
        #171717 50%,
        #2b261f 100%
    );

    color: var(--white);

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;

    padding: 70px 7%;
}


/* HERO TEXT */

.hero-text {
    max-width: 650px;
}

.company-name {
    color: var(--gold);

    font-size: 14px;
    font-weight: bold;

    text-transform: uppercase;
    letter-spacing: 3px;

    margin-bottom: 18px;
}

#home h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: var(--gold);

    font-size: 60px;
    line-height: 1.05;

    margin-bottom: 12px;
}

#home h3 {
    color: var(--white);

    font-size: 18px;

    text-transform: uppercase;
    letter-spacing: 4px;

    margin-bottom: 28px;
}

.hero-services {
    color: var(--white);

    font-size: 18px;
    line-height: 1.9;

    margin-bottom: 30px;
}

#home h4 {
    font-family: Georgia, "Times New Roman", serif;

    color: var(--white);

    font-size: 34px;
    line-height: 1.3;

    font-weight: normal;

    margin-bottom: 35px;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;
}

.btn {
    display: inline-block;

    padding: 15px 25px;

    text-decoration: none;

    font-size: 14px;
    font-weight: bold;

    transition: all 0.3s ease;

    cursor: pointer;
}

.gold-btn {
    background: var(--gold);
    color: var(--black);
}

.gold-btn:hover {
    background: var(--white);
}

.outline-btn {
    border: 1px solid var(--gold);

    color: var(--gold);
    background: transparent;
}

.outline-btn:hover {
    background: var(--gold);
    color: var(--black);
}


/* HERO PHOTO */

.hero-image {
    width: 100%;
    height: 590px;

    overflow: hidden;

    border: 1px solid #4c4234;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    display: block;
}


/* =========================================
   FOUR SERVICE CARDS
========================================= */

.services {
    background: var(--black);

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    padding: 0;
}

.service-card {
    min-width: 0;

    text-align: center;

    padding: 45px 25px;

    border-right: 1px solid #3f382e;
    border-top: 1px solid #3f382e;
    border-bottom: 1px solid #3f382e;

    color: var(--white);
}

.service-card:last-child {
    border-right: none;
}

.service-icon {
    color: var(--gold);

    font-size: 34px;

    margin-bottom: 15px;
}

.service-card h2 {
    color: var(--gold);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;

    margin-bottom: 14px;
}

.service-card p {
    color: #eeeeee;

    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 18px;
}

.service-card a {
    color: var(--gold);

    text-decoration: none;

    text-transform: uppercase;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 1px;
}

.service-card a:hover {
    color: var(--white);
}


/* =========================================
   ABOUT TAMMY
========================================= */

.about-section {
    background: var(--cream);

    color: var(--black);

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 70px;

    padding: 90px 8%;
}

.about-image {
    width: 100%;

    max-width: 470px;

    margin: auto;

    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;

    display: block;
}

.about-text {
    max-width: 650px;
}

.section-label {
    color: var(--dark-gold) !important;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 4px;

    font-weight: bold;

    margin-bottom: 10px;
}

.about-text h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: var(--black);

    font-size: 46px;

    line-height: 1.15;

    margin-bottom: 10px;
}

.about-text h3 {
    color: var(--black);

    font-size: 15px;

    text-transform: uppercase;

    letter-spacing: 3px;

    margin-bottom: 28px;
}

.about-text p {
    color: #333333;

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 18px;
}


/* =========================================
   REAL ESTATE SECTION
========================================= */

.real-estate-section {
    background: var(--white);

    color: var(--black);

    padding: 90px 7%;

    text-align: center;
}

.real-estate-section h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: var(--black);

    font-size: 46px;

    margin-bottom: 15px;
}

.section-intro {
    color: #444444;

    max-width: 760px;

    margin: 0 auto 45px;

    font-size: 17px;
    line-height: 1.8;
}

.real-estate-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;

    margin-bottom: 40px;
}

.real-estate-card {
    background: var(--cream);

    color: var(--black);

    padding: 35px 25px;

    border-top: 4px solid var(--gold);

    min-width: 0;
}

.real-estate-card h3 {
    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;

    margin-bottom: 15px;
}

.real-estate-card p {
    color: #333333;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   HOME DESIGN
========================================= */

#design {
    background: var(--cream);

    color: var(--black);

    text-align: center;

    padding: 90px 8%;
}

#design h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 42px;

    color: var(--black);

    margin-bottom: 18px;
}

#design p {
    color: #444444;

    max-width: 800px;

    margin: auto;

    font-size: 17px;
}


/* =========================================
   NOTARY SERVICES
========================================= */

#notary {
    background: var(--black);

    color: var(--white);

    text-align: center;

    padding: 90px 8%;
}

#notary h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: var(--gold);

    font-size: 42px;

    margin-bottom: 18px;
}

#notary p {
    color: var(--white);

    max-width: 800px;

    margin: auto;

    font-size: 17px;
}


/* =========================================
   CONSULTING
========================================= */

#consulting {
    background: var(--white);

    color: var(--black);

    text-align: center;

    padding: 90px 8%;
}

#consulting h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: var(--black);

    font-size: 42px;

    margin-bottom: 18px;
}

#consulting p {
    color: #444444;

    max-width: 800px;

    margin: auto;

    font-size: 17px;
}


/* =========================================
   CONTACT
========================================= */

#contact {
    background: #e8dfcf;

    color: var(--black);

    text-align: center;

    padding: 90px 8%;
}

#contact h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 46px;

    color: var(--black);

    margin-bottom: 18px;
}

#contact p {
    color: #333333;

    font-size: 17px;

    margin-bottom: 12px;
}

#contact a {
    color: #7d602d;

    font-weight: bold;

    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}


/* =========================================
   FOOTER
========================================= */

footer {
    background: var(--black);

    color: #cccccc;

    text-align: center;

    padding: 28px 20px;

    font-size: 13px;
}


/* =========================================
   TABLETS
========================================= */

@media (max-width: 1000px) {

    header {
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }

    nav {
        flex-wrap: wrap;

        justify-content: center;
    }


    #home {
        grid-template-columns: 1fr 1fr;

        gap: 35px;

        padding: 60px 5%;
    }

    #home h2 {
        font-size: 48px;
    }

    #home h4 {
        font-size: 29px;
    }


    .services {
        grid-template-columns: repeat(2, 1fr);
    }


    .real-estate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE PHONES
========================================= */

@media (max-width: 700px) {

    header {
        position: relative;

        padding: 20px;
    }

    header h1 {
        font-size: 21px;
    }

    nav {
        gap: 10px;
    }

    nav a {
        font-size: 12px;
    }


    #home {
        grid-template-columns: 1fr;

        text-align: center;

        padding: 55px 7%;
    }

    .hero-text {
        margin: auto;
    }

    #home h2 {
        font-size: 43px;
    }

    #home h3 {
        font-size: 14px;
    }

    #home h4 {
        font-size: 27px;
    }

    .hero-services {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        height: 480px;
    }


    .services {
        grid-template-columns: 1fr;
    }

    .service-card {
        border-right: none;
    }


    .about-section {
        grid-template-columns: 1fr;

        text-align: center;

        padding: 65px 7%;
    }

    .about-text {
        margin: auto;
    }

    .about-text h2 {
        font-size: 37px;
    }


    .real-estate-grid {
        grid-template-columns: 1fr;
    }

    .real-estate-section h2 {
        font-size: 37px;
    }


    #design h2,
    #notary h2,
    #consulting h2,
    #contact h2 {
        font-size: 36px;
    }

}/* =========================================
   CONTACT FORM
========================================= */

.contact-intro {
    margin-bottom: 40px !important;
}

.contact-layout {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 60px;

    text-align: left;
}

.contact-info {
    background: #111111;
    color: white;

    padding: 40px;
}

.contact-info h3 {
    color: #d8bd82;

    font-family: Georgia, serif;
    font-size: 30px;

    margin-bottom: 15px;
}

.contact-info p {
    color: #eeeeee !important;

    margin-bottom: 25px !important;
}

.contact-info a {
    color: #d8bd82 !important;
}


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

.contact-form label {
    font-weight: bold;

    margin-bottom: 7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    padding: 14px;

    margin-bottom: 20px;

    border: 1px solid #c8bda9;

    background: white;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-button {
    background: #d8bd82;

    color: #111111;

    border: none;

    padding: 16px 25px;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;
}

.contact-button:hover {
    background: #111111;
    color: white;
}


/* CONTACT MOBILE */

@media (max-width: 750px) {

    .contact-layout {
        grid-template-columns: 1fr;
    }

}.design-showcase {
    max-width: 1200px;
    margin: 35px auto 0;
    padding: 0 25px;
}

.design-showcase img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}/* =========================================
   HOME DESIGN IMAGE
========================================= */

.design-showcase {
    max-width: 1200px;
    margin: 40px auto 0;
}

.design-showcase img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}/* =========================================
   NOTARY SERVICES - EXPANDED SECTION
========================================= */

.notary-section {
    background: #111111;
    color: #ffffff;
    padding: 90px 7%;
}

.notary-layout {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    gap: 60px;
    align-items: center;
}

.notary-image {
    width: 100%;
}

.notary-image img {
    width: 100%;
    height: auto;

    display: block;

    border: 1px solid #4b4132;
}

.notary-content {
    text-align: left;
}

.notary-content h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: #d8bd82;

    font-size: 42px;
    line-height: 1.2;

    margin-bottom: 20px;
}

.notary-intro {
    color: #eeeeee;

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 35px;
}

.notary-services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-bottom: 35px;
}

.notary-services-list div {
    background: #1b1b1b;

    padding: 22px;

    border-top: 3px solid #d8bd82;
}

.notary-services-list h3 {
    color: #d8bd82;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;

    margin-bottom: 8px;
}

.notary-services-list p {
    color: #dddddd;

    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 850px) {

    .notary-layout {
        grid-template-columns: 1fr;
    }

    .notary-content {
        text-align: center;
    }

    .notary-services-list {
        grid-template-columns: 1fr;
        text-align: left;
    }




/* NOTARY IMAGE SIZE OVERRIDE */

#notary .notary-layout {
    align-items: stretch;
}

#notary .notary-image {
    height: 700px !important;
}

#notary .notary-image img {
    width: 100% !important;
    height: 700px !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}/* NOTARY IMAGE - SHOW FULL IMAGE AND MOVE UP */

#notary .notary-layout {
    align-items: start;
}

#notary .notary-image {
    height: 700px !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#notary .notary-image img {
    width: 100% !important;
    height: 700px !important;
    object-fit: contain !important;
    object-position: top center !important;
    display: block !important;
}/* NOTARY IMAGE - REMOVE EMPTY BOTTOM BOX */

#notary .notary-layout {
    align-items: start;
}

#notary .notary-image {
    height: auto !important;
    display: block !important;
}

#notary .notary-image img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
}/* =========================================
   CONSULTING SERVICES
========================================= */

.consulting-section {
    background: #f7f3eb;
    color: #111111;
    padding: 90px 7%;
    text-align: center;
}

.consulting-header {
    max-width: 850px;
    margin: 0 auto 45px;
}

.consulting-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.consulting-header p {
    color: #444444;
    font-size: 17px;
    line-height: 1.8;
}

.consulting-services {
    max-width: 1150px;
    margin: 0 auto 30px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.consulting-card {
    background: #111111;
    color: #ffffff;

    padding: 35px 28px;

    border-top: 4px solid #d8bd82;
}

.consulting-card h3 {
    color: #d8bd82;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;

    margin-bottom: 15px;
    .consulting-card h3 {
    color: #d8bd82;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    margin-bottom: 15px;

    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}
}

.consulting-card p {
    color: #ffffff !important;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}
}

.consulting-disclaimer {
    max-width: 900px;
    margin: 25px auto 0;

    color: #666666;

    font-size: 12px;
    line-height: 1.6;

    font-style: italic;
}


/* CONSULTING ON MOBILE */

@media (max-width: 850px) {

    .consulting-services {
        grid-template-columns: 1fr;
    }

    .consulting-header h2 {
        font-size: 36px;
    }

}.consulting-card h3 {
    color: #d8bd82;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    margin-bottom: 15px;

    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}/* ALIGN CONSULTING CARD TEXT */

.consulting-services .consulting-card h3 {
    min-height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 15px !important;
}

.consulting-services .consulting-card p {
    margin-top: 0 !important;
}

/* FINAL NOTARY IMAGE FIX - DESKTOP */

#notary .notary-layout {
    align-items: start !important;
}

#notary .notary-image {
    height: auto !important;
    display: block !important;
}

#notary .notary-image img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
}