/*
Theme Name: Indo Expo House
Author: Indo Expo House
Version: 1.2
*/

/* ================= RESET ================= */

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

/* ================= GLOBAL ================= */

body {
    font-family: "Libre Baskerville", Georgia, serif;
    background: #f3f2ef;
    color: #2a2a2a;
    line-height: 1.7;
}

/* Display serif (hero, headings, section titles) */
h1, h2, h3, h4 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: 0.35px;
    color: #2b2b2b;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 30px;
}

/* ================= BUTTONS ================= */

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: "Libre Baskerville", serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

/* Gold – beveled like reference */
.btn-gold {
    background: linear-gradient(
        180deg,
        #d3b163 0%,
        #b88a36 48%,
        #9c6f2b 100%
    );
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.45),
        inset 0 -1px 0 rgba(0,0,0,0.25),
        0 6px 14px rgba(0,0,0,0.35);
}

.btn-gold:hover {
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.6),
        inset 0 -1px 0 rgba(0,0,0,0.35),
        0 10px 22px rgba(0,0,0,0.45);
}

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

.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    padding: 22px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-text {
    display: none !important;
}

/* Nav matches reference (lighter + spaced) */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 34px;
}

.main-nav a {
    font-family: "Libre Baskerville", serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #f2f2f2;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* ================= HERO ================= */

.hero {
    height: 95vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(18,22,40,0.35),
        rgba(18,22,40,0.75)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 215px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #ffffff;
}

.hero p {
    font-size: 19px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.trusted-text {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    opacity: 0.85;
}

/* ================= TRADE VERTICALS ================= */

.trade-verticals {
    padding: 95px 0;
    background: #f3f2ef;
}

.trade-verticals h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 55px;
}

/* Decorative line like reference */
.trade-verticals h2::before,
.trade-verticals h2::after {
    content: "—";
    margin: 0 14px;
    color: #b08a3c;
}

.vertical-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 45px;
}

.vertical-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    transition: transform 0.25s ease;
}

.vertical-card:hover {
    transform: translateY(-6px);
}

/* IMAGE WRAPPER */
.vertical-card .image-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.vertical-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BLACK GRADIENT OVERLAY */
.vertical-card .image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.05) 70%
    );
}

/* TITLE */
.vertical-card h3 {
    position: absolute;
    bottom: 58px;
    left: 0;
    width: 100%;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.4px;
    z-index: 2;
}


/* ================= CARD BUTTON (Verticals) ================= */

.btn-card {
    padding: 9px 22px;
    margin: 8px 0 8px;
    font-family: "Libre Baskerville", serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    border-radius: 4px;
    color: #ffffff;

    background: linear-gradient(
        180deg,
        #c9a24f 0%,
        #b2873a 100%
    );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.35),
        0 4px 10px rgba(0,0,0,0.25);

    transition: all 0.25s ease;
}

.btn-card:hover {
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.45),
        0 7px 16px rgba(0,0,0,0.35);
}



/* ================= VALUE SECTION ================= */

.value-section {
    padding: 95px 0;
    background: #ebe9e4;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.value-col h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

/* Left = cross */
.value-col:first-child li::before {
    content: "✕";
    color: #b08a3c;
}

/* Right = check */
.value-col:last-child li::before {
    content: "✓";
    color: #b08a3c;
}

.value-col ul {
    list-style: none;
}

.value-col li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    font-size: 16px;
}

.value-col li::before {
    position: absolute;
    left: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
}

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

.site-footer {
    position: relative;
    background: url("/wp-content/themes/IndoExpoHouse/assets/images/footer-bg.png") center bottom / cover no-repeat;
    color: #d6d6d6;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(14,18,34,0.88);
}

/* Footer CTA */
.footer-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 95px 30px 70px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

.footer-cta h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-cta p {
    font-size: 17px;
    color: #dddddd;
    margin-bottom: 28px;
}

/* Footer content */
.footer-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    padding: 70px 0 50px;
}

.footer-col h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-col p,
.footer-col a {
    font-size: 15px;
    color: #d0d0d0;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 14px;
}

/* Footer bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 18px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: #b5b5b5;
}


.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6d6d6;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Hover – subtle gold glow like buttons */
.social-icons a:hover {
    background: linear-gradient(
        180deg,
        #d3b163 0%,
        #b88a36 50%,
        #9c6f2b 100%
    );
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

/* ================= MOBILE MENU ================= */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 26px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffffff;
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}



/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .vertical-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 18px;
    }

    .hero-content {
        padding-top: 180px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(14,18,34,0.98);
        backdrop-filter: blur(6px);
        display: none;
        padding: 25px 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .main-nav a {
        font-size: 18px;
    }

    /* Active state */
    .main-nav.active {
        display: block;
    }
}

