/* -------------------------
   GLOBAL
--------------------------*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
  background: #f6f7f8;
  color: #222;
}

/* contenedor genérico */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* -------------------------
   HEADER (común a TODAS)
--------------------------*/

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.3));
  padding: 15px 0;
  z-index: 999;
  backdrop-filter: blur(8px);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* icono del logo (O + i) */
.brand-logo {
  width: 40px;
  height: 40px;
  background-image: url("img/logo-mark.png"); /* tu icono azul */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(1) brightness(1.8); /* lo vuelve blanco */
}

/* texto ONEMOVEON INVESTMENTS */
.brand-name {
  color: white;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* menú */
.nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: #dddddd;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 8px;
  transition: 0.2s;
}

.nav a:hover {
  color: white;
}

.nav a.active {
  background: white;
  color: black;
}

/* -------------------------
   HOME – HERO
--------------------------*/

.hero {
  height: 75vh;
  background-image: url("img/finikoudes.png");
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 85px;   /* misma separación que en services/contact */
}

.hero-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,0.9);
  padding: 35px;
  border-radius: 18px;
  max-width: 550px;
  margin-left: 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-tagline {
  color: #555;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.hero-card h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* -------------------------
   BARRA NARANJA
--------------------------*/

.info-bar {
  background: #ff6600;
  color: white;
  padding: 18px;
  text-align: center;
  font-weight: 500;
}

/* -------------------------
   HOME – CUADROS
--------------------------*/

.page {
  padding: 60px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.section p {
  text-align: center;
  margin-bottom: 40px;
  color: #444;
}

.grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* -------------------------
   SERVICES
--------------------------*/

.page-services {
  margin-top: 85px;          /* mismo que home */
  padding-bottom: 80px;
}

.service-intro {
  text-align: center;
  margin-bottom: 50px;
}

.service-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-text h2 {
  margin-bottom: 12px;
}

.service-image {
  flex: 1;
  height: 260px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-image.investment {
  background-image: url("img/investment.png");
}

.service-image.advisory {
  background-image: url("img/advisory.png");
}

.service-image.rental {
  background-image: url("img/rental.png");
}

.service-summary {
  text-align: center;
  color: #555;
  margin-top: 10px;
}

/* -------------------------
   CONTACT
--------------------------*/

.page-contact {
  margin-top: 85px;
  padding-bottom: 70px;
}

.contact-intro {
  text-align: center;
  margin-bottom: 50px;
}

.contact-grid {
  display: flex;
  gap: 50px;
}

.contact-card, .contact-details {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-card h2,
.contact-details h2 {
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.btn-submit {
  background: #005eff;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #003fd1;
}

.form-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 6px;
}

/* -------------------------
   FOOTER
--------------------------*/

.site-footer {
  text-align: center;
  padding: 25px;
  margin-top: 40px;
  color: #555;
  font-size: 0.9rem;
}
