
@font-face {
    font-family: 'MyCustomFont'; /* A name you choose for your font */
    src: url('fonts/RivieraNights-Bold.woff') format('woff2'),
         url('fonts/RivieraNights-Bold.woff') format('woff'); /* Specify font file paths and formats */
    font-weight: normal; /* Adjust as needed (e.g., bold, 400, 700) */
    font-style: normal; /* Adjust as needed (e.g., italic) */
    font-display: swap; /* Controls how the font renders during loading */
  }
  
  @font-face {
    font-family: 'MyCustomFont2'; /* A name you choose for your font */
    src: url('fonts/RivieraNights-Light.woff') format('woff2'),
         url('fonts/RivieraNights-Light.woff') format('woff'); /* Specify font file paths and formats */
    font-weight: normal; /* Adjust as needed (e.g., bold, 400, 700) */
    font-style: normal; /* Adjust as needed (e.g., italic) */
    font-display: swap; /* Controls how the font renders during loading */
  }

  @font-face {
    font-family: 'GillSansMT'; /* A name for your font */
    src: url('fonts/GillSans.ttf') format('truetype'); /* Path to the .ttf file */
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Optional: helps with font loading performance */
  }
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Mobile viewport height fix */
@supports (-webkit-touch-callout: none) {
    .image-slider {
        height: -webkit-fill-available;
    }
}

body {
    font-family: 'GillSansMT', sans-serif; /* Fallback fonts are good practice */

    /* font-family: 'Arial', sans-serif; */
    line-height: 1.6;
    color: white;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: #000;
    position: relative;
    z-index: 100;
    padding: 12px 16px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 20px 40px; */
    position: relative;
}

/* Header Tab Button */
.header-tab-button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.header-tab-button-left {
    right: auto;
    left: 20px;
}

.clothing-tab {
    display: block;
    transition: all 0.3s ease;
}

.clothing-tab:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.hypermarket-tab {
    display: block;
    transition: all 0.3s ease;
}

.hypermarket-tab:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.clothing-tab img {
    height: auto;
    max-height: 50px;
    width: auto;
    display: block;
}

/* Hamburger Menu */
.hamburger-menu {
    position: absolute;
    left: 270px;
    top: 20px;
    font-size: 24px;
    color: #55157B;
    cursor: pointer;
    z-index: 11;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block; /* Show on desktop */
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    background: #000;
    width: 300px;
    height: 100%;
    padding: 40px 30px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-header h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #a8a8ff;
    padding-left: 10px;
}

.mobile-category-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-category-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: 2px solid white;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-category-btn:hover {
    background: white;
    color: #8b7dd8;
    transform: translateX(10px);
}

.mobile-category-btn i {
    font-size: 18px;
}

/* Main Logo */
/* .main-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    top: 20px;
} */

.logo-text {
    font-size: 48px;
    font-weight: bold;
    color: #8b7dd8;
    text-transform: lowercase;
    letter-spacing: 2px;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.logo-group {
    display: block;
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: -5px;
    font-weight: normal;
}

/* Category Buttons */
.category-buttons {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 120px;
    display: flex;
    gap: 20px;
}

/* Category Separator */
.category-separator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 150px; /* Positioned below the category buttons */
    height: 2px;
    background: #8b7dd8;
    width: 70%; /* Adjust width as needed */
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #8b7dd8;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: #8b7dd8;
    color: white;
}

.category-btn i {
    font-size: 16px;
}

/* Main Navigation */
.main-nav {
    position: absolute;
    right: 0;
    transform: translateX(-50%);
    top: 170px; /* Positioned below the category separator */
    display: flex;
    gap: 30px;
    /* align-items: center; */
    text-align: right;
}

.nav-link {
    font-family: 'MyCustomFont2', sans-serif; /* Fallback fonts are good practice */

    color: #55157B;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b7dd8;
}

/* Separator Line */
.separator-line {
    height: 2px;
    background: #55157B;
    width: 100%;
    position: absolute;
    bottom: 0;
}

/* Image Slider - Full Page Background */
.image-slider {
    position: relative;
    width: 100vw;
    height: calc(80vh - 110px);
    overflow: hidden;
    z-index: 0;
    background: #000;
    pointer-events: auto;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    pointer-events: auto;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
    cursor: pointer;
    z-index: 50;
    display: block;
}

.slider-nav:hover {
    opacity: 0.8;
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Arrow Icon Images */
.arrow-icon {
    width: auto;
    height: auto;
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    display: block;
}

.arrow-left {
    transform: rotate(180deg);
}

.arrow-right {
    transform: rotate(0deg);
}

/* Slider Dots */
.slider-dots {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 50;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(85, 21, 123, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: rgba(85, 21, 123, 0.9);
    border-color: white;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(85, 21, 123, 0.7);
    transform: scale(1.1);
}

/* Footer Styles */
.footer {
    position: relative;
    bottom: 0;
    right: 0;
    left: 0;
    /* background: rgba(0, 0, 0, 0.6); */
    padding: 30px 0;
    z-index: 100;
    background: #fff;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-text {
    font-size: 36px;
    font-weight: bold;
    color: white;
    text-transform: lowercase;
    letter-spacing: 2px;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.footer-logo-group {
    display: block;
    font-size: 12px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: -5px;
    font-weight: normal;
}

/* Address */
.address {
    margin-bottom: 15px;
}

.address p {
    color: white;
    font-size: 14px;
    line-height: 1.4;
}

/* Footer Links */
.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color:#000;
}

.copyright {
    color: white;
    font-size: 14px;
}

.separator {
    color: white;
    font-size: 14px;
}

.footer-link {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #8b7dd8;
}
.mx-auto {
    max-width: 100%;
}
.footer-contact-info p {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
}
.footer-nav-links {
    /* margin-bottom: 15px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 767px) {
    /* Ensure images scale properly */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .header {
        min-height: auto;
    }
    
    /* Make header black box responsive */
    .header-content > div[style*="background:#000"] {
        height: 80px !important;
    }
    
    .hamburger-menu {
        position: static;
        display: block;
        order: 1;
        left: auto;
        top: auto;
        padding: 8px;
        font-size: 20px;
    }
    
    /* .main-logo {
        position: static;
        transform: none;
        order: 2;
        flex: 1;
        text-align: center;
        padding: 0 10px;
    } */
    
    .main-logo img {
        max-width: 120px;
        height: auto;
    }
    
    .header-tab-button {
        right: 3px;
    }
    
    .header-tab-button-left {
        left: 3px;
    }

    .hypermarket-tab-button{
        font-size: 8px !important;    
    }    

    .clothing-tab-button{
        font-size: 8px !important;    
    }    



    
    .clothing-tab img {
        max-height: 40px;
    }
    
    .category-buttons {
        display: none; /* Hidden on mobile, shown in hamburger menu */
    }
    
    .category-separator {
        display: none;
    }
    
    .main-nav {
        display: none; /* Hidden on mobile, shown in hamburger menu */
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    /* Slider adjustments */
    
    /* .slider-container {
        width: 100%;
        height: 100%;
        min-height: 100vh;
        max-height: 100vh;
    } */
    
    /* .slide {
        width: 100%;
        height: 100%;
        min-height: 100vh;
        max-height: 100vh;
    } */
    
    /* .slide img {
        width: 100%;
        height: 100%;
        min-height: 100vh;
        max-height: 100vh;
        object-fit: cover;
        object-position: center center;
        -webkit-object-fit: cover;
        -moz-object-fit: cover;
    } */
    .image-slider {
        height: calc(60vh - 110px);
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .arrow-icon {
        max-width: 35px;
        max-height: 35px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
        display: none;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Touch-friendly targets */
    .slider-nav,
    .slider-dot {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 20px 0;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-contact-info p {
        font-size: 12px;
        line-height: 1.5;
        word-break: break-word;
    }
    .footer-nav-links .separator {
        display: none;
    }
    
    .footer-address p {
        font-size: 11px;
    }
    
    .footer-registration p,
    .footer-copyright p {
        font-size: 10px;
    }
    
    /* Mobile menu improvements */
    .mobile-menu-content {
        width: 280px;
    }
    
    .mobile-nav-link {
        font-size: 16px;
        padding: 12px 0;
    }
    
    .mobile-category-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
    .footer-nav-links{gap: 8px;}
    .footer-link{
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hamburger-menu {
        padding: 6px;
        font-size: 18px;
    }
    
    .main-logo img {
        max-width: 100px;
    }
    
    .header-tab-button {
        right: 5px;
    }
    
    .header-tab-button-left {
        left: 5px;
    }
    
    .clothing-tab img {
        max-height: 35px;
    }
    
    .category-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .main-nav {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    /* Slider responsive styles */
    
    
    /* .slider-container {
        width: 100%;
        height: 100%;
        min-height: 100vh;
        max-height: 100vh;
    } */
    
    /* .slide {
        width: 100%;
        height: 100%;
        min-height: 100vh;
        max-height: 100vh;
    } */
    
    /* .slide img {
        width: 100%;
        height: 100%;
        min-height: 100vh;
        max-height: 100vh;
        object-fit: cover;
        object-position: center center;
        -webkit-object-fit: cover;
        -moz-object-fit: cover;
    } */
    
    .slider-nav {
        width: 30px;
        height: 30px;
    }
    
    .arrow-icon {
        max-width: 30px;
        max-height: 30px;
    }
    
    .slider-nav.prev {
        left: 5px;
    }
    
    .slider-nav.next {
        right: 5px;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 15px 0;
    }
    
    .footer-content {
        padding: 0 10px;
    }
    
    .footer-contact-info p {
        font-size: 11px;
    }
    
    .footer-address p {
        font-size: 10px;
    }
    
    .footer-registration p,
    .footer-copyright p {
        font-size: 9px;
    }
}


.menu-separator{
    position: absolute;
    z-index: 1000;
    margin-top: 20px;
}

/* Find Us Page Styles */
.findus-slider {
    position: relative;
}

/* Contact Panel (Left Overlay) */
.contact-panel {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    max-width: 35%;
    /* background: rgba(135, 206, 250, 0.85); */
    background: #000;
    opacity: 0.7;
    padding: 30px;
    border-radius: 10px;
    z-index: 75;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-panel-title {
    font-family: 'MyCustomFont', sans-serif;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    font-family: 'MyCustomFont2', sans-serif;
    font-size: 13px;
    color: white;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-item strong {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.contact-link {
    color: white;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #55157B;
}

.contact-maps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-map-item {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-map-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Map Overlay (Right Side) */
.map-overlay {
    position: fixed;
    right: 80px;
    left:10%;
    top: 55%;
    transform: translateY(-50%);
    width: 80%;
    /* max-width: 40%; */
    background: rgba(255, 255, 255, 0.85);
    /* padding: 20px; */
    border-radius: 10px;
    z-index: 75;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.map-overlay-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Send Voicemail Button (Vertical) */
.voicemail-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 300px;
    background: rgba(50, 50, 50, 0.9);
    border: none;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    z-index: 75;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.voicemail-btn:hover {
    background: rgba(85, 21, 123, 0.9);
    width: 70px;
}

.voicemail-btn i {
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
}

.voicemail-text {
    font-family: 'MyCustomFont2', sans-serif;
    font-size: 14px;
    color: white;
    line-height: 1.4;
    letter-spacing: 2px;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Find Us Footer Styles */
.findus-footer {
    /* background: rgba(0, 0, 0, 0.7); */
    background: #fff;
    color: #000;
    padding: 25px 0;
}

.footer-contact-info {
    color:#000;
}



.footer-address {
    margin-bottom: 10px;
}

.footer-address p {
    font-size: 13px;
    color: #000;
    line-height: 1.5;
}

.footer-registration {
    margin-bottom: 1px;
}

.footer-registration p {
    font-size: 12px;
    color: #000;
}

.footer-copyright {
    margin-top: 5px;
    color: #000;
}

.footer-copyright p {
    font-size: 12px;
    color: #000 ;
}

/* Responsive Styles for Find Us Page */
@media (max-width: 1200px) {
    .contact-panel {
        width: 350px;
        padding: 25px;
    }
    
    .map-overlay {
        width: 400px;
        padding: 15px;
    }
}

@media (max-width: 968px) {
    .contact-panel {
        left: 20px;
        width: 300px;
        max-width: 40%;
        padding: 20px;
    }
    
    .map-overlay {
        right: 70px;
        width: 350px;
        max-width: 45%;
        padding: 15px;
    }
    
    .voicemail-btn {
        width: 50px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    /* Findus page mobile styles */
    .contact-panel {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 95%;
        max-width: 95%;
        margin: 15px auto;
        max-height: none;
        padding: 20px;
        opacity: 0.85;
    }
    
    .contact-panel-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .contact-item {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .contact-maps {
        margin-top: 15px;
    }
    
    .map-overlay {
        position: relative;
        right: auto;
        left: auto;
        top: auto;
        transform: none;
        width: 95%;
        max-width: 95%;
        margin: 15px auto;
        padding: 10px;
    }
    
    .voicemail-btn {
        position: fixed;
        right: 0;
        top: auto;
        bottom: 80px;
        transform: none;
        width: 45px;
        height: 150px;
        z-index: 100;
    }
    
    .voicemail-text {
        font-size: 11px;
    }
    
    .findus-footer {
        position: relative;
    }
}

@media (max-width: 480px) {
    /* Findus page small mobile */
    .contact-panel {
        padding: 15px;
        width: 98%;
        max-width: 98%;
        margin: 10px auto;
    }
    
    .contact-panel-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .contact-item {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .contact-item strong {
        font-size: 12px;
    }
    
    .contact-link {
        font-size: 11px;
        word-break: break-all;
    }
    
    .contact-map-img {
        max-height: 150px;
        object-fit: cover;
    }
    
    .map-overlay {
        width: 98%;
        max-width: 98%;
        margin: 10px auto;
        padding: 8px;
    }
    
    .voicemail-btn {
        width: 40px;
        height: 120px;
        bottom: 60px;
        padding: 10px 5px;
    }
    
    .voicemail-btn i {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .voicemail-text {
        font-size: 9px;
        letter-spacing: 1px;
    }
}