/* Імпорт шрифту Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Основні стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffff;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

@media (max-width:768px){
    body {
      background: url('./images/bg.png') no-repeat center;
      background-size: cover;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    position: relative;

}

/* Логотип */
.logo-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Заголовок SCAM */
.scam-header {
    text-align: center;
    margin-bottom: 30px;
}

.scam-title {
    font-size: clamp(64px, 15vw, 150px);
    font-weight: 900;
    line-height: 1;
    color: #FF0000;
    letter-spacing: 0.05em;
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.02);
        opacity: 1;
    }
}

/* Основний контент */
.content-section {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.warning-box {
    margin-bottom: 30px;
    text-align: center;
}


.warning-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

 /* Operator Section */
      .operator-section {
          display: flex;
          align-items: flex-start;
          gap: 30px;
          margin-bottom: 40px;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
      }

      .operator-photo img {
          width: 300px;
          height: auto;
          aspect-ratio: 1/1;
          object-fit: cover;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      }

      .operator-details {
          flex: 1;
      }

      .operator-label {
          font-size: 24px;
          color: #FF0000;
          margin-bottom: 4px;
      }

      .operator-name {
          font-size: 24px;
          font-weight: 700;
        
          display: inline;
      }

      .operator-birth {
          font-size: 24px;
        
          display: inline;
          margin-left: 5px;
      }

      .office-details {
          margin-top: 15px;
          font-size: 24px;
          line-height: 1.5;
          text-decoration: underline;
      }

      .office-details strong {
          font-weight: 600;
      }

      /* Company Info */
      .company-info {
          background: #e9ecef;
          padding: 16px;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
          margin-bottom: 40px;
          text-align: center;
          border-bottom: 4px solid #666;
      }

      .warn-text {
          color: #FF0000;
          font-weight: 600;
          font-size: 20px;
          margin-bottom: 10px;
      }

      .company-details {
          font-size: 20px;
          line-height: 1.6;
      }

      .company-details strong {
          font-weight: 700;
      }

      .contact-info a {
          color: #007bff;
          text-decoration: none;
      }

      .contact-info a:hover {
          text-decoration: underline;
      }

      @media (max-width:500px){
        .operator-section {
          flex-direction: column;
          align-items: center;
          text-align: center;
        }

        .office-details {
          font-size: 20px;
        }
      }


/* Фото секція */
.photos-section {
    margin-bottom: 60px;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    gap: 30px;
    justify-content: center;
}

.person-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.person-photo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Інформаційна секція */
.info-section {
    position: relative;
    z-index: 2;
    padding: 60px 0 0;
    background: url('./images/footer-bg.png') no-repeat top;
    background-size: cover;
}

.info-box {
    background: #fff;
    padding: 10px 40px;
}

.info-title {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.info-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-label {
    font-size: 16px;
    font-weight: 500;
}

.info-link {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-link:hover {
    transform: translateY(-2px);
}

@media (max-width:1000px){
    .photos-grid {
      grid-template-columns: repeat(3, 1fr);
    }
}


@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Адаптивність */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .scam-header {
      margin-bottom: 20px;
    }
    
    .content-section {
        padding: 25px;
        margin-bottom: 0;
    }
    
    .warning-title {
        font-size: 20px;
    }
    
    .warning-text {
        font-size: 16px;
    }
    
    .description {
        font-size: 14px;
    }
    
    .photos-grid {
      display: flex;
      flex-wrap: wrap;
        gap: 15px;
    }

    .info-section .container {
      padding: 0 !important;
    }

    .info-section {
      padding-bottom: 60px;
      padding-top: 0;
    }


    .person-photo {
        max-width: 100%;
    }

        .person-photo--50 {
      max-width: calc(50% - 15px);
    } 
    
    
    .info-box {
        padding: 25px;
    }
    
    .info-title {
        font-size: 20px;
    }
    
    .info-links {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }
    
    .info-item {
        width: max-content;
        max-width: 100%;
        text-align: center;
    }
    
    .info-link {
  
        padding: 0;
    }
    
    .shape-1, .shape-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .warning-title {
        font-size: 18px;
    }
    
    .warning-text {
        font-size: 15px;
    }
    
    .info-box {
        padding: 20px;
    }
}

/* Анімації для завантаження */
main > .container {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: slideUp 0.8s ease-in-out 0.2s both;
}

.info-box {
    animation: slideUp 0.8s ease-in-out 0.4s both;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}