:root {
  --black: #101114;
  --dark: #17191f;
  --gray: #6d7280;
  --light: #f5f5f2;
  --white: #ffffff;
  --gold: #c79a3b;
  --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--light);
  line-height: 1.6;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7%;
  background: rgba(16,17,20,.82);
  backdrop-filter: blur(14px);
  color: white;
}

.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .3px; }
.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 24px;
}

.nav { display: flex; gap: 28px; font-size: 15px; }
.nav a { opacity: .88; transition: .25s; }
.nav a:hover { color: var(--gold); opacity: 1; }
.menu-btn { display: none; background: none; border: 0; color: white; font-size: 30px; }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 7% 80px;
  color: white;
  background:
    linear-gradient(120deg, rgba(16,17,20,.92), rgba(16,17,20,.45)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.hero-content { max-width: 820px; position: relative; z-index: 2; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 2.5px; font-weight: 700; font-size: 13px; }
h1 { font-size: clamp(42px, 7vw, 86px); line-height: 1.05; margin: 12px 0 20px; }
h2 { font-size: clamp(30px, 4vw, 54px); line-height: 1.15; margin: 8px 0 18px; }
h3 { margin: 0 0 10px; }
.hero-text { max-width: 680px; font-size: 20px; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .25s;
}
.primary { background: var(--gold); color: #17130a; }
.primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.secondary { border-color: rgba(255,255,255,.55); color: white; }
.secondary:hover { background: white; color: var(--black); }

.stats {
  margin: -55px auto 0;
  width: 86%;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,.14);
}
.stats div { padding: 30px; border-right: 1px solid #eee; }
.stats strong { display: block; font-size: 38px; }
.stats span { color: var(--gray); }

.section { padding: 100px 7%; }
.section-head { max-width: 860px; margin-bottom: 44px; }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: start; }
.about-grid p { font-size: 18px; color: #3c4048; }
.about-card { background: white; border-radius: 24px; padding: 34px; box-shadow: 0 15px 45px rgba(0,0,0,.08); }
.about-card li { margin-bottom: 12px; }

.dark { background: var(--dark); color: white; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  min-height: 210px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.065);
  border: 1px solid var(--line);
  transition: .25s;
}
.card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.card p { color: rgba(255,255,255,.72); }

.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project { background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 15px 45px rgba(0,0,0,.08); }
.project h3, .project p { padding: 0 24px; }
.project p { padding-bottom: 20px; color: var(--gray); }
.project-img { height: 260px; background-size: cover; background-position: center; }
.img1 { background-image: url('https://images.unsplash.com/photo-1541976590-713941681591?auto=format&fit=crop&w=900&q=80'); }
.img2 { background-image: url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=900&q=80'); }
.img3 { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=900&q=80'); }

.rent { background: #ecebe6; }
.rent-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rent-list div { background: white; border-radius: 18px; padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.rent-list strong { color: var(--gold); }

.cta { text-align: center; padding: 90px 7%; color: white; background: linear-gradient(120deg, #101114, #303238); }
.cta p { color: rgba(255,255,255,.75); font-size: 18px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; }
.contact-info, .form { background: white; padding: 34px; border-radius: 24px; box-shadow: 0 15px 45px rgba(0,0,0,.08); }
.form { display: grid; gap: 14px; }
input, textarea { width: 100%; padding: 15px 17px; border: 1px solid #ddd; border-radius: 14px; font-size: 16px; font-family: inherit; }
textarea { resize: vertical; }

.footer { text-align: center; padding: 28px 7%; background: var(--black); color: rgba(255,255,255,.72); }

@media (max-width: 900px) {
  .menu-btn { display: block; }
  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 20px 7%;
    background: rgba(16,17,20,.96);
  }
  .nav.open { display: flex; }
  .stats, .cards, .projects, .rent-list, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats { margin-top: 0; width: 100%; border-radius: 0; }
  .section { padding: 70px 7%; }
}


/* ==========================================
   PROJECT CARDS (Նախագծերի քարտեր)
   ========================================== */

/* Ցանցի դասավորվածությունը (Grid) */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* Քարտի հիմնական ոճը */
.project-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none; /* Հեռացնում է հղման տակի գիծը */
  color: inherit;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid #eef0f2;
}

/* Էֆեկտ՝ մկնիկը քարտի վրա պահելիս */
.project-card:hover {
  transform: translateY(-6px); /* Քարտը թեթևակի բարձրանում է */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Քարտի նկարի կոնտեյները */
.project-card .project-img,
.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover; /* Նկարը չի ծռվում, լրացնում է տարածքը */
  display: block;
  transition: transform 0.5s ease;
}

/* Նկարի մեծացման էֆեկտը hover-ի ժամանակ */
.project-card:hover img {
  transform: scale(1.05);
}

/* Տեքստային հատվածը քարտի ներսում */
.project-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin: 18px 20px 8px 20px;
  line-height: 1.3;
}

.project-card p {
  font-size: 0.95rem;
  color: #0066cc; /* Հղման սլաքի գույնը (կարող ես փոխել քո բրենդի գույնով) */
  font-weight: 500;
  margin: 0 20px 20px 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Հարմարեցում հեռախոսների համար (Responsive) */
@media (max-width: 768px) {
  .projects {
    grid-template-columns: 1fr; /* Հեռախոսի վրա 1 սյունակով */
    gap: 20px;
  }
  
  .project-card .project-img,
  .project-card img {
    height: 200px;
  }
}