html {
  box-sizing: border-box;
}

*,
*::before, 
*::after {
  box-sizing: inherit;
}


:root {
  --primary: #2461a6;
  --secondary: #f7f7fa;
  --accent: #e8b04a;
  --danger: #d9534f;
  --text: #100f0f;
  --border: #eaeaea;
  --radius: 6px;
  --shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 100%;
}


h1, h2, h3 {
  margin-top: 0.7em;
  margin-bottom: 0.5em;
}

.btn {
  font-size: 1rem;
  padding: 7px 16px;
  border-radius: 5px;
  margin-right: 8px;
  margin-top: 6px;
}

.page-header {
  margin: 18px 0 10px 0;
}

.page-header h1, .page-header h2 {
  font-size: 2rem;
}

.page-content {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

header {
  padding: 0 0 8px 0;
  background: #217dbb;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  main {
    max-width: 1300px;
    padding: 0 24px;
  }
  .btn {
    font-size: 1.1rem;
    padding: 9px 20px;
  }
  .page-header h1, .page-header h2 {
    font-size: 2.5rem;
  }
}

body {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: var(--secondary);
  color: var(--text);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #232427;
}

header {
  background-color: rgba(255,255,255,0.12);
  padding: 0.5rem 0;
  box-shadow: var(--shadow);
}

.header-logo-container {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2rem;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0 2rem;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav ul li {
  display: inline-block;
}

nav a, nav button {
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
}
img{
  color: white;
}

nav a:hover, nav button:hover {
  background: rgba(255,255,255,0.12);
}

main {
  max-width: 100%;
  margin: 2rem auto 0 auto;
  padding: 2rem;
  background-color: #f8f9fc;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

h1, h2, h3 {
  color: var(--primary);
  margin-top: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  text-decoration: underline;
  color: var(--accent);
}

button, .btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover, .btn:hover {
  background: var(--accent);
  color: #222;
}

.red-text {
  color: var(--danger);
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

/* Navigation Bar Styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-left {
  margin-right:10px;
}

.nav-right {
  margin-left: 850px; 
}
.nav-right1 {
  margin-left: 800px; 
}

.navbar-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

/* Hamburger */
.nav-brand { display:flex; align-items:center; gap:1rem; }
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:.5rem; }
.nav-toggle .bar { width:25px; height:3px; background:#fff; border-radius:2px; transition:transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

.nav-menus { display:flex; gap:2rem; align-items:center; }

@media (max-width: 900px) {
  .nav-menus {
    flex-direction: column;
    position: fixed;
    top: 56px; /* height of navbar, adjust if needed */
    left: 0;
    right: 0;
    background: #1d1f21;
    padding: 1rem 1.25rem 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
    display: none;
    z-index: 1001;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  }
  .nav-menus.open { display: flex; }
  .nav-left, .nav-right { flex-direction: column; gap: .75rem; width: 100%; }
  .nav-right { margin-left: 0; }
  .nav-toggle { display: flex; z-index: 1100; }
  .navbar-split { position: relative; padding: .75rem 1rem; z-index: 1100; }
  nav a, nav button { width: 100%; text-align: left; }
}

/* Improve footer stacking earlier */
@media (max-width: 900px) {
  .footer-container { flex-direction:column; padding:0 1rem; }
}

.nav-left,
.nav-right {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* Remove these duplicate/redundant nav ul styles: */
/*
nav ul {
  gap: 8px;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-end;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
*/

/* Use only this for nav ul if you want a base style: */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* Responsive */
@media (max-width: 700px) {
  main {
    padding: 1rem;
    margin: 0.5rem;
  }
  nav ul {
    gap: 0.7rem;
    margin: 0 0.5rem;
  }
} 
.site-footer {
  background: #232427;
  color: #e7e7e7;
  padding: 2.5rem 0 0.5rem 0;
  font-size: 1rem;
  border-top: 1px solid #232427;
  margin-top: 2rem;
}
.footer-social a,
.footer-payments img {
  margin-right: 10px;
}

.footer-container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 2rem;
  background-color: #222;
}
.footer-col {
  min-width: 180px;
  flex: 1;
  margin-bottom: 1.2rem;
}
.footer-col h4 {
  font-size: 1.04em;
  margin-bottom: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
}
.footer-amenities,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-amenities li,
.footer-links li {
  display: flex;
  align-items: center;
  margin-bottom: 0.7em;
  font-size: 1em;
  color: #e7e7e7;
}
.footer-amenities img,
.footer-social img,
.footer-payments img {
  width: 50px;
  height: 50px;
  margin-right: 0.75em;
  background: #444;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
}
.footer-social a {
  margin-right: 1em;
  display: inline-block;
  transition: opacity 0.2s;
}
.footer-social a:hover {
  opacity: 0.7;
}
.footer-payments img {
  width: 45px;
  height: 35px;
  margin-right: 0.7em;
  margin-bottom: 0.2em;
  background: #fff;
  border-radius: 4px;
}
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
.footer-newsletter input[type="email"] {
  padding: 0.5em 0.8em;
  border-radius: 4px;
  border: none;
  background: #313236;
  color: #fff;
  font-size: 1em;
  margin-bottom: 0.3em;
}
.footer-newsletter button {
  background: #3498db;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  padding: 0.5em 0.8em;
  cursor: pointer;
  transition: background 0.15s;
}
.footer-newsletter button:hover {
  background: #217dbb;
}
.footer-links a {
  color: #e7e7e7;
  text-decoration: none;
  transition: color 0.17s;
}
.footer-links a:hover {
  color: #3498db;
}
.footer-col ul li:last-child {
  margin-bottom: 0;
}
.footer-copyright {
  text-align: center;
  font-size: 0.97em;
  color: #bbb;
  margin-top: 2.5rem;
  padding: 0.7rem 0 0.2rem 0;
  border-top: 1px solid #34353a;
  letter-spacing: 0.1px;
}
@media (max-width: 1000px) {
  .footer-container {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-col {
    min-width: 160px;
  }
}
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.3rem;
  }
  .footer-col {
    width: 100%;
    min-width: unset;
  }
}