/*общие*/
html, body {
  margin: 0 !important;
  padding: 0 !important;
  height: 100% !important;
  background: #000 !important;
}
body {
  font-family: "Playfair Display", serif !important;
  background-color: #000 !important;
  color: #fff !important;
}

/* --- ШАПКА --- */
.main-header {
  position: fixed;
  top: -120px;
  left: 0;
  width: 100%;
  padding: 14px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  transition: top 0.6s ease, background 0.4s;
  z-index: 1000;
}

.main-header.visible {
  top: 0;
}

/* Ліва частина */
.header-left {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Центральна частина */
.header-center {
  text-align: center;
  line-height: 0.3;
}

.logo {
    padding-left: 60px;
	margin-bottom: 0;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #bfbfbf 0%, #e8e8e8 30%, #9a9a9a 70%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: chromeShine 6s linear infinite;
	}

@keyframes chromeShine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.subtitle {
  font-style: italic;
  padding-left: 60px;
  margin: 0;
  font-size: 18px;
  letter-spacing: 1.5px;
  
  color: #b31249;
}


/* Права частина */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Перемикач мов */
.lang-switch {
  display: flex;
  gap: 6px;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  padding: 4px 8px;
  transition: all 0.3s ease;
}

.lang-btn.active,
.lang-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
}

.phone {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* Гамбургер */
.hamburger {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* --- ПОВНОЕКРАННЕ МЕНЮ --- */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 999;
}

.fullscreen-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.fullscreen-menu nav {
  
  text-align: center;
  display: flex;
  flex-direction: column;
}

.fullscreen-menu a {
    font-family: "Playfair Display", serif;
  font-style: italic;
  color: #b31249;
  font-size: 26px;
  text-decoration: none;
  margin: 15px 0;
  transition: color 0.3s ease;
}

.fullscreen-menu a:hover {
  color: #b38b6d;
}

/* --- АДАПТИВ --- */
@media (max-width: 992px) {
  .header-left {
    display: none;
  }

  .subtitle {
    padding-left: 0;
    font-size: 12px;
  }

  .phone {
    display: none;
  }

  .logo {
    padding-left: 0;
    font-size: 22px; 
    letter-spacing: 1px;
  }

  .main-header {
    padding: 10px 20px;
  }

  .lang-switch {
    flex-direction: column; 
    gap: 4px;
  }

  .lang-btn {
    font-size: 12px;
    padding: 3px 7px;
  }

  .hamburger {
    width: 24px;
    height: 18px;
  }

  .hamburger span {
    height: 1.8px;
  }
  .fullscreen-menu a {
 font-size: 20px;
 }
}

@media (max-width: 480px) {
  .logo {
    font-size: 18px;
  }

  .lang-btn {
    font-size: 11px;
    padding: 2px 6px;
  }
   .fullscreen-menu a {
 font-size: 16px;
 }
}
/*hero блок*/
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
	}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}


.lang-switcher {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: 35px;
  display: flex;
  gap: 6px;
}

.lang-switcher button {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 3px 6px; 
  border-radius: 4px;
  transition: all 0.25s ease;
}

.lang-switcher button:hover,
.lang-switcher button.active {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
}

.hero-content {
  line-height: 0.3;
  position: relative;
  z-index: 3; 
  opacity: 0;
  animation: fadeIn 2s ease 1s forwards;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(180deg, #e5e5e5 0%, #9c9c9c 45%, #ffffff 50%, #5a5a5a 75%, #d8d8d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
	margin-bottom: 0;
}

.hero-subtitle {
	margin-top: -20px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 2rem;
  color: #b31249;
   letter-spacing: 1px;
}

.hero-since {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ccc;
}

@keyframes fadeIn {
  to { opacity: 1; transform: none; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 1.2rem; }
  .hero-bottom-mask { height: 100px; }
}

/*блок клуб+наши мастера*/

.girls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.girl-card {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  cursor: pointer;
  transition: all 0.4s ease;
 border: 2px solid #000;             
  outline: 2px solid #fff;            
  outline-offset: 4px;                
  box-shadow: 0 0 25px rgba(255,255,255,0.1);
}
.girl-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  border-radius: 50%
}
.girl-card h3 {
  margin-top: 10px;
  font-size: 18px;
}
.girl-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}
.girl-card:hover img {
  filter: blur(2px);
  opacity: 0.7;
}
.girl-card:hover .overlay {
  opacity: 1;
  backdrop-filter: blur(4px);
}
.overlay span {
  font-size: 16px;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 6px 12px;
  border-radius: 20px;
}
.info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  text-align: center;
  padding: 0px 10px 0px;
}

.info-overlay h3 {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.info-overlay h3 span {
  font-weight: 400;
  }
.info-overlay p{
    color: #b31249;
}
/*блок про нас*/

.club-section {
  background: #000;
  color: #fff;
  text-align: center;
  align-items: center;
  padding: 80px 0px;
  font-family: 'Playfair Display', serif;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-club {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0f0f0f;
  color: #eaeaea;
  font-family: "Playfair Display", serif;
}

.club-header {
  text-align: center;
  margin-bottom: -20px;
  padding-bottom: 80px;
}

.club-header h2 {
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 3px;
  background: linear-gradient(180deg, #e5e5e5 0%, #9c9c9c 45%, #ffffff 50%, #5a5a5a 75%, #d8d8d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

/* === ГРІД ДЛЯ КАРТОК === */

.club-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* === КАРТКИ === */

.club-block {
  background: #191918;
  border-radius: 18px;
  padding: 20px 35px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.03);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.club-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b31249, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.club-block:hover::before {
  opacity: 1;
}

.club-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.8);
}

.club-block h3 {
  font-size: 1.8rem;
  color: #b31249;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.club-block p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #dcdcdc;
  margin-bottom: 0;
}

/* === ОСТАННЯ КАРТКА НА ВСЮ ШИРИНУ === */

.club-block.full {
  grid-column: span 2;
  text-align: center;
  padding: 40px 50px;
}

.final {
  font-size: 1.25rem;
  text-align: center;
  font-style: italic;
  color: #fff;
}

.club-block .highlight {
  color: #b31249;
  font-weight: 600;
}

/* === АДАПТИВ === */

@media (max-width: 768px) {
  .club-sections {
    grid-template-columns: 1fr;
  }

  .club-block.full {
    grid-column: span 1;
  }

  .club-header h2 {
    font-size: 32px;
  }

  .club-block h3 {
    font-size: 22px;
  }

  .club-block p {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}




/* блок программы */
.programs-section {
  background: #000;
  color: #fff;
  font-family: "Playfair Display", serif;
  padding: 40px 20px;
}

.program-block {
  text-align: center;
  margin-bottom: 20px;
}
 .btn-row .buton {
  text-decoration: underline;
} 
   .btn-row {
    text-align: center;
    display: block;
    align-items: center;
    width: 100%;
}
.program-row {
  display: flex;
  justify-content: space-between;
  max-width: 850px;
  margin: 0 auto;
  padding: 15px 0;
  font-size: 22px;
  border-bottom: 1px solid #333;
}

.program-row span:last-child {
  font-weight: 600;
}
.time{
    color: #fff;
}
@media (max-width: 768px){
   .program-row span{
       font-size: 14px;
   }
   .program-block h2{
    font-size: 32px;
   }
}
/* блок дополнения */
.add-programs {
  text-align: center;
  padding: 60px 20px;
}

.title-add {
  font-family:  "Playfair Display", serif;
  font-size: 42px;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.add-programs .subtitle {
  font-family:  "Playfair Display", serif;
  font-size: 24px;
  color: #b80e37;
  margin-bottom: 40px;
}

.add-list {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 50px;
  max-width: 900px;
  margin: 0 auto;
}

.add-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 14px 0;
}

.add-name {
  color: #fff;
  font-size: 20px;
}

.add-price {
  color: #b80e37;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 768px){
  .add-programs h2 {
      font-size: 32px;
  } 
  .add-list span{
      font-size: 14px;
  }
	add-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
/* блок галерея */
.gallery-title{
    text-align: center;
    margin-top: 50px;
}
/* Контейнер со скроллом */
.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar {
    display: none;
}

/* Стили для карточки */
.w-grid-item {
    position: relative;
    min-width: 300px;
    height: 300px;
    flex-shrink: 0;
      cursor: pointer;
}

.post_image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: solid 5px #fff;
    transition: transform .3s ease;
}

/* Прозрачный квадрат */
.w-grid-item .w-grid-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 270px;
    height: 270px;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.w-grid-item:hover .w-grid-overlay {
    opacity: 1;
}

/* Текст */
.w-grid-item .w-grid-overlay span {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Увеличение */
.w-grid-item:hover img {
    transform: scale(1.1);
}
/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.lightbox.open {
    display: flex;
}

.lb-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
}

/* Arrows */
.lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    transform: translateY(-50%);
}
.lb-prev { left: 30px; }
.lb-next { right: 30px; }

.lb-prev:hover, .lb-next:hover {
    color: #e53935;
}

/* Close button */
.lb-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}
/* блок способы оплаты */
.payment-section {
    text-align: center;
    padding: 60px 20px;
    color: #fff;
    
}

.payment-description {
    font-size: 22px;
    max-width: 90%;
    margin: 0 auto 40px;
    line-height: 1.4;
}

.payment-subtitle {
    gap: 25px;
    margin-bottom: 40px;
}



.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.payment-icons img {
    height: 70px;
    object-fit: contain;
}

.payment-note {
    font-size: 22px;
}

/* блок контакты */
 /* Background block */
.contact-block {
  width: 100%;
  padding: 120px 0;
  background: url('https://bodycraft.com.ua/wp-content/uploads/2025/11/photo_2025-10-29_13-34-01-5.jpg') center/cover no-repeat;
  position: relative;
}

.contact-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

/* Cards container */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  justify-items: center;
}

/* Card */
.contact-card {
  width: 100%;
  max-width: 420px;
  padding: 40px 30px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Icon circle */
.icon-circle {
  min-width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #b31249;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 28px;
  color: white;
}

/* Text inside card */
.card-text {
  color: white;
  font-size: 20px;
  font-family: "Playfair Display", serif;
  text-align: left;
  line-height: 1.4;
}
/* ===========================
   ADAPTIVE
   =========================== */

/* Laptops & small desktops */
@media (max-width: 1200px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Tablets horizontal & vertical */
@media (max-width: 992px) {
  .contact-block {
    padding: 100px 0;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .contact-card {
    padding: 30px 25px;
    max-width: 380px;
  }

  .icon-circle {
    min-width: 55px;
    height: 55px;
  }

  .icon-circle i {
    font-size: 24px;
  }

  .card-text {
    font-size: 18px;
  }
}

/* Mobile large (540–768px) */
@media (max-width: 768px) {
  .contact-block {
    padding: 80px 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-card {
    max-width: 90%;
    padding: 28px 22px;
    gap: 20px;
  }

  .icon-circle {
    min-width: 50px;
    height: 50px;
  }

  .icon-circle i {
    font-size: 22px;
  }

  .card-text {
    font-size: 17px;
  }
}

/* Mobile small (<480px) */
@media (max-width: 480px) {
  .contact-block {
    padding: 60px 0;
  }

  .contact-card {
    max-width: 100%;
    padding: 22px 18px;
    gap: 18px;
    border-radius: 22px;
  }

  .icon-circle {
    min-width: 45px;
    height: 45px;
  }

  .icon-circle i {
    font-size: 20px;
  }

  .card-text {
    font-size: 16px;
    line-height: 1.3;
  }
}
/* форма связи */
.contact-form-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6); /* Тёмний фон блока */
    border-radius: 20px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-wrapper .form-title {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 600;
}

.contact-form-wrapper label {
    color: #ddd;
    margin-bottom: 8px;
    display: block;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 16px;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: #666;
}

.contact-form-wrapper .form-btn {
    margin-top: 20px;
    width: 100%;
    padding: 16px;
    background: #a0002e; /* цвет стиглой вишни */
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-wrapper .form-btn:hover {
    background: #c00038;
}

#formStatus {
    margin-top: 15px;
    color: #fff;
    text-align: center;
}
/* страница программы */
/* HERO (з фон-картинкою під заголовком) */
.programs-hero {
  position: relative;
  width: 100%;
  height: 650px;
  background-image: var(--bg-url);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.programs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.45));
  z-index: 1;
}

.programs-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}



.programs-subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: #ffb6c1;
  text-transform: lowercase;
}

/* SECTION with cards */
.programs-section {
  position: relative;
  padding: 60px 20px 100px;
  color: #fff;
  text-align: center;
  background: #000; /* або transparent, якщо фон треба інший */
}

/* GRID */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 30px auto 0;
}

/* CARD (без фото, фон самого блока/hero) */
.program-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: transform .25s ease, border-color .25s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: #b60037;
}

.program-content {
  padding: 22px;
  text-align: left;
}

.program-content h3 {
  margin: 0 0 12px;
  font-size: 20px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #e5e5e5 0%, #9c9c9c 45%, #ffffff 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.program-info {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.program-info a{
	color: #e84b75;
}

.program-time,
.program-price {
  font-size: 16px;
  font-weight: 600;
  color: #e84b75;
}

.program-desc {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 14px;
}

.program-btn {
  margin-top: 20px;
  display: inline-block;
  width: 50%;
  background: #b60037;
  padding: 12px 14px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .hero-title.programs-title { font-size: 34px; }
  .programs-hero { height: 300px; }
}

@media (max-width: 480px) {
  .hero-title.programs-title { font-size: 24px; }
  .programs-hero { height: 220px; }
  .program-info { flex-direction: column; align-items: flex-start; gap:6px; }
}

/*страница анкети*/
   .profile-slider {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn {
  background: none;
  border: none;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
}

.slider-btn:hover {
  color: #ff3b74;
}

/* КАРУСЕЛЬ */
.profiles-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.profile-card {
  width: 100%;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 20px;
  color: #fff;
  font-family: "Arial";
}

.profile-card.active {
  display: grid;
}

/* Ліва колонка */

.profile-left {
  text-align: center;
}

.profile-name {
  font-size: 48px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.main-photo {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  border: 5px solid #fff;
}

.main-photo img {
  width: 100%;
  object-fit: cover;
}


/* Середня колонка — BIO */

.block-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #ff3b74;
}

.bio-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
}

.bio-list span {
  color: #ff3b74;
}
.ankety-buton {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 26px;
    background: #b31249;
    color: #fff;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    border: 2px solid #000;
}

.ankety-buton:hover {
    background: #ff3b74;
    border-color: #ff3b74;
    color: #fff;
}

/* адаптивність */
@media (max-width: 480px) {
    .ankety-buton {
        font-size: 16px;
        padding: 12px 20px;
        width: 100%;
    }
}


/* Права колонка — Про мене */

.profile-right p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
}
/* ======== МОБІЛЬНА АДАПТИВНІСТЬ ======== */

@media (max-width: 900px) {
  .profile-card {
    grid-template-columns: 1fr;     /* все в один стовпець */
    text-align: center;
    gap: 20px;
    padding: 10px;
  }

  .profile-name {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .main-photo {
    width: 80%;
    margin: 0 auto;
    aspect-ratio: 1/1;
    border-width: 4px;
  }

  .main-photo img {
    width: 100%;
  }

  .block-title {
    font-size: 28px;
    margin-top: 20px;
  }

  .bio-list {
    font-size: 18px;
    line-height: 1.6;
  }

  .profile-right p {
    font-size: 18px;
    padding: 0 10px;
  }

  .slider-btn {
    font-size: 28px;
    padding: 6px;
  }
}

/* ======== ДУЖЕ МАЛІ ЕКРАНИ (iPhone SE, старі Android) ======== */
@media (max-width: 480px) {

  .main-photo {
    width: 95%;
  }

  .profile-name {
    font-size: 32px;
  }

  .block-title {
    font-size: 24px;
  }

  .bio-list {
    font-size: 16px;
  }

  .profile-right p {
    font-size: 16px;
  }

  .slider-btn {
    font-size: 24px;
  }
}
