/* ===========================================
   MAPAR MARINE - Modern Coming Soon Page CSS
   =========================================== */

/* CSS Variables */
:root {
  --primary-gradient: linear-gradient(135deg, #0061ff 0%, #00d4ff 100%);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --accent-color: #00d4ff;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #0c1929 0%, #1a2f4a 50%, #0d2137 100%);
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text-primary);
}

/* Video Background */
#bgVideo {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
  opacity: 0.4;
}

/* Overlay */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12, 25, 41, 0.85) 0%, rgba(26, 47, 74, 0.75) 50%, rgba(13, 33, 55, 0.9) 100%);
  z-index: -1;
}

/* Main Container */
.main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  position: relative;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: slideUp 1s ease-out;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */
.logo-container {
  margin-bottom: 2rem;
  animation: fadeIn 1.2s ease-out 0.3s both;
}

.logo-container img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.3));
  transition: transform 0.4s ease, filter 0.4s ease;
  border-radius: 24px;
}

.logo-container img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 40px rgba(0, 212, 255, 0.5));
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Typography */
.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffffff 0%, #a8dadc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeIn 1.2s ease-out 0.5s both;
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeIn 1.2s ease-out 0.7s both;
  letter-spacing: 1px;
}

.description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeIn 1.2s ease-out 0.9s both;
}

/* Contact Buttons */
.contact-section {
  margin-bottom: 1.5rem;
  animation: fadeIn 1.2s ease-out 1.3s both;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  margin: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 97, 255, 0.3);
  border-color: transparent;
  color: #fff;
}

.contact-btn:hover::before {
  opacity: 1;
}

.contact-btn i {
  font-size: 1.1rem;
}

/* Social Buttons */
.social-section {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeIn 1.2s ease-out 1.5s both;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-gradient);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.social-btn:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 15px 35px rgba(0, 97, 255, 0.4);
  border-color: transparent;
  color: #fff;
}

.social-btn:hover::before {
  width: 100%;
  height: 100%;
}

/* Decorative Elements */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.glow-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 97, 255, 0.15);
  top: -100px;
  right: -100px;
  animation: pulse 8s ease-in-out infinite;
}

.glow-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 212, 255, 0.1);
  bottom: -50px;
  left: -50px;
  animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

/* Responsive */
@media (max-width: 768px) {
  .glass-card {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .main-title {
    font-size: 1.75rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .contact-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
}