:root {
  --primary: #2f3e46;
  --secondary: #eef1f3;
  --text: #222;
  --muted: #666;
  --card: #ffffff;
  --border: #dddddd;
}

/* Global safety */
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

/* Page base */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: var(--text);
  line-height: 1.6;
}

/* Factsheet container */
.factsheet {
  max-width: 1100px;
  margin: 40px auto;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Conference header */
.conference-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  text-align: center;
}

/* REMOVE logo sizing completely */
.conference-header img {
  margin: 0 auto;
}

/* Full-width header variant */
.conference-header.full-header {
  padding: 0;
}

.conference-header.full-header img {
  width: 100%;
}


/* HOTEL HEADER 2-COLUMNS */
.header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 16px;
  align-items: start;
}

.header-left,
.header-right { 
  display: flex; 
  flex-direction: column; 
}

.hotel-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}









/* STAR RATINGS */


.stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.stars svg {
  width: 20px;
  height: 20px;
}

.plus {
  font-size: 16px;
  font-weight: bold;
  margin-left: 2px;
  color: #000;
}

.hotel-rating {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
}

.budget {
  background-color: transparent;
  padding: 0;
}







/* RIGHT COLUMN */
.header-right {
  align-items: flex-end;
  text-align: right;
}

.contact {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Image showcase */
.image-showcase {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 8px;
  overflow: hidden;
}

.image-showcase * { min-width: 0; }

.image-frame { 
  border: 1px solid #ccc; 
  overflow: hidden; 
  width: 100%; 
  height: 100%; 
}

.main-image .image-frame { aspect-ratio: 4 / 3; }

.main-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
}

.thumb-grid .image-frame { aspect-ratio: 1 / 1; }

.thumb-grid img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

/* Content cards */
.content { 
  display: grid; 
  grid-template-columns: 2fr 3fr; 
  gap: 30px; 
  padding: 32px; 
}

.opening { 
  grid-column: 1 / -1; 
}

.card { 
  background: var(--secondary); 
  padding: 20px; 
  border-radius: 6px; 
}

.card h3 { 
  margin: 0 0 10px; 
  font-size: 0.95rem; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
  color: var(--primary); 
}

/* Footer actions */
.actions { 
  text-align: center; 
  padding: 24px; 
  border-top: 1px solid var(--border); 
}

.actions a { 
  margin: 0 12px; 
  text-decoration: none; 
  font-weight: 600; 
  color: var(--primary); 
}

/* Responsive */
@media (max-width: 900px) { 
  .content { grid-template-columns: 1fr; } 
}

@media (max-width: 768px) { 
  .header { 
    grid-template-columns: 1fr; 
    gap: 12px; 
  } 
  
  .image-showcase { 
    grid-template-columns: 1fr; 
  } 
  
  .header-right { 
    align-items: flex-start; 
    text-align: left; 
  }
}

/* Print */
@media print { 
  body { background: #ffffff; } 
  .factsheet { margin: 0; box-shadow: none; } 
  .actions { display: none; } 
}