* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f8f9fa;
    color: #333;
}

/* HEADER */
.remonto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.remonto-login-btn {
    padding: 8px 18px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.signup-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.primary-btn,
.secondary-btn {
    width: 260px;
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.primary-btn {
    background: #28a745;
    color: white;
    border: none;
}

.secondary-btn {
    background: white;
    color: #28a745;
    border: 2px solid #28a745;
}

/* ABOUT */
.about {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    background: #222;
    color: white;
    padding: 40px;
    gap: 25px;
}

.footer-box h3 {
    margin-bottom: 15px;
    color: #ffc107;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 8px;
    font-size: 14px;
}
.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background: #1f1f1f;
  color: #ddd;
  padding: 40px;
  gap: 60px;
}

.footer-box h3 {
  color: #f4b400;
  margin-bottom: 15px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-box a {
  color: #ddd;
  text-decoration: none;
}

.footer-box a:hover {
  color: #f4b400;
}

/* COPYRIGHT */
.copyright {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 12px;
  font-size: 14px;
}
.social.vertical {
  display: flex;
  flex-direction: column;   /* 👈 vertical */
  gap: 12px;
  margin-top: 15px;
}

.social.vertical a {
  width: 40px;
  height: 40px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.social.vertical a:hover {
  background: #f4b400;
  color: #000;
  transform: scale(1.1);
}
.social-floating {
  position: fixed;
  right: 15px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.social-floating a {
  width: 42px;
  height: 42px;
  background: #1f1f1f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.social-floating a:hover {
  background: #f4b400;
  color: black;
  transform: translateX(-5px);
}
