/* Universal Styles */
html, body {
  margin: 0;
  padding: 0;
  background: white;
  color: #333;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Scotia Font Family */
@font-face {
  font-family: 'Scotia';
  src: url('../fonts/Scotia_W_Lt.woff2') format('woff2'),
       url('../fonts/Scotia_W_Lt.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Scotia';
  src: url('../fonts/Scotia_W_Rg.woff2') format('woff2'),
       url('../fonts/Scotia_W_Rg.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Scotia';
  src: url('../fonts/Scotia_W_Bd.woff2') format('woff2'),
       url('../fonts/Scotia_W_Bd.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Scotia Headline';
  src: url('../fonts/Scotia_W_Headline.woff2') format('woff2'),
       url('../fonts/Scotia_W_Headline.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  height: 70px;
  background: rgba(255, 255, 255, 0.92);
  z-index: 999;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.header-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  box-sizing: border-box;
}

.header-logo {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ED0722;
  letter-spacing: -0.03em;
  font-family: 'Scotia Headline', 'Scotia', Arial, sans-serif;
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-info {
  color: #222;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  vertical-align: middle;
  white-space: nowrap;
}

.header-cta {
  display: inline-block;
  padding: 0.7em 1.8em;
  background: #ED0722;
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Scotia', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  letter-spacing: 0.03em;
  vertical-align: middle;
}

.header-cta:hover,
.header-cta:focus {
  background: #c41e3a;
  transform: translateY(-1px);
}

.header-hamburger {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  z-index: 1001;
  position: relative;
}

.header-hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background: #ED0722;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

.header-hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.header-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.header-hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.header-dropdown {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;
  right: 16px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  border-radius: 12px;
  min-width: 220px;
  z-index: 1000;
  padding: 12px 0;
  font-family: 'Scotia Headline', 'Scotia', Arial, sans-serif;
  font-weight: 400;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-dropdown a {
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
  display: block;
  transition: background 0.2s, color 0.2s;
}

.header-dropdown a:hover,
.header-dropdown a:focus {
  background: #f8f8f8;
  color: #c41e3a;
}

/* Footer Styles */
.site-footer {
  background: #ED0722;
  color: #fff;
  padding: 40px 20px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1.5fr 1fr;
  align-items: start;
  gap: 30px;
}

.footer-logo {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  font-family: 'Scotia Headline', 'Scotia', Arial, sans-serif;
  line-height: 1.1;
  text-decoration: none;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 8px;
  color: #fff;
  font-weight: 600;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.5;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 12px;
}

.footer-social a {
  color: #fff;
  font-size: 32px;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 0.8;
}

/* Media Queries */
@media (max-width: 768px) {
  .header-logo {
    font-size: 2.2rem;
  }
  .header-info {
    display: none;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .main-header {
    padding: 0 12px;
    height: 56px;
  }
  .header-content {
    padding: 0;
  }
  .header-logo {
    font-size: 1.8rem;
  }
  .header-cta {
    display: none;
  }
  .header-dropdown {
    top: 56px;
    right: 12px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .footer-logo {
    margin: 0 auto;
    display: block;
  }
  .footer-links,
  .footer-contact,
  .footer-social {
    align-items: center;
  }
} 