@charset "utf-8";
/* CSS Document */

/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #111;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= CONTAINER ================= */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.logo a {
  font-size: 22px;
  font-weight: bold;
  color: #111;
}

.logo span {
  color: #d32f2f;
}

/* ================= NAV ================= */
.nav {
  position: relative;
}

/* Meniu */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;

  position: fixed;
  inset: 0;
  background: #111;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;

  transform: translateX(100%);
  transition: transform 0.35s ease;
}

/* link-uri */
.nav-menu a {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.nav-menu a.active {
  color: #d32f2f;
}

/* hamburger + close */
.hamburger,
.close-btn {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #111;
}

.close-btn {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  color: #fff;
  z-index: 1100;
}

/* meniu deschis */
.nav.is-open .nav-menu {
  transform: translateX(0);
}

.nav.is-open .close-btn {
  display: block;
}

.nav.is-open .hamburger {
  display: none;
}

/* ================= HERO ================= */
.hero {
  padding: 120px 16px 80px;
  background: linear-gradient(135deg, #d32f2f, #000);
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: #d32f2f;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #f2f2f2;
  transform: translateY(-2px);
}

/* ================= INTRO ================= */
.intro {
  padding: 60px 16px;
  text-align: center;
}

.intro h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.intro p {
  max-width: 700px;
  margin: 0 auto;
  color: #444;
}

/* ================= FOOTER ================= */
.site-footer {
  padding: 20px 16px;
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 14px;
}






/* ================= SERVICII ================= */
.hero-small {
  padding: 110px 16px 60px;
}

.services {
  padding: 60px 16px;
}

.services-grid {
  display: grid;
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card i {
  font-size: 36px;
  color: #d32f2f;
  margin-bottom: 14px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.service-card p {
  color: #444;
  font-size: 15px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}






/* ================= DESPRE ================= */
.about {
  padding: 60px 16px;
}

.about-inner {
  display: grid;
  gap: 30px;
}

.about-text h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.about-text p {
  color: #444;
  margin-bottom: 12px;
}

.about-image img {
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.1);
}






/* ================= CONTACT ================= */
.contact {
  padding: 60px 16px;
}

.contact-inner {
  display: grid;
  gap: 28px;
}

.contact-form {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 22px;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d32f2f;
  box-shadow: 0 0 0 4px rgba(211,47,47,0.12);
}

.btn-full {
  width: 100%;
}

.form-msg {
  margin-top: 12px;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  display: none;
}

.form-msg.ok {
  display: block;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: #1f7a3d;
}

.form-msg.err {
  display: block;
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.35);
  color: #a1261b;
}

/* info */
.contact-info {
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 22px;
}

.contact-info h2 {
  margin-top: 0;
  margin-bottom: 14px;
}

.contact-info p {
  margin: 10px 0;
  color: rgba(255,255,255,0.9);
}

.contact-info i {
  color: #d32f2f;
  margin-right: 8px;
}

.info-box {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.info-box h3 {
  margin: 0 0 8px;
}


































/* ================= DESKTOP ================= */
@media (min-width: 768px) {

  .hamburger,
  .close-btn {
    display: none !important;
  }

  .nav-menu {
    position: static;
    flex-direction: row;
    background: transparent;
    transform: none;
    gap: 24px;
  }

  .nav-menu a {
    color: #111;
    font-size: 16px;
    position: relative;
  }

  .nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #d32f2f;
    transition: width 0.3s ease;
  }

  .nav-menu a:hover::after,
  .nav-menu a.active::after {
    width: 100%;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 20px;
  }
	
	
	
	
	
	
	
	
	
	.services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
	
	
	
	
	
	.about-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

	
	
	
	
	
	.contact-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }



}












@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}




















