@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Abril Fatface";
}

body{
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
  min-height: 100vh;
}

.mask {
  height: 100vh;
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  mix-blend-mode: screen;
}

h2 {
  font-size: 80px;
}

video {
  position: fixed;
  z-index: -1;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*glass cards*/
/* ===== GLASS SECTION ===== */

.glass-section{
  width: 100%;
  padding: 120px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-card{
  width: 100%;
  max-width: 1200px;
  min-height: 420px;
  border-radius: 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 60px;

  /* ✨ Glass Effect */
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

/* LEFT TEXT */
.glass-text{
  flex: 1;
  color: white;
}

.glass-text h2{
  font-size: 48px;
  margin-bottom: 20px;
}

.glass-text p{
  font-family: system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* BUTTON */
.glass-btn{
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-weight: 600;
  color: white;

  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);

  transition: 0.3s ease;
}

.glass-btn:hover{
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

/* RIGHT IMAGE */
.glass-image{
  flex: 1;
  display: flex;
  justify-content: center;
}

.glass-image img{
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* RESPONSIVE */
@media(max-width: 900px){
  .glass-card{
    flex-direction: column;
    text-align: center;
  }

  .glass-image{
    order: -1;
  }
}

body {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}


/* WRAPPER FOR SIDE-BY-SIDE */
.owner-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; /* mobile safety */
  margin: 100px 20px;
}

.owner-box {
  display: flex;
  justify-content: center;
  margin: 100px 20px;
}

/* MAIN CARD */
.owner-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  border-radius: 20px;

  padding: 40px 60px;
  text-align: center;
  color: white;

  min-width: 300px;
  max-width: 500px;

  transition: 0.4s ease;
  animation: glowPulse 3s infinite ease-in-out;
}

/* HOVER EFFECT */
.owner-content:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 
    0 0 25px rgba(255,255,255,0.15),
    0 0 50px rgba(255,255,255,0.08);
}

/* TEXT */
.owner-label {
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.owner-name {
  font-size: 34px;
  margin: 0;
}

.owner-role {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* SOFT GLOW ANIMATION */
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 12px rgba(255,255,255,0.08); }
  50% { box-shadow: 0 0 30px rgba(255,255,255,0.18); }
}

/* META STYLE BADGE */
.meta-badge {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  border-radius: 50%;
  background: #1da1f2;

  position: relative;
  top: 3px;

  box-shadow:
    0 0 6px rgba(29,161,242,0.6),
    0 0 12px rgba(29,161,242,0.4);
}

/* CHECK ICON */
.meta-badge::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* 📱 MOBILE OPTIMIZATION */
@media (max-width: 768px) {

  .owner-content {
    width: 90%;
    padding: 30px 20px;
  }

  .owner-name {
    font-size: 28px;
  }

  .owner-role {
    font-size: 14px;
  }
}

/* --- MOBILE RESPONSIVENESS --- */

@media (max-width: 768px) {
    /* Prevent the massive H2 from causing horizontal scroll */
    .mask h2 {
        font-size: 40px; /* Smaller base size for mobile */
        white-space: nowrap;
    }

    /* Fix Glass Cards */
    .glass-section {
        padding: 60px 5%;
    }

    .glass-card {
        flex-direction: column !important; /* Stack image and text */
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }

    .glass-image {
        order: -1; /* Image appears above text on mobile */
    }

    .glass-text h2 {
        font-size: 28px;
    }

    /* Fix Owner Wrapper */
    .owner-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .owner-content {
        width: 100%;
        max-width: 100%;
        min-width: unset;
    }

    /* Hero Buttons - Stack them for easier tapping */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .btn.primary {
        width: 100%;
        text-align: center;
    }
    
    /* Step Arrows - Point down on mobile instead of right */
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
}

/* 1. Hide these links by default on Desktop */
.mobile-only {
  display: none !important;
}

/* 2. Mobile View adjustments */
@media (max-width: 980px) {
  /* Show the links in the mobile sidebar */
  .mobile-only {
    display: block !important;
  }

  /* Optional: Style them slightly differently to stand out */
  nav a.mobile-only {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    color: #fff;
    font-weight: bold;
  }
}