/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

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

:root {
  --neon-color: #03e9f4;
  --bg-color: #000000;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
}

body {
  background-color: var(--bg-color);
  color: white;
  font-family: 'Raleway', sans-serif;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

/* Neon Button Styles (NO REFLECTION) */
.neon-button {
  position: relative;
  display: inline-block;
  padding: 16px 24px;
  margin: 12px;
  color: var(--neon-color);
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
  letter-spacing: 2px;
  overflow: hidden;
  font-weight: bold;
  font-size: 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
}

.neon-button:hover {
  background: var(--neon-color);
  color: var(--bg-color);
  box-shadow:
    0 0 5px var(--neon-color),
    0 0 15px var(--neon-color),
    0 0 30px var(--neon-color),
    0 0 60px var(--neon-color);
  /* Removed: -webkit-box-reflect */
}

.neon-button span {
  position: absolute;
  display: block;
}

.neon-button span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-color));
  animation: animate1 1s linear infinite;
}

@keyframes animate1 {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.neon-button span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--neon-color));
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}

@keyframes animate2 {
  0% { top: -100%; }
  50%, 100% { top: 100%; }
}

.neon-button span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, var(--neon-color));
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}

@keyframes animate3 {
  0% { right: -100%; }
  50%, 100% { right: 100%; }
}

.neon-button span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, var(--neon-color));
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}

@keyframes animate4 {
  0% { bottom: -100%; }
  50%, 100% { bottom: 100%; }
}

/* Header / Navigation */
header {
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  margin: 20px auto;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Landing Page Slider */
.circular-gallery {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  cursor: grab;
  position: relative;
  margin: 20px 0;
}

.circular-gallery:active {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  height: 100%;
  align-items: center;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.gallery-item {
  flex: 0 0 80%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* Contact Page */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: bold;
  margin-top: 8px;
}

textarea, input[type="text"] {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: white;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* Gallery Page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Platform Icons */
.platform-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.platform-icon i {
  position: relative;
  z-index: 2;
}

.platform-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  opacity: 0.15;
  z-index: 1;
}

/* WhatsApp - Green */
.whatsapp-icon {
  color: #25D366;
}

.whatsapp-icon:hover {
  color: white;
  box-shadow:
    0 0 8px #25D366,
    0 0 16px #25D366,
    0 0 32px #25D366;
  background: #25D366;
}

/* YouTube - Red */
.youtube-icon {
  color: #FF0000;
}

.youtube-icon:hover {
  color: white;
  box-shadow:
    0 0 8px #FF0000,
    0 0 16px #FF0000,
    0 0 32px #FF0000;
  background: #FF0000;
}

/* Gmail / Google - Red */
.gmail-icon {
  color: #EA4335;
}

.gmail-icon:hover {
  color: white;
  box-shadow:
    0 0 8px #EA4335,
    0 0 16px #EA4335,
    0 0 32px #EA4335;
  background: #EA4335;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  margin-top: 40px;
  color: #aaa;
  font-size: 14px;
  border-top: 1px solid var(--glass-border);
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 15px;
  }
  .neon-button {
    padding: 12px 18px;
    font-size: 14px;
    letter-spacing: 1px;
  }
  .gallery-item {
    flex: 0 0 95%;
  }
  .glass-card {
    padding: 20px;
    margin: 15px;
  }
  .platform-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}