/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", "Poppins", sans-serif;
    list-style: none;
}

body {
    padding: 0;
}

section {
    min-height: 90vh;
    height: auto;
}

/* HEADER LAYOUT */
.hero-section {
    color: white;
    padding-left: 0;
}

header {
    height: 100%;
    padding: 0;
    display: flex;
}

/* LEFT PANEL (LOGO AREA) */
.brand {
    background-color: #4b004a;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("../images/woman.webp"); /* optional background portrait */
    background-size: cover;
    background-position: center;
    padding: 30px 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 25%;
    height: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: flex-start;
    padding: 0;
}

.logo img {
    width: 80px;
    height: auto;
}

.logo_text {
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    max-width: 180px;
    line-height: 1.2;
    margin: 0;
    text-align: right;
}

/* RIGHT HERO AREA */
.hero {
    background: linear-gradient(90deg, #c92b87, #f5623d);
    padding: 0px 100px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    position: relative;
    width: 75%;
}

/* NAVIGATION BAR */
.navbar {
    padding-top: 50px;
    position: relative;
    z-index: 1000;
}

.navlist {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    gap: 2rem;
    list-style: none;
    position: relative;
    z-index: 1000;
}

.nav_link {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.1rem; /* Increased size */
    transition: 0.3s;
    padding: 5px 0;
}

.nav_link:hover,
.nav_link.active {
    border-bottom: 2px solid white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 22px;
    justify-content: space-between;
    border: none;
    background: transparent;
    padding: 0;
    position: absolute;
    left: 2rem;
    top: 2rem;
    z-index: 1050;
}

@media screen and (min-width: 993px) {
    .hamburger {
        display: none !important;
    }
}

.hamburger span {
    display: block;
    height: 4px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
    width: 100%;
}

/* Mobile navigation list styles */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #c92b87;
}

.mobile-nav-list li:last-child .mobile-nav-link {
    border-bottom: none;
}

/* Offcanvas customization */
.offcanvas {
    background: linear-gradient(135deg, #4b004a, #c92b87, #f5623d) !important;
}

.offcanvas-title {
    font-weight: 700;
    color: #ffffff;
}

.offcanvas-header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.offcanvas-header .btn-close {
    filter: brightness(0) invert(1);
}

/* HERO TEXT */
.hero_big_text {
    max-width: 850px;
    position: relative;
    top: 60px;
    margin-bottom: 8rem;
}

.hero_title {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
}

.bold_hero_text {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 5.5rem;
    line-height: 1.1;
    display: block;
    margin: 15px 0;
}

.hero_description {
    margin-top: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: #fff;
}

/* BUTTONS */
.hero_buttons {
    margin-top: 30px;
    display: flex;

    flex-wrap: wrap;
}

.btn {
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.95rem;
}

.white-btn {
    background-color: #fff;
    color: #c92b87;
    margin-right: 15px;
    transition: 0.5ms ease-in-out;
}

.white-btn:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.outline-btn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.outline-btn:hover {
    background-color: #fff;
    color: #c92b87;
}

.nav_link {
    color: #ffff;
}

.nav_link {
    text-decoration: none;
}

#about {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("../images/ppo.png"); /* optional background portrait */
    background-size: cover;
}

.about_background {
    height: 100%;
    z-index: -1;
    background-color: #565656cc;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 1.9);
    padding: 60px 60px;
    color: #fff;
    width: 100%;
}

.about_title {
    font-size: 3.5rem;
    font-weight: 100;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about_description {
    font-weight: 100;
    font-size: 1.2rem;
    min-height: 500px; /* Stabilize layout height */
}

.get_in_touch {
    color: #fff;
    background-color: #c92b87;
    width: 150px;
    transition: all 0.5ms ease-in-out;
}

.get_in_touch:hover {
    border: 2px solid #fff;
}

.services_background {
    height: auto;
    width: 75%;
    background: linear-gradient(45deg, #d1d1d1, #fdfdfd);
    padding: 60px 60px;
}

.services_image {
    width: 50%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("../images/serviceImg.webp"); /* optional background portrait */
    background-size: cover;
}

.services_title {
    color: #c92b87;
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.services_color_text {
    color: #c92b87;
    font-size: 2rem;
    font-weight: 300;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.service_description {
    color: #484848;
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
}

.gold_text {
    color: #a38d19;
}

.get_a_quote {
    color: #fff;
    background-color: #c92b87;
    width: 150px;
    transition: all 0.5ms ease-in-out;
}

.get_a_quote:hover {
    border: 2px solid #fff;
}

#contact {
    padding: 60px 0;
    background: linear-gradient(45deg, #f5623d, #c92b87);
    color: #fff;
    position: relative;
    height: auto;
    min-height: 60vh;
}

.contact_title {
    font-size: 3.5rem;
    font-weight: 200;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact_wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.contact_form_container,
.contact_info_container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    background: transparent;
    padding: 20px;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.section_subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
    display: inline-block;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_group {
    position: relative;
}

.input_icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #c92b87;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 1;
}

.textarea_icon {
    top: 25px;
}

.contact_input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #333;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.message_input {
    border-radius: 20px;
    height: 150px;
    resize: none;
}

.contact_input:focus {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact_input::placeholder {
    color: #888;
}

.submit_btn {
    padding: 15px 30px;
    background: #fff;
    color: #c92b87;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #f0f0f0;
}

.info_item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info_item:hover {
    transform: translateX(10px);

    background: #fff;
}

.icon_box {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c92b87;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info_text {
    display: flex;
    flex-direction: column;
    color: #333;
}

.info_text span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 5px;
    color: #666;
}

.info_text a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    word-break: break-all;
}

.info_text a:hover {
    text-decoration: underline;
    color: #c92b87;
}

@media screen and (max-width: 768px) {
    .contact_wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact_title {
        font-size: 2.5rem;
    }
}

.icons_list {
    padding: 0px;
}

.list_item {
    width: 80px;
    padding: 0.8rem;
    background-color: #ffffff;
    border-radius: 50%;
    border: #ddd4d4 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
}

.list_item:hover,
.list_item.active-service {
    background-color: transparent;
    border: #c92b87 2px solid;
}

/* Our Essence Icon Active State */
#about .list_item {
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

#about .list_item:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

#about .list_item.active-essence {
    opacity: 1;
    transform: scale(1.1);
    background-color: transparent;
    border: #c92b87 2px solid;
}

.list_item img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/*Articles*/

.sub-title {
    color: #c92b87;
}

.trending_collection a,
.opinion_collection a,
.video_collection a {
    text-decoration: none;
    color: #000;
}

.article_nav li a {
    color: #000;
}

.big_article_text {
    font-size: 3.5rem;
    font-weight: 100;
}

.top_compartment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.search {
    background: #000;
    border: none;
    border-radius: 2.5rem;
}

.horizontal_line {
    border-bottom: 2px solid #c92b87;
    width: 100vw;
}

.trending_collection,
.video_collection,
.opinion_collection {
    margin-top: 1rem;
}

.trending_lg_text {
    color: #c92b87;
}

.article_title {
    font-weight: 700;
}

.image {
    max-width: 600px;
}

.image img {
    width: 100%;
    height: auto;
}

.date {
    font-weight: 300;
    font-style: italic;
}

.author {
    font-weight: 600;
    font-style: italic;
}

.video {
    max-width: 100%;
    height: 250px;
}

.video-title {
    font-size: 1.8rem;
    font-weight: 600;
}

@media screen and (max-width: 992px) {
    .hero-section {
        height: 82vh;
    }

    .about,
    .services,
    .contact {
        height: max-content;
    }

    .brand {
        width: 50%;
        min-height: 50vh;
        background-size: cover;
        background-position: center;
        padding: 20px 15px;
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        display: flex;
        align-items: flex-start;
        padding: 0;
    }

    .logo img {
        width: 60px;
    }

    .logo_text {
        font-size: 0.65rem;
        line-height: 1.15;
        max-width: 180px;
        text-align: right;
    }

    .hero {
        padding: 0 10px;
    }

    .hero_title {
        font-size: 2rem !important;
        line-height: 2.3rem;
    }

    .bold_hero_text {
        font-weight: 500;
        font-size: 3rem !important;
    }

    .hero_description {
        font-size: 0.85rem;
        line-height: 1.1rem;
    }

    /* Reduce hero spacing so content fits the section */
    .hero_big_text {
        top: 20px;
        margin-bottom: 3rem;
    }

    .btn {
        padding: 8px 20px;
    }

    .about_description,
    .service_description {
        font-size: 0.8rem;
        min-height: auto;
    }

    .list_item {
        padding: 0.1rem;
        width: 75px;
        background-color: transparent;
        border: none;
    }

    input,
    textarea {
        width: 15rem;
    }

    .contact_section {
        gap: 4rem;
    }

    .contact_phone_number,
    .contact_email {
        font-size: 1.1rem;
    }

    .line {
        display: none;
    }

    .hamburger {
        display: flex;
        left: 1.5rem;
        right: auto;
        top: 1.5rem;
        margin-left: 286px;
    }

    .hamburger span {
        background-color: #fff;
    }

    .navlist {
        display: none !important; /* Hide desktop nav on mobile/tablet */
    }
    .about_background {
        height: 92vh;
    }
}

@media screen and (max-width: 576px) {
    .brand {
        min-height: 45vh;
        padding: 15px 10px;
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        display: flex;
        align-items: flex-start;
        padding: 0;
    }

    .logo img {
        width: 50px;
    }

    .logo_text {
        font-size: 0.6rem;
        line-height: 1.1;
        max-width: 110px;
        text-align: right;
    }

    .hamburger {
        left: 1rem;
        right: auto;
        top: 1rem;
        width: 28px;
        height: 20px;
        margin-left: 137px;
    }

    .hero_title {
        font-size: 2rem !important;
    }

    .bold_hero_text {
        font-size: 2.5rem !important;
    }

    .hero_description {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .white-btn {
        margin-right: 0;
    }

    .brand {
        height: 40vh; /* Slightly smaller on very small screens */
        background-position: center 30%; /* shift image down a bit to align with hero */
    }
    .services_image {
        min-height: 45vh;
        max-height: none;
        background-position: center 35%; /* nudge image lower to reveal subject */
    }

    .hero_big_text {
        top: 12px;
        margin-bottom: 2rem;
    }

    .contact_form_container,
    .contact_info_container {
        padding: 20px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #c92b87;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
    color: #c92b87;
}

/* Removed @keyframes bounce */

/* Footer Styles */
.site-footer {
    margin-top: 0;
    padding: 4rem 0;
    background: linear-gradient(45deg, #f5623d, #c92b87);
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-logo-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand-text-footer {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 180px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
}

.copyright {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.copyright a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.copyright a:hover {
    border-bottom-color: #fff;
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .brand-logo-footer {
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .brand-text-footer {
        text-align: center;
    }
}

@media screen and (max-width: 607px) {
    .about_background {
        height: 90vh;
    }
}

@media screen and (max-width: 360px) {
    .about_background {
        height: 90vh;
        padding: 60px 17px;
        width: 100%;
    }
}
