/* =========================================
   TRAVELEASE - GLOBAL WEBSITE THEME
   This file is imported by every page.
   ========================================= */

/* Global colours and fonts */
:root {
  /* Main website colours */
  --color-navy: #102c3c;
  --color-teal: #177c7a;
  --color-teal-dark: #0f6563;
  --color-orange: #ef7a5d;
  --color-cream: #f8f4ec;
  --color-white: #ffffff;
  --color-text: #16313e;
  --color-muted: #60717a;
  --color-light-teal: #edf5f4;

  /* Shared font family */
  --font-main: Arial, Helvetica, sans-serif;

  /* Shared sizing */
  --border-radius: 12px;
  --card-shadow: 0 12px 28px rgba(16, 44, 60, 0.12);
}

/* Makes sizes easier to calculate */
* {
  box-sizing: border-box;
}

/* Removes default page spacing */
html {
  scroll-behavior: smooth;
}

/* General website styling */
body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-cream);
  font-family: var(--font-main);
}

/* Makes all images responsive */
img {
  max-width: 100%;
}

/* General heading styling */
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

/* Shared link styling */
a {
  color: inherit;
  text-decoration: none;
}

/* Shared button font */
button,
input {
  font-family: inherit;
}

/* Shared button mouse pointer */
button {
  cursor: pointer;
}
.main-header {
  width: 100%;
  margin-top: 5px;
  z-index: 1000;
  position: fixed;
}
.header-container {
  
  border: 3px #045c5a solid;
  background-color: #236466;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 95%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 1);
  height: 30px;
  margin: 0 auto;
  padding: 0 75px;
  min-height: 50px; 
  border-radius: 50px;
}
.header-container:hover{
  
  border: 3px #b3d9d0 solid;
}
/* Removes bullet points and aligns links horizontally */
.nav-list {
  display: flex;
  align-items: center;
  gap: 45px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Link typography and formatting */
.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  transition: opacity 0.2s ease-in-out;
}

.nav-link:hover {
 
  color: #b3d9d0;
  
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}
#logo {
  max-height: 100% ; 
  width: auto ;
  object-fit: contain;
}




.footer {
  width: 100%;
  padding: 1.5rem 1rem;
  margin-top: 5rem;

  box-sizing: border-box;
  text-align: center;

  background-color: #102c3c;
  color: #f8f4ec;
  z-index: 1000;
}
.links-section h4,
.contact-section h4 {
  color: #52b69a;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}


.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  width: 100%;
  
}

.footer-bottom h5 {
  margin-top: 1rem;
  color: #90cfa5;
  font-weight: normal;
}




