/* ==========================================================================
   Start: top/ manu menu
   ========================================================================== */

/* Navbar container - full width */
.navbar {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  z-index: 1000;
}

/* Inner content - max 1100px centered */
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  text-decoration: none;
}

.logo span {
  color: #e74c3c;
}

/* Main menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #34495e;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.25s ease;
}

.nav-menu li a:hover {
  color: #e74c3c;
}

/* CTA Button */
.cta-button {
  padding: 10px 28px;
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #2c3e50;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile menu */
@media (max-width: 992px) {
  .nav-container {
    padding: 0 16px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  }

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

  .nav-menu li {
    margin: 18px 0;
  }

  .nav-menu li a {
    font-size: 1.3rem;
  }

  .cta-button {
    display: none;           /* Hide CTA on mobile */
  }

  .hamburger {
    display: flex;
  }
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}



/* ==========================================================================
   END: top/ manu menu
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES - Change these values to customize the entire site
   ========================================================================== */

/* Colors */
:root {
  --color-primary: #2c5282;        /* Main heading / accent color */
  --color-primary-dark: #1e3a5f;   /* Darker variant for hover/active */
  --color-accent: #3182ce;         /* Secondary accent (buttons/links) */
  --color-text: #2d3748;           /* Main text color */
  --color-text-light: #4a5568;     /* Lighter text (captions, secondary) */
  --color-bg: #ffffff;             /* Main content background */
  --color-bg-light: #f7fafc;       /* Light background for columns/sections */
  --color-border: #e2e8f0;         /* Borders */
  --color-highlight-bg: #ebf8ff;   /* Highlight box background */
}

/* Typography */
:root {
  --font-base: Arial, Helvetica, sans-serif;
  --font-heading: 'Segoe UI', Arial, sans-serif; /* You can change to Google Fonts import */
  --font-size-base: 1.1rem;
  --font-size-h1: 2.6rem;
  --font-size-h2: 2rem;
  --line-height: 1.7;
}

/* Spacing & Layout */
:root {
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --content-max-width: 1100px;
  --border-radius: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-base);
  line-height: var(--line-height);
  color: var(--color-text);
  background-color: #f9f9f9;
}

/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */

.content-wrapper {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
  background-color: var(--color-bg);
}

/* Headings */
h1 {
  font-size: var(--font-size-h1);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
}

h2 {
  font-size: var(--font-size-h2);
  color: var(--color-primary);
  margin: var(--spacing-lg) 0 var(--spacing-md);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Text & Lists */
p {
  margin-bottom: 1.4rem;
  font-size: var(--font-size-base);
}

ul, ol {
  margin-bottom: var(--spacing-md);
  padding-left: 1.8rem;
}

li {
  margin-bottom: 0.7rem;
}

/* Images */
.image-center {
  text-align: center;
  margin: var(--spacing-lg) 0;
}

.image-center img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.image-center figcaption {
  font-style: italic;
  color: var(--color-text-light);
  margin-top: var(--spacing-sm);
  font-size: 0.95rem;
}

/* ==========================================================================
   TWO COLUMNS SECTION
   ========================================================================== */

.two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: var(--spacing-lg) 0;
}

.column {
  flex: 1;
  min-width: 320px;
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.column h2 {
  margin-top: 0;
}

/* ==========================================================================
   HIGHLIGHT / CTA TEXT
   ========================================================================== */

.highlight-text {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin: var(--spacing-lg) 0;
  color: var(--color-primary);
  padding: 1.5rem;
  background-color: var(--color-highlight-bg);
  border-radius: var(--border-radius);
  border-left: 5px solid var(--color-accent);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 992px) {
  :root {
    --font-size-h1: 2.2rem;
    --font-size-h2: 1.8rem;
  }
  
  .content-wrapper {
    padding: 2rem 1rem;
  }
}

@media (max-width: 768px) {
  .two-columns {
    flex-direction: column;
    gap: 3rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
}