/* Roze Mobility — simple marketing one-pager (no frameworks) */
:root{
  --bg:#0b0c10;
  --text:#eef0f6;
  --muted:#b9bfd3;
  --line:rgba(255,255,255,.12);
  --accent:#c80000; /* Swiss red */
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;}
a{color:inherit;text-decoration:none}
.container{width:min(1120px, 92vw);margin:0 auto}

.topbar{position:sticky;top:0;z-index:10;background:rgba(11,12,16,.75);backdrop-filter: blur(10px);border-bottom:1px solid var(--line)}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:20px}
.brand{display:flex;align-items:center;gap:12px}
.brand__mark{width:40px;height:40px;border-radius:12px;background:var(--accent);position:relative;box-shadow:var(--shadow)}
.brand__mark:before,.brand__mark:after{content:"";position:absolute;background:#fff}
.brand__mark:before{width:10px;height:26px;left:15px;top:7px;border-radius:2px}
.brand__mark:after{width:26px;height:10px;left:7px;top:15px;border-radius:2px}
.brand__name{font-weight:800;letter-spacing:.2px}
.brand__tag{font-size:12px;color:var(--muted)}
.nav{display:flex;align-items:center;gap:16px;font-size:14px;color:var(--muted)}
.nav a:hover{color:var(--text)}

.btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;border-radius:14px;background:var(--accent);color:#fff;font-weight:700;border:1px solid rgba(255,255,255,.10);box-shadow:var(--shadow)}
.btn--ghost{background:transparent;border:1px solid rgba(255,255,255,.18);color:var(--text)}
.btn--sm{padding:10px 12px;border-radius:12px}

.hero{padding:54px 0 30px;background: radial-gradient(1200px 600px at 20% 10%, rgba(200,0,0,.22), transparent 60%), radial-gradient(900px 500px at 70% 0%, rgba(90,180,255,.18), transparent 65%)}
.hero__grid{display:grid;grid-template-columns: 1.1fr .9fr;gap:26px;align-items:center}
.kicker{display:inline-block;margin-bottom:10px;padding:8px 10px;border-radius:999px;border:1px solid var(--line);background:rgba(255,255,255,.05);color:var(--muted);font-size:12px}
.hero h1{font-size:42px;line-height:1.05;margin:0 0 12px}
.accent{color:#ffdfdf}
.lead{font-size:16px;line-height:1.5;color:var(--muted);margin:0 0 18px}
.hero__cta{display:flex;gap:12px;flex-wrap:wrap}
.hero__media img{width:100%;border-radius:var(--radius);border:1px solid var(--line);box-shadow:var(--shadow);object-fit:cover}

.stats{display:grid;grid-template-columns: repeat(2, minmax(0, 1fr));gap:10px;margin-top:16px}
.stat{padding:12px 12px;border-radius:16px;border:1px solid var(--line);background:rgba(255,255,255,.05)}
.stat__v{font-weight:900;font-size:18px}
.stat__k{color:var(--muted);font-size:12px;margin-top:4px}
.fineprint{color:var(--muted);font-size:12px;margin-top:10px}

.section{padding:54px 0;border-top:1px solid var(--line)}
.section--dark{background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));}
h2{font-size:28px;margin:0 0 12px}
.cards{display:grid;grid-template-columns: repeat(3, 1fr);gap:14px;margin-top:14px}
.card{background:rgba(255,255,255,.04);border:1px solid var(--line);border-radius:var(--radius);padding:16px;box-shadow:var(--shadow)}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted);line-height:1.5}

.grid2{display:grid;grid-template-columns: 1fr 1fr;gap:14px;margin-top:14px}

.split{display:grid;grid-template-columns: 1.05fr .95fr;gap:18px;align-items:start}
.list{margin:12px 0 0;padding-left:18px;color:var(--muted);line-height:1.6}
.note{margin-top:14px;padding:14px 14px;border-radius:16px;background:rgba(200,0,0,.10);border:1px solid rgba(200,0,0,.30);color:#f2dede}

.mediaGrid{display:grid;grid-template-columns: 1fr;gap:12px}
.mediaCard{margin:0;background:rgba(255,255,255,.04);border:1px solid var(--line);border-radius:var(--radius);padding:10px}
.mediaCard img{width:100%;border-radius:14px;border:1px solid rgba(255,255,255,.10)}
.mediaCard figcaption{font-size:12px;color:var(--muted);margin-top:8px}

.full{
    overflow:hidden; /* THIS is the missing piece */
  width:100%;
  display:block;
  aspect-ratio: 16 / 9;          /* keeps consistent visual height */
  object-fit: cover;             /* image & video behave the same */
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-top: 10px;
  background:#000;               /* avoids flashes for video */
}

.full img,
.full video{
  width:100%;
  height:100%;
  object-fit: cover;
}
.muted{color:var(--muted)}

.tableWrap{overflow:auto;border-radius:var(--radius);border:1px solid var(--line)}
table{width:100%;border-collapse:collapse;background:rgba(255,255,255,.03)}
th,td{padding:12px 12px;border-bottom:1px solid var(--line);text-align:left;vertical-align:top}
th{background:rgba(255,255,255,.06)}
tbody tr:hover{background:rgba(255,255,255,.03)}

.contactGrid{display:grid;grid-template-columns: 1fr 1fr;gap:14px;margin-top:14px}
.footer{margin-top:18px;color:var(--muted);font-size:12px}

@media (max-width: 920px){
  .photoGrid2{grid-template-columns:1fr}

  .hero__grid,.split,.grid2{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .nav{display:none}
  .contactGrid{grid-template-columns:1fr}
  .hero h1{font-size:34px}
  .stats{grid-template-columns:1fr}
}


.pill{
  display:inline-block;
  margin-left:8px;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--muted);
  font-size:11px;
}

.sectionMedia{margin-top:16px}
.caption{margin-top:10px;color:var(--muted);font-size:12px}

.photoGrid2{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:14px}

.photoCard {
  margin: 0;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow);
}

.photoCard img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .10);
  object-fit: cover;
}

.photoCard figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* Specific styles for landscape and portrait images */
.photoCard--landscape img {
  height: 300px; /* Adjust as needed for landscape */
  object-fit: cover;
}

.photoCard--portrait img {
  height: 400px; /* Taller height for portrait images */
  object-fit: cover;
}


.photoCard {
  margin: 0;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photoCard:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


/* =========================
   Equal size grid images
   ========================= */

.testingGrid img, video {
  width: 100%;
  height: 300px;      /* fixed height for uniform cards */
  object-fit: cover;  /* crop to fill */
  border-radius: var(--radius);
}



@media (max-width: 920px) {
  .testingGrid img {
    height: 240px; /* slightly smaller on mobile */
  }
}


.photoCard--landscape .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.photoCard--landscape img {
  width: 100%;
  height: 300px;  /* Adjust the height for a larger landscape image */
  object-fit: cover;
}

.photoCard--landscape .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);  /* Subtle dark overlay */
  border-radius: var(--radius);
}


/* Portrait Image (Aeropole) */
.photoCard--portrait img {
  width: 100%;
  height: 650px;  /* Taller height for the portrait image */
  object-fit: cover;
  border-radius: var(--radius);
}

/* Caption Styles */
.photoCard figcaption {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}


html {
  scroll-behavior: smooth; /* Enable smooth scrolling */
}



a {
  color: inherit;
  text-decoration: none;
}
.nav a:hover {
  color: var(--accent);
  transition: color 0.3s ease;
}
/* Additional text style */




/* =========================
   Location section side-by-side
   ========================= */

#location h2 {
 /* text-align: center;*/
  margin-bottom: 20px;
}

/* Two-column grid, aligned top */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 16px;
}

/* Blocks internal layout */
.location__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Force uniform image height so both blocks align */
.location__block .photoCard img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Captions */
.location__block figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* Text below each image */
.location__lead {
  text-align: center;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

/* Responsive: on narrow screens stack */
@media (max-width: 920px) {
  .location__grid {
    grid-template-columns: 1fr;
  }
}




.brand__logo{height:40px;width:40px;object-fit:contain;border-radius:10px;background:transparent;padding:0;box-shadow:none;display:block}

/* swissCross removed */ .swissCross{
  width:18px;height:18px;border-radius:6px;
  background:var(--accent);
  display:inline-block;position:relative;
  margin-right:8px;flex:0 0 auto;
}
/* swissCross removed */ .swissCross:before,/* swissCross removed */ .swissCross:after{content:"";position:absolute;background:#fff;border-radius:2px}
/* swissCross removed */ .swissCross:before{width:4px;height:12px;left:7px;top:3px}
/* swissCross removed */ .swissCross:after{width:12px;height:4px;left:3px;top:7px}

.partnerLine{margin:6px 0 10px;color:var(--muted);font-size:13px}

.brand__mark{display:none!important}

.subhead{margin:0 0 10px;font-size:13px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}


/* Contact Section Styling */
#contact .container {
  text-align: center; 
}

#contact h2 {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 16px;
}

#contact .lead {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
}

.contactGrid {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.contactCard {
  background: rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 350px;
}

.contactCard h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.contactCard p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.contactCard .contact-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contactCard .contact-link:hover {
  text-decoration: underline;
}

.footer {
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
}

.footer span {
  font-weight: bold;
}
