/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #303232;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 30px;
  color: #00ffff;
  border-bottom: 2px solid #00ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  text-align: center;
}

.logoclub {
  height: 120px;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.logoclub:hover {
  transform: translateY(-50%) scale(1.05);
}

header h1 {
  font-size: 2em;
  letter-spacing: 1.5px;
  line-height: 1.3em;
}

/* Main Layout */
main {
  flex: 1;
  display: flex;
  height: calc(100vh - 80px);
  flex-wrap: wrap;
}

/* Video Section */
.video-section {
  position: relative;
  width: 80%;
  height: 100%;
  overflow: hidden;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Menu Section */
.menu-section {
  width: 20%;
  background: linear-gradient(180deg, rgba(0,255,255,0.1), rgba(255,255,255,0.05), rgba(0,255,255,0.1));
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-left: 2px solid rgba(0,255,255,0.3);
  box-shadow: -5px 0 20px rgba(0,255,255,0.1);
}

.menu-section h1 {
  margin-bottom: 20px;
  font-size: 1.8em;
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0,255,255,0.5);
}

.nav-btn {
  background: none;
  border: 2px solid #00ffff;
  color: #00ffff;
  padding: 10px 20px;
  margin-top: 20px;
  font-size: 1.1em;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,255,255,0.2);
}

.nav-btn:hover {
  background: #00ffff;
  color: #000;
  transform: scale(1.05);
}

/* Footer */
footer {
  background: #202121;
  color: #f0f6ef;
  text-align: center;
  padding: 40px 20px;
  border-top: 2px solid #00ffff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.footer-logo {
  height: 280px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.1);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  color: white;
  transition: 0.3s ease;
}

.social-link.linkedin { background: #0077b5; }
.social-link.google { background: #000; }
.social-link.instagram { background: #dd2a7b; }
.social-link.github { background: #000; }
.social-link.gmail { background: #000; }

.social-link:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0,255,255,0.8);
}

/* Contact Section */
.contact-section h3 {
  margin-top: 20px;
  color: #00ffff;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 10px;
  color: #00ffff;
  font-size: 0.9em;
}

.footer-bottom a {
  color: #00ffff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ======= Responsive Design ======= */

/* Tablets (<=1024px) */
@media (max-width: 1024px) {
  main {
    flex-direction: column;
  }

  .video-section {
    width: 100%;
    height: 50vh;
  }

  .menu-section {
    width: 100%;
    align-items: center;
    text-align: center;
    border-left: none;
    border-top: 2px solid rgba(0,255,255,0.3);
  }

  .menu-section h1 {
    font-size: 1.5rem;
  }

  .nav-btn {
    width: 80%;
    margin: 10px 0;
  }

  .footer-logo {
    height: 200px;
  }
}

/* Mobiles (<=600px) */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    padding: 10px;
  }

  .logoclub {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    height: 90px;
    margin-bottom: 10px;
  }

  header h1 {
    font-size: 1.4rem;
    text-align: center;
  }

  .video-section {
    height: 35vh;
  }

  .menu-section h1 {
    font-size: 1.3rem;
  }

  .nav-btn {
    width: 100%;
    font-size: 1rem;
  }

  /* Footer center logos for mobile */
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-logo {
    height: 140px;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.2em;
  }

  .footer-bottom {
    font-size: 0.8em;
  }
}
