/* ----------------------------- */
/* Fonts & Typography */
/* ----------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700&family=Roboto:wght@400;500&display=swap');

body {
	font-family: 'Roboto', sans-serif;
	font-size: 1.1rem;
	color: #333;
	line-height: 1.8;
	background-color: #f5f7fa;
}

h1, .hero-title {
	font-family: 'Inter', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	color: #1F2937;
}

h2, h3, h4, h5 {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: #1F2937;
}

p, li {
	font-family: 'Roboto', sans-serif;
	color: #555;
}

/* ----------------------------- */
/* Buttons */
/* ----------------------------- */
.btn-warning {
	background-color: #20B2AA;
	color: #ffffff;
	font-weight: 600;
	border: none;
	transition: transform 0.3s ease, background-color 0.3s ease;
}
.btn-warning:hover {
	background-color: #1F7F7F;
	transform: scale(1.05);
	color: #fff;
}

/* ----------------------------- */
/* Header */
/* ----------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	padding: 1rem 0;
	font-family: 'Inter', sans-serif;
	z-index: 9999;
}
.site-header.scrolled {
	background-color: #ffffff;
	padding: 0.5rem 0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ----------------------------- */
/* Hero */
/* ----------------------------- */
.hero-section {
	background-color: #f8f9fa;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 80vh;
	position: relative;
	padding: 100px 20px;
	color: #fff;
	display: flex;
	align-items: center;
	text-align: center;
}
.hero-section::after {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.25);
	z-index: 0;
}
.hero-section .container {
	position: relative;
	z-index: 1;
}
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff; /* HIGH CONTRAST */
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);

/* ----------------------------- */
/* Services Card */
/* ----------------------------- */
.services-card {
	background-color: #ffffff;
	color: #1F2937;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.services-card:hover h5 {
	color: #20B2AA;
}

/* ----------------------------- */
/* Scroll Animation */
/* ----------------------------- */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.in-view {
	opacity: 1;
	transform: translateY(0);
}

/* ----------------------------- */
/* Responsive Typography */
/* ----------------------------- */
@media (max-width: 768px) {
	h1, .hero-title { font-size: 2.25rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.25rem; }
	body { font-size: 1rem; }
}

/* Mobile-first styles */
.menu-toggle {
  display: block;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.main-nav ul {
  display: none;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  z-index: 999;
}

.main-nav ul li {
  margin-bottom: 1rem;
}

.main-nav ul li:last-child {
  margin-bottom: 0;
}

.main-nav ul.active {
  display: flex;
}

/* Desktop styles */
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }

  .main-nav ul {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
  }

  .main-nav ul li {
    margin: 0 1rem;
  }
}

/* ----------------------------- */
/* Main Navigation Menu Styling */
/* ----------------------------- */

.main-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #1F2937;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 4px;
}

.main-menu li a:hover,
.main-menu li a:focus {
    color: #ffffff;
    background-color: #20B2AA; /* Teal hover */
}

/* Active Menu Item */
.main-menu li.current-menu-item a {
    color: #ffffff;
    background-color: #20B2AA;
}

/* Responsive Toggle */
@media (max-width: 992px) {
    .main-menu {
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        display: none;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .main-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: #1F2937;
    }
}

.menu-toggle {
    display: none;
}


