/* =========================
   OzMove Strategies Vintage Retro CSS
   ========================= */

/* Import vintage/retro-inspired fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&family=Roboto+Slab:wght@700&display=swap');

:root {
  /* Brand Colors */
  --primary: #0E4668;
  --primary-dark: #09304a;
  --secondary: #F6F9FB;
  --secondary-light: #FFFFFF;
  --accent: #F7B32B;
  --accent-dark: #d89c22;
  --retro-red: #E4572E;
  --retro-green: #4CA866;
  --retro-blue: #3A6EA5;
  --retro-brown: #B08968;
  --retro-cream: #FFF8E7;
  --retro-shadow: rgba(30, 20, 10, 0.08);
  --text-dark: #2D2A26;
  --text-light: #fff;
  --border-radius: 12px;
  --border-radius-lg: 24px;
  --shadow: 0 4px 24px var(--retro-shadow);
  --pattern-bg: repeating-linear-gradient(135deg, #F7B32B 0 2px, transparent 2px 20px);
  --transition: all 0.25s cubic-bezier(.4,0,.2,1);
}

html {
  box-sizing: border-box;
  font-size: 18px;
  background: var(--retro-cream);
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--retro-cream);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.7;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto Slab', Arial, sans-serif;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0.5em;
  letter-spacing: 0.02em;
  font-weight: 900;
  text-shadow: 1px 1px 0 #fff8e7, 2px 2px 0 #f7b32b33;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4em;
}

p, ul, ol, li {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-dark);
  font-size: 1rem;
}

strong {
  font-weight: 700;
  color: var(--primary);
}

/* ========== Layout Containers ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--secondary-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 40px 24px;
  margin-bottom: 40px;
  position: relative;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pattern-bg), var(--secondary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

/* ========== Header & Navigation ========== */
header {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 2px 12px #0002;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
nav a:hover, nav a:focus {
  color: var(--retro-red);
}
.button-primary {
  background: linear-gradient(90deg, var(--accent), var(--retro-red) 90%);
  color: var(--text-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  margin-left: 24px;
  box-shadow: 0 2px 8px #0001;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  outline: none;
  position: relative;
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(90deg, var(--retro-red), var(--accent) 90%);
  color: var(--secondary-light);
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
  box-shadow: 0 6px 24px #0002;
}

/* ========== Mobile Navigation ========== */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: 120;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-red);
  color: var(--secondary-light);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--retro-cream) 80%, var(--accent) 100%);
  box-shadow: 0 0 40px #0005;
  z-index: 2000;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--retro-red);
  color: var(--secondary-light);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin: 24px 0 0 24px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 48px 0 0 36px;
}
.mobile-nav a {
  color: var(--primary-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 8px 0;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-red);
}

/* ========== Hero Section ========== */
.hero {
  background: linear-gradient(120deg, var(--accent) 0%, var(--retro-cream) 100%);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 0;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  padding: 60px 0 40px 0;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--primary-dark);
  text-shadow: 2px 2px 0 #fff8e7, 4px 4px 0 #f7b32b33;
}
.hero p {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 18px;
}

/* ========== Feature Grid & Cards ========== */
.feature-grid, .service-cards, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid > div, .service-cards > div {
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid var(--accent);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover, .service-cards > div:hover {
  box-shadow: 0 8px 32px #0002;
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
  border-color: var(--retro-red);
}

/* ========== Testimonial Cards ========== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: var(--retro-cream);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px #0001;
  border: 2px dashed var(--retro-brown);
  min-width: 260px;
  max-width: 380px;
  margin-bottom: 20px;
  position: relative;
  font-family: 'Roboto Slab', 'Montserrat', serif;
  color: var(--primary-dark);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #0002;
  border-color: var(--accent);
}
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin: 0 0 8px 0;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--retro-brown);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* ========== Cards & Content Grids ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--secondary-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  min-width: 220px;
  flex: 1 1 260px;
  border: 2px solid var(--accent);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px #0002;
  border-color: var(--retro-red);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== Lists, Accordions, and FAQ ========== */
ul, ol {
  margin: 0 0 1.2em 1.2em;
  padding: 0;
}
.values-list {
  list-style: square inside;
  padding-left: 0;
  margin-bottom: 1.2em;
}
.faq-accordion {
  background: var(--retro-cream);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px #0001;
  padding: 24px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.faq-accordion h3 {
  font-size: 1.1rem;
  color: var(--retro-red);
  margin-bottom: 12px;
}
.faq-accordion ul {
  margin: 0;
  padding: 0 0 0 1.2em;
}
.faq-accordion li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* ========== Footer ========== */
footer {
  background: var(--primary-dark);
  color: var(--secondary-light);
  padding: 40px 0 24px 0;
  margin-top: 60px;
  border-top: 8px solid var(--accent);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 12px;
}
.footer-menu a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--retro-red);
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 12px;
}
.social-links a {
  color: var(--secondary-light);
  font-size: 1.2rem;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.2s;
}
.social-links a:hover, .social-links a:focus {
  color: var(--accent);
}
footer img {
  height: 40px;
  margin: 12px 0;
}
.copyright {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin-top: 8px;
}

/* ========== Cookie Consent Banner ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--accent) 80%, var(--retro-cream) 100%);
  color: var(--primary-dark);
  box-shadow: 0 -2px 16px #0002;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  animation: cookieBannerIn 0.6s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin: 0;
}
.cookie-banner .accept {
  background: var(--retro-green);
  color: var(--secondary-light);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-banner .reject {
  background: var(--retro-red);
  color: var(--secondary-light);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--primary-dark);
  color: var(--accent);
}
.cookie-banner .settings {
  background: var(--secondary-light);
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--accent);
  color: var(--primary-dark);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%);
  opacity: 0;
  z-index: 4000;
  background: var(--retro-cream);
  color: var(--primary-dark);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 40px #0004;
  width: 95vw;
  max-width: 420px;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  pointer-events: none;
  transition: var(--transition);
}
.cookie-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--retro-red);
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary-dark);
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-category input[disabled] {
  accent-color: var(--retro-green);
  opacity: 0.7;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal .save {
  background: var(--retro-green);
  color: var(--secondary-light);
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-modal .cancel {
  background: var(--retro-red);
  color: var(--secondary-light);
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: var(--primary-dark);
  color: var(--accent);
}

/* ========== Miscellaneous ========== */
a {
  color: var(--retro-blue);
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--retro-red);
}

ul li, ol li {
  margin-bottom: 8px;
}

.image-gallery, .city-highlights, .team-photos, .map-location {
  margin-bottom: 20px;
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  .content-wrapper {
    padding: 32px 10px;
  }
  .section {
    padding: 32px 10px;
  }
  .feature-grid, .service-cards, .testimonial-slider, .card-container, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  nav {
    gap: 16px;
  }
  .button-primary {
    margin-left: 0;
    margin-top: 12px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  .container {
    max-width: 100vw;
    padding: 0 4vw;
  }
  .content-wrapper, .section {
    padding: 24px 6px;
    margin-bottom: 32px;
  }
  .hero .content-wrapper {
    padding: 36px 0 24px 0;
  }
  .feature-grid, .service-cards, .testimonial-slider, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .service-cards > div, .card {
    min-width: 0;
    width: 100%;
    padding: 20px 12px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    padding: 16px 10px;
  }
  .footer-menu, .social-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  nav {
    display: none;
  }
  .button-primary {
    display: none;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 10px;
    font-size: 0.98rem;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .cookie-modal {
    padding: 18px 6px 12px 6px;
    max-width: 98vw;
  }
}

/* ========== Animations & Micro-interactions ========== */
.button-primary, .cookie-banner button, .cookie-modal button {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card, .feature-grid > div, .service-cards > div, .testimonial-card {
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.card:hover, .feature-grid > div:hover, .service-cards > div:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.02) rotate(-1deg);
  box-shadow: 0 8px 32px #0002;
}

/* ========== Utility Classes ========== */
.hide {
  display: none !important;
}

/* ========== Accessibility ========== */
:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
}

/* ========== Prevent Overlapping ========== */
.section, .content-wrapper, .card, .testimonial-card, .feature-grid > div, .service-cards > div {
  margin-bottom: 20px;
}

/* ========== End of CSS ========== */
