/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #000;
    color: #b5a153;
    font-family: Arial, sans-serif;
    transition: background-color 1s ease;
  }
  
  .title {
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px #f8f8f8;
  }
  
  /* Navbar */
  .navbar {
    background: linear-gradient(135deg, #000 0%, #d8bf68 100%);
    display: flex;
    justify-content: center;
    
    color: #fff;
  }
  
  /* Hero Section */
  .hero {
    background: #000;
    text-align: center;
    padding: 60px 20px;
    color: #b5a153;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #bfa75e;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #bfa75e;
  }
  
  .hero p {
    color: #ccc;
    font-size: 1.1rem;
  }
  
  /* Jumbotron */
  .jumbotron {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px 20px;
    background-color: #000;
    text-align: center;
    overflow: hidden;
  }
  
  .jumbotron .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .jumbotron h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #bfa75e;
  }
  
  .jumbotron p {
    font-size: 1.2rem;
    color: #ccc;
  }
  
  .jumbotron-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
  }
  
  /* Responsive Jumbotron */
  @media (max-width: 768px) {
    .jumbotron h1 {
      font-size: 2rem;
    }
    .jumbotron p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .jumbotron h1 {
      font-size: 1.6rem;
    }
    .jumbotron p {
      font-size: 0.95rem;
    }
  }
  
  /* Typography */
  h2, h3, h4, h5 {
    margin-bottom: 1rem;
  }
  
  a {
    color: #b5a153;
    text-decoration: none;
  }
  
  a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  hr.section-divider {
    border: 0;
    height: 1px;
    background-color: #ccc;
    margin: 1.5rem 0;
  }
  
  /* Font Awesome Icons */
  .fa {
    padding: 10px;
    font-size: 24px;
    text-align: center;
    margin: 5px;
  }
  
  .fa-facebook, .fa-instagram {
    background: #b5a153;
    color: white;
    border-radius: 50%;
  }
  
  /* Carousel */
  .carousel, .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
  }
  
  /* Footer */
  footer {
    background: #000;
    color: #b5a153;
    padding: 20px;
    text-align: center;
  }
  
  footer a {
    color: #b5a153;
    margin: 0 10px;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  /* Social Icons */
  .social-icons .fa {
    font-size: 20px;
    width: 40px;
    border-radius: 50%;
    background-color: #b5a153;
    color: #000;
  }
  
  .social-icons .fa:hover {
    opacity: 0.7;
  }
  
  /* Card Flip */
  .card {
    position: relative;
    height: 400px;
    width: 100%;
    margin: 20px 0;
    perspective: 1200px;
    transition: ease all 2.3s;
  }
  
  .card:hover .cover {
    transform: rotateX(0deg) rotateY(-180deg);
  }
  
  .card:hover .cover h1,
  .card:hover .cover .price {
    transform: translateZ(100px);
  }
  
  .card:hover .cover:before {
    transform: translateZ(30px);
  }
  
  .card:hover .cover a {
    transform: translateZ(-60px) rotateY(-180deg);
  }
  
  .cover {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transform-style: preserve-3d;
    transition: ease all 2.3s;
  }
  
  .cover:before,
  .cover:after {
    content: '';
    position: absolute;
    z-index: 2;
    transition: ease all 1.3s;
  }
  
  .cover:before {
    border: 5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    transform: translateZ(0px);
  }
  
  .cover:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .cover h1, .cover .price {
    position: absolute;
    color: white;
    z-index: 3;
    transform-style: preserve-3d;
    transition: ease all 2.3s;
  }
  
  .cover h1 {
    bottom: 55px;
    left: 50px;
    font-size: 3em;
  }
  
  .cover .price {
    top: 55px;
    right: 50px;
    font-size: 2em;
  }
  
  .cover.item-a { background-image: url('./images/k.jpg'); }
  .cover.item-b { background-image: url('./images/hs.jpg'); }
  .cover.item-c { background-image: url('./images/p8.jpg'); }
  .cover.item-d { background-image: url('./images/4.jpg'); }
  .cover.item-e { background-image: url('./images/5.jpg'); }
  .cover.item-f { background-image: url('./images/brust.jpg'); }
  .cover.item-g { background-image: url('./images/man.jpg'); }
  .cover.item-h { background-image: url('./images/taper.jpg'); }
  .cover.item-l { background-image: url('./images/drop.jpg'); }
  
  .card-back {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #0b0f08;
    transform-style: preserve-3d;
    transform: translateZ(-1px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .card-back a {
    background: transparent;
    border: 1px solid white;
    color: #b5a153;
    font-weight: 200;
    font-size: 1.3em;
    padding: 14px 32px;
    text-decoration: none;
    transform: translateZ(-1px) rotateY(-180deg);
    box-shadow: 0 0 20px #bfa75e;
    transition: background 0.5s, transform 2.3s;
  }
  
  .card-back a:hover {
    background: white;
    color: #0b0f08;
  }
  
  /* Hidden Utility */
  .hidden { display: none; }
  .show { display: block; }
  
  /* Card Info Box */
  .card-info {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .card-info h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .card-info p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  /* SMS & Call Buttons */
  .SMS, .Call {
    background-color: #b5a153;
    border-radius: 45%;
    color: white;
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
  }
  
  .SMS a, .Call a {
    color: white;
  }
  
  /* Instagram Feed */
  .instagram-feed {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .feed-header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .feed-header h1 {
    background: #333;
    color: #b5a153;
  }
  
  /* Grid */
  .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(326px, 1fr));
    grid-gap: 10px;
  }
  
  .grid-item {
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  
  /* Locations */
  .main-map {
    width: 100%;
    height: 650px;
    border: none;
  }
  
  .locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
  }
  
  .location-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 24px;
    width: calc(50% - 30px);
    min-width: 300px;
    box-shadow: 0 0 20px #bfa75e;
    transition: transform 0.3s ease;
  }
  
  .location-card:hover {
    transform: scale(1.02);
  }
  
  @media (max-width: 768px) {
    .location-card {
      width: 100%;
    }
  }
  
  .location-card h2 {
    margin: 0 0 10px;
    color: #bfa75e;
    font-size: 1.5rem;
  }
  
  .location-card p {
    margin: 6px 0;
    color: #ccc;
  }
  
  /* Buttons */
  .buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .buttons a {
    text-decoration: none;
    background: #bfa75e;
    color: #000;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .buttons a:hover {
    background: #d5c083;
    transform: scale(1.04);
  }
  
  /* Instagram Button */
  .instagram-btn .fa {
    font-size: 20px;
    color: #000;
    background: none;
    padding: 0;
    margin: 0;
    width: auto;
    vertical-align: middle;
  }
  
  /* Shop Select Dropdown */
  #shopSelect {
    display: none;
    background-color: #000;
    color: #bfa75e;
    border: 2px solid #b5a153;
    border-radius: 6px;
    padding: 8px 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    margin-left: 10px;
    transform: rotateY(180deg);
    backface-visibility: hidden;
  }
  
  #shopSelect:hover,
  #shopSelect:focus {
    background-color: #bfa75e;
    color: #000;
    border-color: #d5c083;
  }

  .gallery-box {
    width: 350px;
    height: 350px;
    background: rgba(0, 0, 0, 0.981);
    border: 2px solid #000;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
    box-shadow: 0 0 20px #bfa75e;
    margin: 0 auto; /* center horizontally in parent */
  }
  
  .gallery-box:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.05);
  }
  
  .dice {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: autoSpin 12s linear infinite;
    cursor: pointer;
  }
  
  @keyframes autoSpin {
    0% {
      transform: rotateX(0deg) rotateY(0deg);
    }
    100% {
      transform: rotateX(360deg) rotateY(360deg);
    }
  }
  
  .wall {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgb(0, 0, 0), #bfa75e);
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 0 20px #bfa75e;
    border-radius: 6px; /* add border-radius for all walls */
    overflow: hidden; /* clip images */
    
  }
  
  .wall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }
  
  .-no1 { transform: translateZ(100px); }
  .-no2 { transform: rotateY(90deg) translateZ(100px); }
  .-no3 { transform: rotateX(90deg) translateZ(100px); }
  .-no4 { transform: rotateX(-90deg) translateZ(100px); }
  .-no5 { transform: rotateY(-90deg) translateZ(100px); }
  .-no6 { transform: rotateY(180deg) translateZ(100px); }
  
  .dice a {
    position: absolute;
    inset: 0;
    z-index: 10;
  }
  