

/* ========================= */
/* style.css */
/* ========================= */

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #050505;
  color: white;
  overflow-x: hidden;
  min-height: 100vh;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
}

.glow1 {
  width: 400px;
  height: 400px;
  background: rgba(212,175,55,0.15);
  top: -100px;
  left: -100px;
}

.glow2 {
  width: 400px;
  height: 400px;
  background: rgba(212,175,55,0.1);
  bottom: -100px;
  right: -100px;
}

body {
  opacity: 0;
  transition: opacity 1s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.card {
  animation: floatCard 5s ease-in-out infinite;
  width: 100%;
  max-width: 1400px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.15);
  backdrop-filter: blur(15px);
  border-radius: 40px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.left-side,
.right-side {
  padding: 70px;
  position: relative;
}

.left-side {
  border-right: 1px solid rgba(212,175,55,0.1);
}

.logo-box {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #d4af37;
  box-shadow: 0 0 30px rgba(212,175,55,0.5);
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  margin-top: 40px;
  font-size: 62px;
  line-height: 1.1;
  font-weight: 800;
}

h1 span {
  color: #d4af37;
}

.role {
  margin-top: 20px;
  color: #d4af37;
  letter-spacing: 5px;
  font-size: 18px;
  font-weight: 600;
}

.description {
  margin-top: 30px;
  color: #c7c7c7;
  line-height: 1.9;
  font-size: 18px;
  max-width: 600px;
}

.buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.4s ease;
  border: 2px solid #d4af37;
}

.gold-btn {
  background: #d4af37;
  color: black;
}

.gold-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(212,175,55,0.6);
}

.outline-btn {
  color: #d4af37;
}

.outline-btn:hover {
  background: #d4af37;
  color: black;
}

.profile-box {
  width: 260px;
  height: 260px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #d4af37;
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
}

.profile-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-box {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 20px;
  padding: 25px;
  transition: 0.4s ease;
}

.quote:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

.quote i {
  color: #d4af37;
  font-size: 25px;
  margin-bottom: 15px;
}

.quote p {
  font-size: 18px;
  line-height: 1.7;
}

.contact-box {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #d0d0d0;
}

.contact-item i {
  color: #d4af37;
  font-size: 22px;
}

.contact-item a {
  color: #d0d0d0;
  text-decoration: none;
}

.contact-item a:hover {
  color: #d4af37;
}

.socials {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.socials a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.3);
  color: #d4af37;
  text-decoration: none;
  font-size: 24px;
  transition: 0.4s ease;
}

.socials a:hover {
  background: #d4af37;
  color: black;
  transform: translateY(-5px);
}

footer {
  text-align: center;
  padding: 30px;
  color: #8f8f8f;
  border-top: 1px solid rgba(212,175,55,0.1);
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

/* Large Tablets */
@media(max-width: 1200px) {

  .card {
    max-width: 1000px;
  }

  h1 {
    font-size: 54px;
  }

  .left-side,
  .right-side {
    padding: 60px 45px;
  }
}

/* Tablets */
@media(max-width: 900px) {

  .hero {
    padding: 20px;
  }

  .card {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }

  .left-side {
    border-right: none;
    border-bottom: 1px solid rgba(212,175,55,0.1);
  }

  .left-side,
  .right-side {
    padding: 50px 35px;
    text-align: center;
  }

  .logo-box,
  .profile-box {
    margin-left: auto;
    margin-right: auto;
  }

  .buttons,
  .socials {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }

  h1 {
    font-size: 46px;
  }

  .description {
    margin-left: auto;
    margin-right: auto;
  }

  .quote-box {
    margin-top: 40px;
  }
}

/* Mobile Phones */
@media(max-width: 600px) {

  .hero {
    padding: 15px;
  }

  .card {
    border-radius: 25px;
  }

  .left-side,
  .right-side {
    padding: 40px 22px;
  }

  .logo-box {
    width: 110px;
    height: 110px;
  }

  .profile-box {
    width: 180px;
    height: 180px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .role {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .description {
    font-size: 15px;
    line-height: 1.8;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 15px;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .quote {
    padding: 20px;
  }

  .quote p {
    font-size: 15px;
  }

  .contact-item {
    font-size: 14px;
    flex-wrap: wrap;
  }

  .socials a {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  footer {
    font-size: 12px;
    padding: 25px 15px;
  }
}

/* Small Phones */
@media(max-width: 400px) {

  h1 {
    font-size: 28px;
  }

  .left-side,
  .right-side {
    padding: 30px 18px;
  }

  .description {
    font-size: 14px;
  }

  .profile-box {
    width: 150px;
    height: 150px;
  }

  .contact-item {
    font-size: 13px;
  }
}

@media(max-width: 900px) {

  .left-side {
    border-right: none;
    border-bottom: 1px solid rgba(212,175,55,0.1);
  }

  .left-side,
  .right-side {
    padding: 50px 30px;
  }

  h1 {
    font-size: 45px;
  }

  .profile-box {
    width: 220px;
    height: 220px;
  }
}

