/* 1. Global Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Footer Wrapper: Background Color and Positioning */
.footer-wrapper {
    background-color: #F2F2F2; /* Desired background color */
    padding: 20px 0;
    position: relative; /* To position absolutely positioned elements within */
}

/* 3. Footer Content Alignment */
.footer-content.ct-container-fluid {
    max-width: 1600px; /* Adjust as needed */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Horizontal padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative; /* Containing block for absolutely positioned elements */
}

/* 4. Footer Logo and Contact Info Section */
.footer-section.logo-contact {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Three columns: left, center, right */
    align-items: center; /* Vertically center items */
    width: 100%;
    padding: 0 80px; /* 80px left and right padding */
    box-sizing: border-box;
	
}

/* 5. Footer Left Section */
.footer-left {
    display: flex; /* Enable Flexbox layout */
    align-items: center; /* Vertically center the logos */
    gap: 40px; /* Space between MSZESZ and GroupGM logos */
    justify-content: flex-start; /* Align items to the start */
    padding-left: 30px; /* 80px left padding */
}

/* target the seal’s <img> specifically and force it to scale */
.footer-left .award-seal-logo img {
  max-height: 70px !important; /* same as your other logos (tweak up/down as needed) */
  width: auto !important;      /* preserve aspect ratio */
  display: block;              /* removes any inline whitespace */
}

/* 6. Footer Center Section */
.footer-center {
    display: flex; /* Enable Flexbox layout */
    align-items: center; /* Vertically center the items */
    gap: 20px; /* Space between Hotellato logo and contact info */
    text-align: left; /* Align text to the left within contact-info */
    justify-content: center; /* Center the content horizontally */
}

/* 7. Footer Right Section */
.footer-right {
    display: flex; /* Enable Flexbox layout */
    align-items: center; /* Vertically center the social icons */
    gap: 15px; /* Space between social icons */
    justify-content: flex-end; /* Align items to the end */
    padding-right: 80px; /* Optional: Add padding if needed */
}

/* 8. Vertical Divider */
.vertical-divider {
    width: 1px; /* Thin vertical line */
    height: 60px; /* Height of the divider */
    background-color: #ccc; /* Divider color */
}

/* 9. Contact Info Styling */
.contact-info p {
	padding-top: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.contact-info a {
    color: #333;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* 10. Uniform Logo Heights */

.hotellato-logo img {
    height: 80px; /* Set desired uniform height */
    width: auto; /* Maintain aspect ratio */
}

.groupgm-logo img,
.mszesz-logo img {
	
	max-width: 150px;
}

/* 11. Social Media Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px; /* Even spacing between icons */
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; /* Fixed width for each icon container */
    height: 30px; /* Fixed height for each icon container */
}

.social-icons img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
    object-fit: contain; /* Ensures the image fits nicely */
}

.social-icons a:hover img {
    transform: scale(1.2);
}

/* 12. Horizontal Divider */
.footer-divider {
    width: 80%;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

/* 13. Footer Menu Styling */
.footer-menu-inline.menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

.footer-menu-inline.menu-container ul li {
    margin: 5px 15px; /* Added top and bottom margin for better spacing on small screens */
}

.footer-menu-inline.menu-container ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.footer-menu-inline.menu-container ul li a:hover {
    color: #8b807a;
}

@media (max-width: 768px) {
    /* Make the entire footer stack vertically */
    .footer-section.logo-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 0 20px;
        gap: 20px;
    }

    /* Adjust individual sections’ order */
    .footer-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        /* This container likely holds the hotellato logo and contact info */
    }

    /* Hotellátó logo at the top */
    .footer-center .hotellato-logo {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Contact info below the logo */
    .footer-center .contact-info {
        order: 2;
        text-align: center;
        width: 100%;
    }

    /* Social media icons below contact info */
    .footer-right {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
			padding: 0
    }

    .social-icons {
        display: flex;
        align-items: center 
        justify-content: center;
        gap: 15px;
        margin-top: 0; 
    }

    /* MSZESZ and GroupGM logos below social icons */
    .footer-left {
        order: 4;
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        align-items: center;
        width: 100%;
			padding: 0;
    }

    /* Divider below MSZESZ and GroupGM logos */
    .footer-divider {
        order: 5;
        width: 80%;
        margin: 20px 0;
        align-self: center;
    }

    /* Footer menu last */
    .footer-menu-inline.menu-container {
        order: 6;
        width: 100%;
        text-align: center;
    }

    .footer-menu-inline.menu-container ul {
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .footer-menu-inline.menu-container ul li {
        margin: 10px 0;
    }

    /* Hide the vertical divider on mobile */
    .vertical-divider {
        display: none;
    }
}




/* 15. Remove shadow from a parent element */
.site-main {
    box-shadow: none !important;
}