@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #333;
    --accent: #b2d8b2;
}

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* remove the blue box from the button */
button,
a {
  outline: none;
  -webkit-tap-highlight-color: transparent; 
}

button:focus,
button:active,
a:focus,
a:active {
  outline: none;
  box-shadow: none;
  background-color: inherit; 
}
/* //////////////// */
body{
  scroll-behavior: smooth;
}

/* Main Header */
.main-header {
    background-color: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
}

.logo img {
    height: 40px;
}

.contact-icon a {
    color: #333;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-icon a:hover {
    color: #000000;
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 4rem 2rem 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
}

.nav-menu.open {
    right: 0;
}

.nav-menu.animate {
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-menu a:hover {
    background: var(--accent);
    color: var(--black);
    transform: translateX(5px);
}

.menu-icon {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.menu-icon:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}

/* Subheader */
.subheader {
    background-color: #f9f9f9;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
}

.subheader-container {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.location i {
    font-size: 18px;
    color: #666;
}

.location span {
    font-size: 14px;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-header {
        padding: 10px 15px;
    }

    .menu-icon {
        font-size: 20px;
    }

    .logo img {
        height: 30px;
    }

    .contact-icon a {
        font-size: 20px;
    }

    .nav-menu {
        width: 100%;
        max-width: 280px;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.7rem 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 8px 12px;
    }

    .menu-icon {
        font-size: 18px;
        padding: 0.4rem;
    }

    .logo img {
        height: 25px;
    }

    .contact-icon a {
        font-size: 18px;
    }

    .nav-menu {
        padding: 3.5rem 1.5rem 1.5rem;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }
}

/* hero-section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/cover.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #fff;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero .btn-container {
    display: flex;
    gap: 15px;
    flex-direction: column; 
    align-items: center;
}

.hero .btn {
    padding: 12px 30px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border: 2px solid; 
    border-radius: 100px; 
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
    text-transform: uppercase;
    max-width: 200px; 
    width: 100%;
}

.hero .btn:hover {
    background-color: #fff;
}

@media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem; 
    }
    .hero p {
      font-size: 1.2rem; 
    }
}

/* Featured Items */
.featured {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.featured h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.items-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.item-card {
    width: 300px;
    background-color: hsl(0, 0%, 98%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.item-card:hover {
    transform: translateY(-5px);
}

.item-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-card h3 {
    font-size: 20px;
    margin: 15px 0;
    color: #333;
}

.item-card p {
    font-size: 14px;
    color: #666;
    padding: 0 15px 15px;
}

/* About Section */
.about {
    padding: 50px 20px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about img {
    width: 50%;
    border-radius: 10px;
}

.about-text {
    width: 50%;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.about-text p {
    font-size: 16px;
    color: #666;
}

/* Slider Gallery */
#b-of-container {
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 60px 20px;
    position: relative;
}

.slider-heading {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.slider-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #1e3a8a;
    margin: 10px auto 0;
    border-radius: 2px;
}

.slider {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.slide-track {
    display: flex;
    width: calc(320px * 8);
    animation: scroll 25s linear infinite;
    align-items: center;
}

.slide {
    width: 320px;
    height: 400px;
    margin: 0 20px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 20px;
    padding: 10px; 
    background: #fff; 
    transition: transform 0.5s, box-shadow 0.5s;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slide:hover {
    transform: scale(1.05);
    z-index: 2;
}

@keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-320px * 4));
    }
}

.slider:hover .slide-track {
    animation-play-state: paused;
}

@media (max-width: 1024px) {
    .slide {
      width: 260px;
      height: 320px;
      margin: 0 15px;
    }
    .slide-track {
      width: calc(260px * 8);
    }
}

@media (max-width: 768px) {
    .slide {
      width: 200px;
      height: 260px;
      margin: 0 12px;
    }
    .slide-track {
      width: calc(200px * 8);
    }
    .slider-heading {
      font-size: 32px;
    }
}

@media (max-width: 480px) {
    .slide {
      width: 150px;
      height: 200px;
      margin: 0 8px;
    }
    .slide-track {
      width: calc(150px * 8);
    }
    .slider-heading {
      font-size: 26px;
    }
}

/* Menu Highlights */
.menu-highlights {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.menu-highlights h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-item-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.menu-item-text p {
    font-size: 14px;
    color: #666;
}

.menu-item-text .price {
    font-size: 16px;
    color: #d4af37;
    font-weight: 500;
}

/* Our Story Section */
.our-story {
    padding: 50px 20px;
    background-color: hsl(0, 0%, 98%);
    text-align: center;
}

.our-story h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.our-story p, .gallery p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 20px;
}

.our-story video {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

/* footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-brand h2 {
    font-size: 28px;
    margin: 0;
    letter-spacing: 2px;
}

.footer-brand p {
    margin-top: 5px;
    font-size: 16px;
    font-style: italic;
    color: #ffffff;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}

.footer-links a,
.footer-social a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: #e3e3e3;
    border-top: 1px solid #eaeaea;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .footer-container {
      display: none;
    }

    .footer-bottom {
      margin-top: 0;
      border-top: none;
      padding-top: 0;
      font-size: 14px;
      color: #ffffff;
    }
}

/* Slider Gallery */
#b-of-container {
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 60px 20px;
    position: relative;
}

.slider {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background: #fff;
    transform: scale(1.1);
}

.slider-nav button i {
    font-size: 20px;
    color: #333;
}

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

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