:root {
  --bg: #f8f7fc;
  --surface: #ffffff;
  --surface-soft: #f1edff;
  --line: rgba(98, 82, 181, 0.14);
  --text: #1d2340;
  --muted: #697289;
  --accent: #6f5bff;
  --accent-dark: #4b2bd6;
  --accent-2: #b8a8ff;
  --accent-soft: #ece8ff;
  --shadow: 0 20px 50px rgba(86, 67, 163, 0.1);
  --shadow-strong: 0 30px 80px rgba(86, 67, 163, 0.18);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(184, 168, 255, 0.28), transparent 34%),
    radial-gradient(circle at top right, rgba(111, 91, 255, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

/* HEADER */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}


.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
   width: 210px;
  height: auto;
  display: block;
  
}
@media (max-width: 520px) {
  .logo img {
    width: 170px;
   
  }
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 750;
  color: #3d4358;
  transition: 0.25s ease;
}

nav a:hover {
  color: var(--accent);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

#mainNav {
  margin-left: auto;
}

#mainNav ul {
  display: flex;
  align-items: center;
  gap: 26px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 18px;
}

.lang-switch a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: #6f5bff;
  padding: 6px 11px;
  border: 1px solid rgba(111, 91, 255, 0.25);
  border-radius: 999px;
  background: rgba(111, 91, 255, 0.07);
  transition: 0.2s ease;
}

.lang-switch a:hover,
.lang-switch a.active {
  background: #6f5bff;
  color: #fff;
}

.menu-toggle {
  display: none;
  border: none;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
  border-radius: 14px;
  padding: 8px 14px;
  cursor: pointer;
  line-height: 1;
}

/* HERO */

.hero {
  padding: 92px 0 72px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 26px;
  box-shadow: 0 12px 30px rgba(86, 67, 163, 0.06);
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 5.6vw, 5.25rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #4f586f;
  font-size: 1.08rem;
  line-height: 1.75;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid rgba(111, 91, 255, 0.18);
  background: linear-gradient(135deg, var(--accent), #8b74ff);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(111, 91, 255, 0.28);
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(111, 91, 255, 0.34);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  box-shadow: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.stat {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(86, 67, 163, 0.07);
}

.stat strong {
  display: block;
  color: var(--accent);
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.stat span {
  color: #5d667c;
  line-height: 1.55;
}

/* HERO MOCKUP */

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}

.browser-mockup {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(111, 91, 255, 0.16);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.browser-top {
  display: flex;
  gap: 8px;
  padding: 8px 6px 18px;
}

.browser-top span {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 50%;
  background: #d8d1ff;
}

.mockup-content {
  background: linear-gradient(135deg, #f7f4ff, #ffffff);
  border-radius: 24px;
  padding: 24px;
  min-height: 380px;
  border: 1px solid rgba(111, 91, 255, 0.12);
}

.mockup-header {
  width: 72%;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6f5bff, #9b8cff);
  margin-bottom: 24px;
  box-shadow: 0 14px 30px rgba(111, 91, 255, 0.25);
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mockup-card {
  min-height: 125px;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(86, 67, 163, 0.14);
}

.mockup-card.large {
  grid-column: span 2;
  min-height: 165px;
  background:
    linear-gradient(rgba(30, 24, 80, 0.38), rgba(30, 24, 80, 0.38)),
    url("assets/images/Restaurant/Header Restaurantsite.jpg") center/cover;
}

.mockup-card.beauty {
  background:
    linear-gradient(rgba(30, 24, 80, 0.32), rgba(30, 24, 80, 0.32)),
    url("assets/images/Beauty/HeaderBeauty.jpg") center/cover;
}

.mockup-card.service {
  background:
    linear-gradient(rgba(30, 24, 80, 0.32), rgba(30, 24, 80, 0.32)),
    url("assets/images/Services/HeaderServices.jpg") center/cover;
}

.mockup-card p {
  margin: 0;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 850;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.38);
}

.floating-card {
  position: absolute;
  z-index: 5;
  background: #ffffff;
  color: #1d2340;
  font-weight: 850;
  font-size: 0.88rem;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(86, 67, 163, 0.16);
  border: 1px solid rgba(111, 91, 255, 0.12);
  white-space: nowrap;
}

.top-card {
  top: 58px;
  right: -24px;
}

.bottom-card {
  left: -30px;
  bottom: 54px;
}

/* SECTIONS */

section {
  padding: 80px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.section-head p {
  color: var(--muted);
  line-height: 1.7;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: linear-gradient(135deg, #ffffff, #f2eeff);
  border: 1px solid #e4ddff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.08);
}

.card h2,
.card h3 {
  margin-top: 0;
}

.card h3 {
  color: var(--accent);
}

.card p {
  color: var(--muted);
  line-height: 1.65;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

/* PORTFOLIO */

.portfolio-slider-wrap {
  position: relative;
}

.portfolio-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 4px 20px;
  scrollbar-width: none;
}

.portfolio-slider::-webkit-scrollbar {
  display: none;
}

.portfolio-item {
  min-width: 340px;
  max-width: 340px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portfolio-cover {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #ece8ff;
}

.portfolio-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.portfolio-item:hover .portfolio-cover img {
  transform: scale(1.05);
}

.portfolio-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  font-weight: 850;
  font-size: 0.85rem;
}

.portfolio-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-content p {
  margin-bottom: 18px;
}

.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 13px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6f5bff, #9b7cff);
  color: #ffffff;
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(111, 91, 255, 0.32);
  transition: 0.25s ease;
}

.project-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #5a46e8, #8364ff);
  box-shadow: 0 18px 38px rgba(111, 91, 255, 0.42);
}

.slider-btn {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: var(--accent);
  font-size: 2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: 0.25s ease;
}

.slider-btn:hover {
  background: var(--accent);
  color: #ffffff;
}

.slider-btn-prev {
  left: -20px;
}

.slider-btn-next {
  right: -20px;
}

/* SPLIT */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.check-list {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

/* TIMELINE */

.timeline {
  display: grid;
  gap: 20px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.step h3 {
  margin: 0 0 8px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #9b7cff);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

/* ABOUT */

.about-box {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: center;
}

.profile img {
  border-radius: 24px;
  width: 100%;
  height: 360px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(124, 92, 255, 0.15);
}

/* CONTACT */

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-list {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.contact-item {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  background: #ffffff;
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(111, 91, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(111, 91, 255, 0.1);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* FOOTER */

footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-logo img {
    height: 80px;
  width: auto;
  max-width: 180px;
}

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

.footer-links a {
  color: var(--accent);
  font-weight: 750;
  font-size: 14px;
}

.footer-bottom {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #777f94;
}

/* RESPONSIVE */

@media (max-width: 950px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(86, 67, 163, 0.16);
  }

  nav.active {
    display: block;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .hero-grid,
  .split,
  .about-box,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 100%;
    margin: 40px auto 0;
  }

  .grid-3,
  .stats {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }

  .slider-btn {
    display: none;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .logo img {
    width: 145px;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .mockup-content {
    min-height: 320px;
    padding: 18px;
  }

  .portfolio-item {
    min-width: 86%;
    max-width: 86%;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .profile img {
    height: 300px;
  }
}

