@font-face {
    font-family: 'Frutiger';
    src:url(../fonts/FrutigerLTArabic-55Roman.ttf)
}

@font-face {
    font-family: 'Frutiger Light';
    src:url(../fonts/FrutigerLTArabic-45Light.ttf)
}

@font-face {
    font-family: 'Frutiger Bold';
    src:url(../fonts/FrutigerLTArabic-65Bold.ttf)
}

@font-face {
    font-family: 'Frutiger Black';
    src:url(../fonts/FrutigerLTArabic-75Black.ttf)
}

@font-face {
    font-family: 'Arslan';
    src:url(../fonts/A-Arslan-Wessam-B-A-Arslan-Wessam-B.ttf)
}

body {
    background-color: #E7E2DB;
    color: #2A2A2A;
    direction: rtl;
    margin: 0;
    padding: 0;
    font-family: 'Frutiger Light';
    font-size: 1.8vw;
}

/* Transparent Navbar */
.navbar {
    transition: background-color 0.3s ease;
}
.navbar ul {
    direction: rtl;
    padding-right: 0;
    font-family: 'Frutiger';
}

.navbar-transparent {
    background-color: transparent !important;
    box-shadow: none;
}

/* Scrolled Navbar */
.navbar-scrolled {
    background-color: #E7E2DBEE !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: #906A55 !important;
    text-decoration: none;
    margin-right: 20px;
}

.hero {
    height: 100vh;
    overflow: hidden;
    text-align: center;
    color: white;
    top:0;
}

.video-background {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    padding: 10vw;
}
/* Primary Button */
.btn-primary {
    background-color: #906A55 !important;
    border-color: #906A55 !important;
    color: #E7E2DB !important;
}

.btn-primary:hover {
    background-color: #BCA495 !important;
    border-color: #BCA495 !important;
    color: #2A2A2A !important;
}

.instagram {
    overflow: hidden;
    text-align: center;
}
.featLink {
    margin: 0;
    vertical-align: bottom;
    align-items: flex-end;
}
.bg-white {
    background-color: #fff;
}
.bg-accent1 {
    background-color: #BCA495;
}

.bg-accent2 {
    background-color: #906A55;
}
.footer {
    color: #fff;
    direction: ltr !important;
    text-align: center;
}
h1, h2, h3{
    font-family: 'Frutiger Bold';
}
.center {
    text-align: center;
    align-self: center;
    align-items: center;
}
/* Add more custom button styles if needed */
.custom-card {
    padding: 15px; /* Add padding between the cards */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd; /* Optional: Adds a border for visual separation */
    border-radius: 8px; /* Optional: Adds rounded corners */
    background-color: #fff; /* Optional: Sets background color */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow */
    height: 400px;
}
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-link:hover {
    text-decoration: none;
    color: inherit;
}
.custom-card .card-img {
    max-width: 100%; /* Ensures the image fits within the card */
    max-height: 360px; /* Ensures the image fits within the card */
    object-fit: cover; /* Maintains aspect ratio */
}

.card-img-top {
    transition: transform 0.3s ease;
}

.card-img-top:hover {
    transform: scale(1.05);
}

.fancy {
    font-family: "Arslan";
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: larger;
}
.cont {
    width: 55vw; 
    margin-top: 30vh; 
}
.note {
    margin-bottom: 20vh;
    margin-top: 5vh;
    font-size: x-small;
}

.logo-container {
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    top: -10px;
}
.logor {
    position: relative;
    z-index: 2;
    font-family: "Dancing Script",'Montserrat';
    font-weight: 800;
    font-size: 1rem;
    color: #906A55;
}
.logos {
    position: absolute;
    top: 35%; /* Adjust to control overlap */
    left: 90%;
    transform: translateX(-50%);
    z-index: 1;
    font-family:'Montserrat', "Dancing Script";
    font-variation-settings: 'wght' 800;
    font-size: 2rem;
    /*animation: subtleWeight 5s infinite alternate ease-in-out; */
    animation: colorShift 6s infinite alternate ease-in-out;

}

.category-tile {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-tile:hover {
    transform: scale(1.02);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.category-content h3 {
    margin: 0 0 10px 0;
    font-family: 'Frutiger Bold';
    font-size: 1.5em;
}

.category-content p {
    margin: 0;
    font-size: 1em;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Show description by default on mobile */
@media (max-width: 768px) {
    .category-content {
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); /* Darker gradient for better readability */
    }
    
    .category-content p {
        opacity: 1;
        transform: translateY(0);
        font-size: 0.9em; /* Slightly smaller text on mobile */
        line-height: 1.4;
    }
}

/* Only apply hover effect on devices that support hover */
@media (hover: hover) {
    .category-tile:hover .category-content p {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    display: none !important;
  }
  
@keyframes colorShift {
0% {
background: linear-gradient(90deg, #906A55, #BCA495);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
100% {
background: linear-gradient(90deg, #2A2A2A, #454545);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}

@keyframes subtleWeight {
0% {
    font-variation-settings: 'wght' 400; /* Light */
}
100% {
    font-variation-settings: 'wght' 800; /* Normal */
}
}

/*Mobile Styling*/
@media screen and (max-width: 768px) {
    body {
        font-size: 5vw;
    }
    .cont {
        width: 90vw; 
        margin-top: 10vh; 
    }
    .note {
        margin-bottom: 0;
    }
    .custom-card {
        height: 280px;
    }
}