

.navbar.navbar-default.navbar-fixed-top.navbar-transparent {
    background: rgba(255, 255, 255, 0); /* or any other level of transparency */
    /*margin-bottom: 0; !* Remove bottom margin *!*/
}

.navigation_bar {
    border-bottom: 1px solid var(--ad-text-color-pink); /* Light grey border */
}

.top-nav-container {
    background-color: rgba(255, 255, 255, 0);
    color: var(--system-back-ground-white); /* This is the text color */
    display: flex;
    align-items: center;
    /*justify-content: center; !* Center the items inside the container *!*/
    justify-content: space-between;
    /* Adjust padding as needed */
    margin-bottom: 0;
    padding: 10px 20px 0;
}


.navbar-logo-container {
    align-items: center;
}

.navbar-logo-container .navbar-logo {
    /* Logo image */
    height: 80px; /* Adjust based on the size of your logo */
    width: auto; /* Adjust as needed */
    margin-left: 16px;
    display: block;
}

.top-nav {
    list-style-type: none;
    display: flex;
    gap: 20px; /* Space between navigation items */
    margin: 0;
    padding: 0;
}


.top-nav li #base-nav-home,
.top-nav li #base-nav-contact,
.top-nav li #base-location-name {
    position: relative; /* Needed for the pseudo-element positioning */
    display: block;
    padding: 10px 20px;
    color: var(--system-back-ground-white); /* Text color */
    text-decoration: none;
    /*transition: background-color 0.3s; !* Smooth transition for hover effect *!*/
}

.top-nav li #base-nav-home::before,
.top-nav li #base-nav-contact::before,
.top-nav li #base-location-name::before {
    content: ""; /* Required for the pseudo-element to be generated */
    position: absolute; /* Position relative to the parent a element */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--ad-text-color-pink); /* Your original background color */
    opacity: 0.25; /* Adjust the opacity level for the background */
    z-index: -1; /* Ensure the background is behind the text */
}


.top-nav li #base-nav-home:hover,
.top-nav li #base-nav-contact:hover,
.top-nav li #base-location-name:hover {
    background-color: var(--ad-text-color-pink); /* Slightly lighter purple on hover var(--ad-text-color-pink) */
    color: var(--system-back-ground-white); /* Maintain text color on hover */
}


.top-nav li #base-girl-name {
    position: relative; /* Needed for the pseudo-element positioning */
    display: block;
    padding: 10px 20px;
    color: var(--system-back-ground-white); /* Text color */
    text-decoration: none;
}


.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0; /* Align with the left edge of the dropdown button */
    right: 0; /* Align with the right edge of the dropdown button */
    opacity: 1; /* Adjust the opacity level for the background */
    /* Remove the min-width or set it to match the dropdown button if necessary */
    z-index: 1;
    box-sizing: border-box; /* This ensures that padding is included in the width */
}


.dropdown-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--ad-text-color-pink); /* Use your CSS variable here */
    opacity: 0.75; /* Set your desired transparency level */
    z-index: -1;
}


.dropdown:hover .dropdown-content {
    display: block;
}


/* Style for .girl-name hover */
.dropdown .dropdown-content #base-girl-name:hover {
    background-color: rgba(72, 20, 55, 0.87); /* This is now morevar(--ad-text-color-pink)  specific */
    z-index: 999;
}


/* handling scrollbar shifts layout */
html {
  overflow-y: scroll;
}


footer {
    background-color: rgba(0, 0, 0, 0); /* Semi-transparent background */
    color: white; /* Text color */
    text-align: center; /* Center the text */
    padding: 20px 0; /* Add some padding */
    border-top: 2px solid var(--ad-text-color-pink-dark); /* Light grey border, adjust as needed */
    margin-bottom: 50vh; /* Half of the viewport height */
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Three columns of equal width */
    gap: 20px; /* Gap between grid items */
    max-width: 1200px; /* Adjust based on your layout */
    margin: 0 auto; /* Center the grid */
    padding: 0px; /* Padding around the content */
    align-items: center; /* vertically center all three columns */
}

.contacts-info, .qr-code-container, .shop-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%; /* fill the grid cell so align-items on footer-content works */
}

.phone-highlight {
    color: var(--ad-text-color-pink);
    font-size: 1.15em;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(255, 100, 150, 0.6);
}

.contacts-info p, .qr-code-container img, .shop-logo-container img {
    margin: 10px 0; /* Margin around items */
}

.img-contact-qr,
.img-shop-logo,
.img-contact-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.contacts-info {
    display: flex;
    flex-direction: row;
    align-items: center; /* vertically center icon and text with each other */
    justify-content: center;
    align-self: center;  /* center within the grid cell */
    gap: 10px;
}

.part-1, .part-2 {
    margin: 0; /* Eliminate any default margin */
    padding: 0; /* Eliminate any default padding */
}

.top-nav .active > a {
    background-color: var(--ad-text-color-pink-dark); /* Example: Change background color */
    /*color: #e91e63; !* Example: Change text color *!*/
    font-weight: bold; /* Example: Bold text */
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile nav panel */
.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: rgba(30, 10, 20, 0.95);
    border-top: 1px solid var(--ad-text-color-pink);
    padding: 10px 0;
}

.mobile-nav a {
    display: block;
    padding: 10px 24px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a:hover {
    background-color: var(--ad-text-color-pink);
    color: white;
}

.mobile-nav .mobile-section-label {
    display: block;
    padding: 8px 24px 4px;
    font-size: 0.85rem;
    color: var(--ad-text-color-pink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mobile-nav.open {
    display: flex;
}

/* Example of responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Stack the items vertically on smaller screens */
    }
    footer {
        text-align: left; /* Align text to the left on smaller screens */
        padding: 20px; /* Increase padding */
    }
    .contact-qr, .shop-logo {
        max-width: 120px; /* Adjust image size for smaller screens */
    }

    .top-nav {
        display: none; /* Hide desktop nav on mobile */
    }

    .nav-hamburger {
        display: flex;
    }

    .top-nav-container {
        padding: 8px 16px 0;
    }

    .navbar-logo-container .navbar-logo {
        height: 56px;
        margin-left: 0;
    }
}
