/* Palette Roonix : Noir, Blanc, Orange */ :root {
  --primary: #ff5e14;
  --dark: #151515;
  --light-grey: #f4f4f4;
  --text: #333;
  --white: #ffffff;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--white);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Header & Hero */
.rooftop-section {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0 80px 0;
  position: relative;
  text-align: center;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.logo span {
  color: var(--primary);
}
.phone-link {
  background: var(--primary);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
}
.rooftop-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.rooftop-imgs {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.rooftop-imgs img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
/* Services Sections */
.service-block {
  display: flex;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid #eee;
}
.service-block.reverse {
  flex-direction: row-reverse;
}
.service-text {
  flex: 1;
  padding: 20px;
}
.service-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.highlight {
  color: var(--primary);
}
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}
/* Footer */
footer {
  background: var(--dark);
  color: #bbb;
  padding: 60px 0 20px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h3 {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
}
.footer-grid a {
    color: white
}
.footer-grid a:hover {
    color:var(--primary)
}
.bottom-bar {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}
/* Responsive */
@media (max-width: 768px) {
  .rooftop-content h1 {
    font-size: 2rem;
  }
  .service-block, .service-block.reverse {
    flex-direction: column;
    padding: 40px 0;
  }
  .rooftop-imgs img {
    width: 100%;
    height: 200px;
  }
}