/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #ce5c38;
  --dark: #1a1a1a;
  --light: #f9f9f9;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
}

/* Header / Hero */
.hero {
  position: relative;
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  z-index: 10;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}
.logo span {
  color: var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero-content {
  z-index: 5;
  max-width: 700px;
}
.hero h1 {
  font-size: 3rem;
}
.hero p {
  margin: 20px 0;
}
.cta {
  padding: 10px 20px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}
.cta:hover {
  background: white;
  color: var(--accent);
}

/* Sections */
.section {
  padding: 80px 10%;
  text-align: center;
}
.section h2 {
  margin-bottom: 40px;
  font-size: 2.2rem;
}

/* Cards */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  background: white;
  font-weight: 600;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}

/* About */
.about, .reviews{
  background: var(--accent);
  color: #fff;
  border-radius: 20px 20px 0 0;
}

.reviews .card {
    color: #333;
    font-weight: 600;
}

.reviews .card:hover {
    transform: translateY(0px);
}

/* Projects */
.projects .project-gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.projects .project {
  width: 300px;
  height: 200px;
  background: #ddd;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
.projects .project:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1613545325278-cb6dfb5a12dd?auto=format&fit=crop&w=800&q=80'); }
.projects .project:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1581092334651-ddf26d9dbf92?auto=format&fit=crop&w=800&q=80'); }
.projects .project:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1523413651479-597eb2da0ad1?auto=format&fit=crop&w=800&q=80'); }

/* Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 2px solid var(--accent);
  border-radius: 5px;
  font-size: 1rem;
}
.contact-form button {
  padding: 10px;
  border: none;
  background: var(--accent);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #b14d2e;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 20px;
  text-align: center;
}

footer a {
    color: #ce5c38;
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
