/*
Theme Name: Divi Child
Template: Divi
Description: Child theme for Divi
Version: 1.0
Author: Your Name
*/

/* Optional: Custom styles here */

::-webkit-scrollbar { display: none; }

/* 
input[type="text"].ff-el-form-control,
input[type="email"].ff-el-form-control {
    font-family: 'Inter';
    flex: 1;
    padding: 16px;
    border-style: none;
    border: 1px solid #E1E1DE;
    font-size: 1rem;
    outline: none;
    background: none;
    border-radius: 0;
}
input[type="email"].ff-el-form-control { flex: none; width: 100%; }

.ff-el-form-control:focus {
    background-color: #FAF9F6 !important;
    border-color: #E1E1DE !important;
}

.ff-btn-submit:not(.ff_btn_no_style) {
    background-color: #2C2C2C !important;
    color: #FAF9F6 !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 16px !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    width: 100% !important;
    font-size: 1rem !important;
}

.ff-btn-submit:not(.ff_btn_no_style):hover { background: #BFA375 !important; opacity: 1 !important; } */

.mc-field-group {
    display: flex;
    gap: 16px;
    margin-top: auto;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

input[type="text"],
input[type="email"] {
    flex: 1;
    padding: 16px;
    border-style: none;
    border: 1px solid #E1E1DE;
    font-size: 14px;
    outline: none;
    background: none;
}
input[type="email"] { flex: none; width: 100%; }
input::placeholder { color: #2C2C2C !important; }
input[type="submit"] {
    background: #BFA375;
    background-image: url('https://enu.1c6.myftpupload.com/wp-content/uploads/2026/01/Gold-Texture-3.webp'); 
    background-size: cover;
    color: #FAF9F6;
    border: none;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 14px;
}
input[type="submit"]:hover { 
    background-image: none;
}










/* Text Masking transition */
.mask {
    width: 100%;
    height: 115%;
    position: absolute;
    background: #FAF9F6;
    left: 0;
    top: 0;
    opacity: 0.8;
}


/* Header */
.site-header {
    /* position: fixed;
    top: 0;
    left: 0;
    z-index: 9999; */
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .10);
    transition: background-color 0.5s ease-in-out;
}

.site-header:hover {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    height: 100px;
}

/* Logo & Tagline */
.logo-tagline {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-logo {
    display: block;
    color: #2C2C2C;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    text-decoration: none;
    padding: 0 3rem;
    border-right: 1px solid rgba(0, 0, 0, .10);
    display: flex;
    align-items: center;
    height: 100px;
    max-width: 360px;
}

.site-logo-mobile {
    display: none;
}

.site-tagline {
    color: rgba(0,0,0,0.35);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.4em;
    padding-left: 32px;
    display: flex;
    align-items: center;
    padding-top: 10px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    height: 100px;
}

.main-nav ul {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 100px;
    border-left: 1px solid rgba(0, 0, 0, .10);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2C2C2C;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.main-nav ul li a:hover {
    background-color: #BFA375;
    opacity: 1;
}

/* Hamburger icon style */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 32px;
    height: 32px;
    padding: 0;
    cursor: pointer;
    z-index: 1002;
    margin-left: 24px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #2C2C2C;
    border-radius: 3px;
    transition: all 0.4s ease;
}

/* Transform to X on open */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #BFA375;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 100px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: right 0.4s ease;
    z-index: 1001;
    transform: translateX(100%);
}

.mobile-nav.active { transform: translateX(0); }

.logo-mobile-text {
    position: fixed;
    top: 30px;
    left: 20px;
    color: #2C2C2C;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    text-decoration: none;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #2C2C2C;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    padding: 24px 0;
    width: 100%;
    display: block;
}

.mobile-nav ul li:not(:last-child) a {
    border-bottom: 1px solid rgba(0, 0, 0, .10);
}

.mobile-nav ul li a:hover { opacity: 1; }

/* Footer */
.contact-links-container,
.footer-credits {
    width: 100%;
    display: flex;
    border-top: 1px solid #E1E1DE;
}

.contact-email-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 3rem;
    border-right: 1px solid #E1E1DE;
}

.contact-email-content span {
    display: block;
    margin-bottom: 12px;
}

.contact-email-content a {
    display: block;
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    text-decoration: underline;
    color: #2C2C2C;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1;
}

.contact-social-content { width: 40%; }

.social-links-container { margin-top: -1px ; }

.social-links-container {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    width: 100%;
}

.social-links-container a {
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    text-decoration: none;
    color: #2C2C2C;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1;
    padding: 1.25rem 3.375rem;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.social-links-container a:not(:last-child) {
    border-bottom: 1px solid #E1E1DE;
}

.social-links-container a:hover { background: #BFA375; }

.social-links-container a .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.social-links-container a .icon::before {
    font-family: 'ETMODULES';
    font-size: 36px;
    content: '\e046';
    display: flex;
    color: #2C2C2C;
    align-items: center;
    height: 100%;
    font-weight: 400 !important;
}

.social-links-container a span {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 0;
}

.social-links-container a:hover span {
    transform: translateX(10px);
}

.site-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #E1E1DE;
}

#link-linkedin,
#link-contact {
    border-top: 1px solid #e1e1de;
}

.footer-links {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
}

.footer-links a {
    font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif;
    text-decoration: none;
    color: #2C2C2C;
    font-size: clamp(0.875rem, 3vw, 1rem);
    font-weight: 400;
    line-height: 1;
    margin-left: 3rem;
    transition: color 0.3s ease;
}

.footer-copy {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 3rem
}

.footer-credits {
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #888;
    justify-content: space-between;
    align-items: center;
    min-height: 3rem;
    max-height: 4rem;
}

.footer-copy span,
.footer-copy span a {
    color: #2C2C2C;
    font-size: clamp(0.875rem, 3vw, 1rem);
}

.split-parent {
    overflow: hidden;
}
.split-child {
    display: inline-block;
}

.link-item label {
    display: none;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .main-nav.desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex !important;
    }

    .header-inner {
        height: 100px;
        padding: 0 16px;
    }

    .site-logo {
        display: none;
    }

    .site-logo-mobile {
        display: block;
        max-width: 100px;
        padding: 0 1rem;
    }

    .site-tagline {
        padding-left: 16px;
        font-size: 11px;
    }

    .link-item label {
        display: none;
    }
}

@media (max-width: 991.98px) {  

    /* Footer */
    .contact-links-container .contact-social-content { width: 45%; }
    .contact-links-container .contact-email-content { width: 55%; }

    .link-item label {
        display: none;
    }
}

@media (max-width: 768px) {
    .link-item label {
        display: none;
    }
}


@media only screen and (max-width: 600px) {
    /* Header */
    .site-tagline {
        display: none;
        padding: 0;
    }

    .header-inner {
        height: 90px;
        padding: 0 12px;
    }

    .site-logo-mobile {
        /* height: 64px;
        font-size: 24px;
        padding-right: 24px; */
        padding-left: 0;
    }

    .logo-mobile-text {
        font-size: 32px;
        top: 16px;
        left: 12px;
    }
    

    /* Footer */
    .contact-links-container { flex-wrap: wrap }
    .contact-links-container .contact-social-content,
    .contact-links-container .contact-email-content { 
        width: 100%;
        padding: 0;
    }

    .contact-links-container, 
    .footer-credits {
        border: none;
    }

    .social-links-container { flex-wrap: wrap; flex-direction: unset; }

    /* .link-item {
        height: 10rem;
        width: 100%;
        border-top: 1px solid #E1E1DE;
        display: flex;
        flex-direction: column;
        padding: 2rem 1rem;
        transition: background 0.3s ease;
    } */

    .footer-inner { justify-content: center !important; }

    .link-item:hover { background: #BFA375; }

    .link-item label {
        display: block;
        font-size: 14px;
        font-weight: 300;
        margin-bottom: auto;
        color: #8d8d8d;
    }

    .social-links-container a {
        font-size: 18px;
        padding: 0;
    }

    .social-links-container :nth-child(3) {
        width: 100%;
    }

    .social-links-container a span {
        line-height: 0;
    }

    .footer-credits {
        flex-wrap: wrap;
        padding: 0;
        min-height: unset;
        max-height: unset;
    }

    .footer-links { 
        margin-bottom: 0; 
        width: 100%;
        flex-wrap: wrap;
    }

    .footer-links a,
    .contact-email-content a {
        width: 100%;
        font-size: 18px;
        line-height: 1.2;
        margin: 0;
    }

    .footer-copy {
        width: 100%;
        padding: 1rem;
        border-top: 1px solid #e1e1de;
    }

    .footer-copy span,
    .footer-copy span a {
        font-size: 11px;
        text-align: center;
        line-height: 1.4;
        font-weight: 400;
        color: #2C2C2C;
    }

    .social-links-container a .icon::before {
        font-size: 24px;
    }

    .contact-email-content span {
        margin: 0;
    }

    #link-linkedin,
    #link-contact {
        border-top: none;
    }
}