/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #f8f8f8;
  background-color: #0c0c0c;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: #111;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  color: gold;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #f8f8f8;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: gold;
}

/* Hero */
.hero {
  background: url('your-hero-image.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: gold;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid gold;
  color: gold;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: gold;
  color: #111;
}

/* Sections */
section {
  padding: 80px 0;
}

.about, .showreel, .testimonials, .contact {
  background: #111;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: gold;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.testimonial {
  margin-bottom: 20px;
  font-style: italic;
  text-align: center;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

input, textarea {
  padding: 10px;
  border: 2px solid gold;
  background: transparent;
  color: #f8f8f8;
  resize: none;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px 0;
  background: #0c0c0c;
  font-size: 0.9rem;
}

.about p {
  text-align: center;
  font-size: 18pt;
  margin-bottom: 15px;
}
#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 1s ease;
}

.logo-text {
  font-size: 4rem;
  color: gold;
  font-family: 'Georgia', serif;
  text-shadow: 0 0 20px gold;
  margin-top: 50px;
  opacity: 0;
  animation: fadeInLogo 3s ease forwards 1.5s;
}

@keyframes fadeInLogo {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

.cards-container {
  position: relative;
  width: 100%;
  height: 200px;
}

.card {
  position: absolute;
  width: 20vw; /* 20% of viewport width */
  max-width: 100px;
  height: calc(20vw * 1.5); /* keep card aspect ratio */
  max-height: 150px;
  background: white;
  border: 2px solid gold;
  border-radius: 10px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 0 20px gold;
  transform-style: preserve-3d;
}


.card .front, .card .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .back {
  background: gold;
  color: #111;
  transform: rotateY(180deg);
}

.queen {
  top: 0;
  left: -150px;
  animation: queenMove 3s forwards;
  color: rgb(255,0,0)
}

.jack {
  top: 0;
  right: -150px;
  animation: jackMove 3s forwards;
  color: rgb(0,0,0)
}

@keyframes queenMove {
  0% { left: -25vw; transform: rotateY(0); }
  50% { left: 40%; transform: rotateY(180deg); }
  100% { left: 30%; transform: rotateY(360deg); }
}

@keyframes jackMove {
  0% { right: -25vw; transform: rotateY(0); }
  50% { right: 40%; transform: rotateY(180deg); }
  100% { right: 30%; transform: rotateY(360deg); }
}


.fade-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}
@media (max-width: 600px) {
  .logo-text {
    font-size: 2.5rem;
  }
}
.quote {
  background: #111;
  padding: 80px 0;
}

.quote h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: gold;
}

#quote-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#quote-form label {
  color: gold;
  font-weight: bold;
}

#quote-form input, #quote-form select {
  padding: 10px;
  border: 2px solid gold;
  background: black;
  color: #f8f8f8;
  resize: none;
}

.quote-result {
  margin-top: 30px;
  text-align: center;
  font-size: 1.5rem;
  color: gold;
  font-weight: bold;
}
.gallery {
  background: #111;
  padding: 80px 0;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: gold;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 0 20px;
  justify-items: center;
}

.gallery-card {
  width: 200px;
  height: 300px;
  border: 2px solid gold;
  border-radius: 10px;
  box-shadow: 0 0 20px gold;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px gold;
}

.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* Lightbox styles */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img, .lightbox video {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid gold;
  border-radius: 10px;
  box-shadow: 0 0 40px gold;
  transition: transform 0.3s ease;
}

.lightbox img:hover, .lightbox video:hover {
  transform: scale(1.05);
}



/* Carousel scroll on mobile */
@media (max-width: 600px) {
  .gallery-grid {
    display: flex !important;
    flex-direction: row;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }
}
