/*
Theme Name: Divi Child Theme
Theme URI: http://yourwebsite.com
Description: Child Theme For Divi
Author: Your Name
Author URI: http://yourwebsite.com
Version: 1.0.0
Template: Divi
*/

#logo{max-height: 100%;} 
.et_header_style_split #et-top-navigation nav>ul>li>a{
    font-weight: 500;
}
.et_header_style_split #main-header .centered-inline-logo-wrap {
        width: auto;
        height: 105px;
    }


/* MENU LAYOUT */
.divi-menu-wrapper {
    display: flex;
    gap: 40px;
}

/* SIDEBAR */
.divi-menu-sidebar {
    width: 220px;
    border-solid: 1px #fff;
    border: 1px solid;
    padding: 10px 10px;
    border-color: #000;
    border-radius: 6px;
}
.divi-menu-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.divi-menu-sidebar li {
    margin-bottom: 12px;
}

.divi-menu-sidebar a {
    text-decoration: none;
    color: #f2f2f2b5;
    font-weight: 500;
}

/* ACTIVE CATEGORY */
.divi-menu-sidebar li.active a {
    color: #f7941d;
    border-bottom: 2px solid #eac72c;
}

/* CONTENT */
.divi-menu-content {
    flex: 1;
}

/* TOP FILTER */
.divi-menu-top-filter {
    text-align: right;
    margin-bottom: 30px;
}

.divi-menu-top-filter select {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
}

/* GRID */
.divi-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.divi-menu-card p {
    margin: 0;
    font-size: 14px;
    color: #f2f2f2b5;
}

.divi-menu-card button {
    margin-top: 10px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
}


/* EMPTY STATE */
.no-menu-items {
    font-size: 16px;
    color: #666;
}

.menu-category-link.active {
    color: #f7941d;
    border-bottom: 2px solid #f7941d;
}


.menu-load-more-wrap {
    text-align: center;
    margin: 40px 0;
}

#menu-load-more {
    padding: 10px 28px;
    border-radius: 30px;
    border: none;
    background: #f7941d;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

/*--------------------*/
/* CARD LAYOUT */
.divi-menu-card {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    background: #0b0b0b;
    border-radius: 14px;
    position: relative;
}

/* IMAGE */
.divi-menu-card .img img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

/* CONTENT */
.divi-menu-card .info {
    flex: 1;
}

/* TITLE */
.divi-menu-card .info h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #fff;
}

/* DESCRIPTION */
.divi-menu-card .info p {
    margin: 0;
    font-size: 13px;
    color: #bdbdbd;
}

/* PRICE → RIGHT + BOTTOM */
.divi-menu-card .price {
    position: absolute;
    right: 20px;
    bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #ffcc33;
    white-space: nowrap;
}

/* Circle image wrapper */
.get-in-touch-image {
    border-radius: 50%;
    background: #000;             /* black background */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: auto;            /* keeps image on right */
}

/* Image inside circle */
.get-in-touch-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;          /* IMPORTANT: no image cut */
    border-radius: 50%;
}

/*-------------------about us ------------*/
.et_pb_video_box video {
    width: 100% !important;
    height: 30rem !important;
}

/*-----contact us---------*/
/* Default white */
.contact-three-cards .et_pb_main_blurb_image img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

/* Hover gold */
.contact-three-cards .et_pb_column:hover 
.et_pb_main_blurb_image img {
    filter: brightness(0) saturate(100%)
            invert(48%) sepia(56%) saturate(550%)
            hue-rotate(10deg) brightness(95%) contrast(95%);
}
.contact-three-cards .et_pb_column:hover{
    background-color: #000;
    border: solid 1px;
    border-color: #bdbdbd;
}

/*----responsive-*/

@media (max-width: 1024px) {

    /* Wrapper stacks better */
    .divi-menu-wrapper {
        gap: 20px;
    }

    /* Sidebar narrower */
    .divi-menu-sidebar {
        width: 180px;
    }

    /* Grid → 2 columns */
    .divi-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Card spacing */
    .divi-menu-card {
        padding: 16px;
    }

    .divi-menu-card .price {
        font-size: 16px;
        right: 16px;
        bottom: 12px;
    }
}

@media (max-width: 768px) {

    /* STACK SIDEBAR + CONTENT */
    .divi-menu-wrapper {
        flex-direction: column;
    }

    /* Sidebar full width */
    .divi-menu-sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

    .divi-menu-sidebar ul {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 10px;
    }

    .divi-menu-sidebar li {
        white-space: nowrap;
        margin-bottom: 0;
    }

    /* Content full width */
    .divi-menu-content {
        width: 100%;
    }

    /* Filter align center */
    .divi-menu-top-filter {
        text-align: center;
        margin-bottom: 20px;
    }

    /* Grid → 1 column */
    .divi-menu-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* Card stack */
    .divi-menu-card {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .divi-menu-card .img img {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }

    /* Price below content */
    .divi-menu-card .price {
        position: static;
        margin-top: 10px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {

    .divi-menu-sidebar ul {
        gap: 10px;
    }

    .divi-menu-card h4 {
        font-size: 15px;
    }

    .divi-menu-card p {
        font-size: 16px;
    }

    .divi-menu-card .price {
        font-size: 16px;
    }
}
