/* Icons of Hospitality — Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --ioh-red: #C41E2A;
  --ioh-dark-red: #8B1520;
  --ioh-gold: #C9A84C;
  --ioh-dark-gold: #A68B3A;
  --ioh-cream: #FAF7F2;
  --ioh-warm-white: #FEFCF9;
  --ioh-charcoal: #2C2C2C;
  --ioh-dark: #1A1A1A;
  --ioh-text: #3D3D3D;
  --ioh-text-light: #6B6B6B;
  --ioh-border: #E8E2D8;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  color: var(--ioh-text);
  background: var(--ioh-cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ioh-border);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(250, 247, 242, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

nav .nav-logo img {
  height: 40px;
}

nav .nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav .nav-links a {
  text-decoration: none;
  color: var(--ioh-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav .nav-links a:hover,
nav .nav-links a.active {
  color: var(--ioh-red);
}

nav .nav-wagen {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--ioh-text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav .nav-wagen img {
  height: 22px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ioh-charcoal);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  background: linear-gradient(rgba(26,26,26,0.55), rgba(26,26,26,0.65)), url('../images/hero-lobby.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.hero-logo {
  width: 320px;
  max-width: 80%;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  filter: brightness(0) invert(1);
}

.hero-tagline {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--ioh-gold);
  margin: 30px auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
}

.hero-by {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.hero-by img {
  height: 28px;
  filter: brightness(0) invert(1);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ioh-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--ioh-charcoal);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title span {
  color: var(--ioh-red);
}

.section-divider {
  width: 50px;
  height: 2px;
  background: var(--ioh-gold);
  margin-bottom: 30px;
}

.section-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ioh-text);
  max-width: 700px;
  margin-bottom: 20px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-quote {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ioh-text);
  border-left: 3px solid var(--ioh-gold);
  padding-left: 24px;
  margin: 30px 0;
  line-height: 1.6;
}

/* ===== ICONS GALLERY ===== */
.icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.icon-card {
  background: var(--ioh-warm-white);
  border: 1px solid var(--ioh-border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: var(--ioh-gold);
}

.icon-card-image {
  height: 320px;
  background-size: cover;
  background-position: center top;
  position: relative;
}

.icon-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.icon-card-quarter {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--ioh-red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}

.icon-card-body {
  padding: 24px;
}

.icon-card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ioh-charcoal);
  margin-bottom: 6px;
}

.icon-card-role {
  font-size: 13px;
  color: var(--ioh-text-light);
  margin-bottom: 4px;
}

.icon-card-hotel {
  font-size: 13px;
  font-weight: 600;
  color: var(--ioh-red);
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: var(--ioh-warm-white);
  border: 1px solid var(--ioh-border);
  border-radius: 6px;
  padding: 40px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--ioh-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--ioh-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: white;
}

.benefit-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ioh-charcoal);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: var(--ioh-text-light);
  line-height: 1.7;
}

.benefit-highlight {
  display: inline-block;
  background: rgba(196, 30, 42, 0.08);
  color: var(--ioh-red);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 14px;
}

/* ===== HOW IT WORKS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--ioh-gold);
  margin-bottom: 16px;
  line-height: 1;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ioh-charcoal);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--ioh-text-light);
  line-height: 1.6;
}

/* ===== LATEST ICON FEATURE ===== */
.featured-icon {
  background: var(--ioh-dark);
  margin: 0 -40px;
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  max-width: 100vw;
  box-sizing: border-box;
}

.featured-icon-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.featured-icon-content .section-label {
  color: var(--ioh-gold);
}

.featured-icon-content .section-title {
  color: white;
}

.featured-icon-content .section-text {
  color: rgba(255,255,255,0.8);
}

.featured-icon-content .icon-card-hotel {
  color: var(--ioh-gold);
  font-size: 15px;
}

.btn-read-more {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: var(--ioh-red);
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s;
}

.btn-read-more:hover {
  background: var(--ioh-dark-red);
  transform: translateY(-2px);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--ioh-red);
  margin: 0 -40px;
  padding: 80px;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--serif);
  font-size: 36px;
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: var(--ioh-red);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
footer {
  background: var(--ioh-dark);
  padding: 60px 40px;
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4 {
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--ioh-gold);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}

.footer-socials a:hover {
  border-color: var(--ioh-gold);
  background: rgba(201, 168, 76, 0.1);
}

.footer-socials a:hover svg {
  fill: var(--ioh-gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-wagen {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-wagen img {
  height: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  nav { padding: 0 20px; }
  nav .nav-links { display: none; }
  .nav-toggle { display: block; }

  .hero { padding: 100px 20px 60px; }
  .hero-logo { width: 240px; }
  .hero-tagline { font-size: 18px; }

  section { padding: 60px 20px; }
  .section-title { font-size: 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .icons-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }

  .featured-icon {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    margin: 0;
  }

  .featured-icon-image {
    text-align: center;
  }

  .featured-icon-image img {
    max-width: 180px !important;
  }

  .cta-banner { padding: 60px 20px; margin: 0 -20px; }
  .cta-banner h2 { font-size: 28px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-logo { width: 200px; }
  .section-title { font-size: 26px; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ===== PROFILE PAGES ===== */
.profile-hero { min-height: 50vh; display: flex; align-items: flex-end; padding: 60px 40px; background-size: cover; background-position: center top; position: relative; }
.profile-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(26,26,26,0.8)); }
.profile-hero-content { position: relative; z-index: 1; max-width: 700px; }
.profile-hero-content h1 { font-family: var(--serif); font-size: 48px; color: white; font-weight: 700; margin-bottom: 8px; }
.profile-hero-content .profile-role { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 4px; }
.profile-hero-content .profile-hotel { font-size: 16px; color: var(--ioh-gold); font-weight: 600; }

.profile-body { max-width: 800px; margin: 0 auto; padding: 60px 40px; }
.profile-meta { display: flex; gap: 30px; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid var(--ioh-border); }
.profile-meta-item { text-align: center; }
.profile-meta-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--ioh-gold); margin-bottom: 4px; }
.profile-meta-value { font-size: 14px; color: var(--ioh-charcoal); font-weight: 600; }

.profile-text { font-size: 17px; line-height: 1.9; color: var(--ioh-text); margin-bottom: 20px; }
.profile-quote { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--ioh-charcoal); border-left: 3px solid var(--ioh-gold); padding: 20px 30px; margin: 40px 0; line-height: 1.6; background: var(--ioh-warm-white); }
.profile-back { display: inline-block; margin-top: 30px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--ioh-red); text-decoration: none; }
.profile-back:hover { color: var(--ioh-dark-red); }

@media (max-width: 968px) {
  .profile-hero { min-height: 40vh; padding: 40px 20px; }
  .profile-hero-content h1 { font-size: 32px; }
  .profile-body { padding: 40px 20px; }
  .profile-meta { flex-wrap: wrap; gap: 20px; }
  .profile-quote { font-size: 18px; padding: 16px 20px; }
}
