* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px;
  gap: 60px;
}


.content {
  max-width: 520px;
}

.logo {
  width: 110px;
  margin-bottom: 40px;
}

h1 {

  margin-bottom: 30px;
}

.inline-logo2 {
  max-width: 80%;   
  height: auto;     
  display: block;
  margin-left: 0;   
}


.inline-logo {
  height: 19px;
  vertical-align: middle;
  margin: 0 6px;
}
.description {
  font-size: 1.5rem;        
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 3rem;      
  max-width: 600px;          
  margin-left: auto;
  margin-right: auto;        
  padding: 0 10px;          
}


.btn {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #f5b000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.btn:hover {
  background: #f5b000;
  color: #000;
}

.social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 5vw, 45px);
  flex-wrap: wrap; 
  margin-top: 2rem;
}

.social .icons {
  display: flex;
  gap: clamp(15px, 5vw, 45px);
  flex-wrap: wrap;
}


@media (max-width: 480px) {
  .social {
    flex-direction: column; 
    gap: 1rem;
  }
  .social .icons {
    justify-content: center; 
  }
}

.social span {
  font-size: clamp(12px, 3vw, 18px); 
  letter-spacing: 1px;               
}

.social .line {
  width: clamp(40px, 20vw, 80px);  
  height: 2px;
  background: #fff;
}

.social img {
  width: clamp(20px, 6vw, 30px);   
  opacity: 0.8;
}

.social img[src*="facebook"] {
  width: clamp(12px, 5vw, 14px);   
}


.social img:hover {
  opacity: 1;
}


.visual {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: flex-end; /
}

.visual .circle {
  width: 450px; 
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  margin-left: 50px; 
}

.visual .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (max-width: 900px) {
  .wrapper {
    flex-direction: column;
    padding: 40px;
    text-align: center;
  }

  .visual {
    justify-content: center; 
    margin-top: 40px;
    flex: none; 
  }

  .visual .circle {
    margin-left: 0;         
    width: 200px;             
    height: 200px;
  }
  .inline-logo2 {
    margin: auto;  /* center on mobile */
  }
}


.circle {
  width: auto;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  margin-left: 190px
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





@media (max-width: 900px) {
  .wrapper {
    flex-direction: column;
    padding: 40px;
    text-align: center;
  }

  .visual {
    margin-top: 40px;
  }
}
.bottom-image {
  display: block;
  margin: 50px auto 0 auto; 
  width: 0px; 
}
