/*
Theme Name: Linoy Coil
Author: Linoy Goldfield
Version: 1.0
*/

/* =====================
   RESET & BASE
===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  background-color: #080810;
  color: #ffffff;
  font-family: 'Heebo', 'Arial Hebrew', Arial, sans-serif;
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #c9a84c;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #e8c96e;
}

/* =====================
   ANIMATION
===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================
   MAIN BLOCK
===================== */
.page-block {
  min-height: 100vh;
  background-color: #080810;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.page-content {
  max-width: 640px;
  width: 100%;
  text-align: center;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* =====================
   NAME TITLE
===================== */
.name-title {
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* =====================
   MISSION
===================== */
.mission-label {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 400;
  color: #666;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.mission-headline {
  font-size: clamp(1.5rem, 4.5vw, 2.6rem);
  font-weight: 800;
  color: #c9a84c;
  line-height: 1.3;
  margin-bottom: 48px;
}

/* =====================
   BODY TEXT
===================== */
.body-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.body-text p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #8888aa;
  line-height: 1.9;
  font-weight: 300;
}

.body-text .closing {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #ffffff;
  font-weight: 600;
  padding-top: 8px;
}

/* =====================
   SOCIAL ICONS
===================== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: #888;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.social-links a:hover {
  border-color: #c9a84c;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.07);
}

/* =====================
   FOOTER
===================== */
footer {
  background-color: #080810;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px 20px;
  text-align: center;
}

.footer-links {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: #444;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #c9a84c;
}

.footer-copy {
  font-size: 0.78rem;
  color: #333;
}

/* =====================
   INNER PAGES
===================== */
.inner-page {
  min-height: 100vh;
  background-color: #080810;
  display: flex;
  align-items: flex-start;
  padding: 80px 24px 60px;
}

.inner-page .page-content {
  text-align: right;
}

.back-link {
  display: inline-block;
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 36px;
  transition: color 0.2s;
}

.back-link:hover {
  color: #c9a84c;
}

.inner-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
}

.divider {
  width: 40px;
  height: 2px;
  background: #c9a84c;
  margin-bottom: 40px;
  border-radius: 2px;
  opacity: 0.5;
}

.inner-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inner-text h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #c9a84c;
  margin-top: 10px;
}

.inner-text p {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: #8888aa;
  line-height: 1.9;
  font-weight: 300;
}

.updated {
  font-size: 0.82rem !important;
  color: #444 !important;
  margin-top: 16px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 480px) {
  .page-block {
    padding: 60px 20px;
  }
}
