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

body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* MAIN WRAPPER */
.landing-page {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* HEADER */
.top-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px 40px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-wrapper img {
    max-width: 240px;
    width: 100%;
    height: auto;
    display: block;
}

/* SPLIT CONTAINER */
.split-container {
    padding-top: 120px;
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* EACH SIDE */
.split {
    position: relative;
    width: 50%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s ease;
}

/* BACKGROUND IMAGES */
.consulting-side {
    background: url('../images/consulting.jpg') center center/cover no-repeat;
}

.shop-side {
    background: url('../images/shop.jpg') center center/cover no-repeat;
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    top: 0;
    left: 0;
    z-index: 1;
}

.shop-side .overlay {
    background: rgba(45, 25, 15, 0.45);
}

/* CONTENT */
.content {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 80%;
    max-width: 550px;
}

.mini-title {
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c6a46a;
}

.content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    line-height: 0.95;
    margin: 20px 0;
    font-weight: 400;
}

.content p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 18px 42px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: 1px solid #c6a46a;
}

.consulting-btn {
    color: #fff;
    background: transparent;
}

.consulting-btn:hover {
    background: #c6a46a;
    color: #000;
}

.shop-btn {
    background: #fff;
    color: #000;
    border: none;
}

.shop-btn:hover {
    background: #c6a46a;
    color: #000;
}

/* FEATURES */
.features {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.feature-item {
    position: relative;
}

.feature-item span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
}

/* HOVER EFFECTS */
.split:hover {
    width: 55%;
}

.split-container:hover .split:not(:hover) {
    width: 45%;
}

.consulting-side:hover,
.shop-side:hover {
    transform: scale(1.01);
}

/* BOTTOM TAGLINE */
.bottom-tagline {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
    z-index: 20;
}

.bottom-tagline p {
    letter-spacing: 5px;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.8);
}

.bottom-tagline span {
    color: #CCCCCC;
}

.bottom-tagline a {
    color: #c6a46a;
    text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 1200px) {

    .brand-wrapper h1 {
        font-size: 4.5rem;
    }

    .content h2 {
        font-size: 2rem;
    }
}

@media(max-width: 992px) {

    .split-container {
        flex-direction: column;
    }

    .split {
        width: 100%;
        min-height: 50vh;
    }

    .split:hover {
        width: 100%;
    }

    .split-container:hover .split:not(:hover) {
        width: 100%;
    }

    .brand-wrapper {
        top: 20px;
    }

    .brand-wrapper h1 {
        font-size: 3.5rem;
    }

    .content h2 {
        font-size: 2rem;
    }

    .bottom-tagline {
        position: relative;
        padding: 20px 10px;
        background: #000;
    }
}

@media(max-width: 576px) {

    .brand-wrapper h1 {
        font-size: 2.7rem;
        letter-spacing: 5px;
    }

    .brand-wrapper p {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .content {
        width: 90%;
    }

    .content h2 {
        font-size: 2rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .features {
        flex-direction: column;
        gap: 15px;
    }

    .bottom-tagline p {
        font-size: 0.7rem;
        line-height: 1.8;
        text-decoration: none;

    }

   
}
