* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000;
  overflow-x: hidden;
}

/* Background Slider */
.bg-slider {
  position: fixed;
  inset: 0;
  z-index: 1;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}

/* Content */
.content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Header */
header {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 20px #000;
}

header p {
  font-size: 1.3rem;
  letter-spacing: 2px;
}

/* Cards */
.info-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  margin: 15px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.info-card h2 {
  color: #0077cc;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 12px;
  margin: 10px 0;
  background: #f5f5f5;
  border-radius: 10px;
}

.contact-item i {
  color: #0077cc;
  font-size: 1.4rem;
  margin-right: 15px;
}

.contact-item a,
.contact-item span {
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Buttons */
.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #0077cc, #0099ff);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 204, 0.4);
}

/* Owner */
.owner-section {
  text-align: center;
}

.owner-section p {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
  text-align: center;
}

.owner-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #0077cc;
  margin: 20px auto;
  display: block;
  object-fit: cover;
}

/* Gallery Section */
.gallery-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  margin: 15px 15px 100px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.gallery-section h2 {
  color: #0077cc;
  margin-bottom: 25px;
  font-size: 1.8em;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.gallery-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.gallery-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

.gallery-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}

.gallery-btn {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4em;
  color: #0077cc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-btn:hover {
  background: #0077cc;
  color: white;
  transform: scale(1.1);
}

.gallery-btn:active {
  transform: scale(0.95);
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.gallery-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #bdc3c7;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.gallery-dot.active {
  background: #0077cc;
  transform: scale(1.3);
  border-color: #0055aa;
}

.gallery-dot:hover {
  background: #7f8c8d;
}

/* Slider Dots */
.slider-dots {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
  background: rgba(0, 0, 0, 0.5);
  padding: 12px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Loading */
.loading {
  text-align: center;
  padding: 20px;
}

.loading i {
  font-size: 2rem;
  color: #0077cc;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 { 
    font-size: 2.2rem; 
  }

  .btn-container {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .gallery-slide img {
    max-height: 350px;
  }

  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }

  .gallery-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 15px;
  }

  header {
    margin-bottom: 20px;
  }

  header h1 {
    font-size: 1.8rem;
  }

  header p {
    font-size: 1rem;
  }

  .gallery-slide img {
    max-height: 280px;
  }

  .gallery-btn {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
}