/* =========================================
   RESET & BASE STYLES
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url('../images/artistic-blurry-colorful-wallpaper-background copy 2.webp') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Coolvetica', sans-serif;
  color: #ffffff;
  line-height: 1.8;
  overflow-x: hidden;
  overflow-y: auto;
}

main {
  padding-top: 120px;
}


/* =========================================
   CUSTOM FONTS
========================================= */
@font-face {
  font-family: 'Coolvetica-Light';
  src: url('../fonts/Coolvetica Rg lt.otf') format('opentype');
}

@font-face {
  font-family: 'Coolvetica-Regular';
  src: url('../fonts/Coolvetica Rg.otf') format('opentype');
}

@font-face {
  font-family: 'Coolvetica-Bold';
  src: url('../fonts/Coolvetica Rg.otf') format('opentype');
  font-weight: 800;
}


/* =========================================
   TYPOGRAPHY
========================================= */
.hero-content h1,
.cta-box h2,
.footer-left {
  font-family: 'Coolvetica-Bold', sans-serif;
}

.hero-content p,
.intro-text,
.service-text p,
nav a,
.section-title,
.service-text h3,
.cta-box p,
.cta-box .cta-button,
.footer,
.mobile-nav a,
.mobile-footer,
.footer-column p {
  font-family: 'Coolvetica-Light', sans-serif;
}


/* =========================================
   CONTAINERS & STRUCTURE
========================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}


/* =========================================
   HEADER & NAVIGATION
========================================= */
header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
  margin-top: 20px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Default: show desktop, hide mobile */
.desktop-logo {
  display: block;
}

.mobile-logo {
  display: none;
}

.logo-img {
  height: 55px;
  width: auto;
  image-rendering: auto;
}

.logo {
  display: flex;
  align-items: center;
}

.desktop-nav,
nav {
  display: flex;
  gap: 60px;
  padding: 0;
  margin: 0;
}

nav a {
  color: #cccccc;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 300;
}

nav a:hover,
.admin-login {
  color: #1d79f1;
  opacity: 0.8;
}

.cta-nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  font-size: 0.9rem;
  color: #ffffff;
  background-color: #0050F5;
  text-decoration: none;
  font-weight: 300;
  margin-top: -5px;
  height: 40px;
  line-height: 1;
  transition: 0.15s;
}

.cta-nav-button:hover {
  background-color: #1bc26e;
  color: #ffffff;
  font-weight: 400;
}


/* ========== MOBILE NAVIGATION ========== */
.hamburger,
.close-btn {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #ffffff;
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 1001;
}

.close-btn {
  font-size: 1.4rem;
  z-index: 1002;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background-color: #003acc;
  color: white;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
  
}


.mobile-overlay.active {
  transform: translateX(0%);
  box-shadow: 0 0 20px rgba(72, 175, 243, 0.9); /* adds soft shadow */
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}

.mobile-nav a {
  font-size: 1.1rem;
  color: #ffffff;
  text-decoration: none;
}

.mobile-nav a:hover {
  color: #1bc26e;
}

.mobile-footer .social-icons {
  display: flex;
  gap: 15px;
  margin-top: -100px;
}


/* =========================================
   HERO SECTION
========================================= */
.hero-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin: 300px 0 50px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1rem;
  color: #bbbbbb;
  font-weight: 300;
}

.intro-text {
  flex: 0.7;
  font-size: 1rem;
  font-weight: 300;
  color: #bbbbbb;
  line-height: 1.8;
  margin-bottom: 40px;
}


/* =========================================
   SERVICES SECTION
========================================= */
.services-section {
  margin-bottom: 150px;
}

.section-plus {
  font-size: 4rem;
  color: #1bc26e;
  margin-bottom: -40px;
  text-align: left;
  font-weight: 50;
}

.section-title {
  font-size: 1.8rem;
  color: #969595;
  margin-bottom: 50px;
  text-align: left;
  font-weight: 100;
}

.services-list.collapsed .service-description {
  display: none;
}

.toggle-services {
  cursor: pointer;
  transition: color 0.3s ease;
}

.toggle-services:hover {
  color: #1bc26e;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.service-item:last-child {
  border-bottom: none;
}

.icon i {
  font-size: 1.5rem;
  color: #1bc26e;
}

.service-text h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-weight: 200;
  color: #ffffff;
  letter-spacing: 1px;
}

.service-text p {
  font-size: 0.85rem;
  color: #cccccc;
  font-weight: 300;
  line-height: 1.6;
}

.toggle-symbol {
  transition: transform 0.3s ease;
  display: inline-block;
  cursor: pointer;
}


/* =========================================
   CTA SECTION
========================================= */
.cta-section {
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 2;
}

.cta-box {
  background-color: #1bc26e;
  padding: 120px 150px;
  text-align: left;
  margin: 0 auto -60px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-box h2 {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 1px;
  margin-left: -50px;
}

.cta-box p {
  margin-bottom: 20px;

}

.cta-box p,
.cta-box .cta-button {
  margin-left: -50px;
}

.cta-box .cta-button {
  padding: 15px 25px;
  font-size: 0.85rem;
  color: #ffffff;
  background-color: #0050F5;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.cta-box .cta-button:hover {
  background-color: #08329d;
  color: #ffffff;
}


/* =========================================
   FOOTER SECTION
========================================= */
.footer {
  background: #003acc;
  padding: 150px 60px 80px;
  opacity: 0.8;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  flex: 0.6 0.6 100%;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 60px;
  line-height: 1.0;
}

.footer-column {
  flex: 0.6;
  min-width: 200px;
}

.footer-column a {
  color: white;
  text-decoration: none;
}

.footer-column a:hover {
  color: #1bc26e;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons i {
  font-size: 1.2rem;
  color: white;
  transition: color 0.3s ease;
}

.social-icons i:hover {
  color: #1bc26e;
}


/* =========================================
   RESPONSIVE STYLES
========================================= */
@media (max-width: 768px) {

.desktop-nav {
    display: none;
  }

  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  .container {
    padding: 0 20px;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: 50px; /* Mobile logo size */
  }

  .hamburger {
    display: block;
    position: static;
    margin-left: auto;
    font-size: 1.6rem;
    color: #ffffff;
    padding-left: 10px;
  }

  .cta-nav-button {
    width: auto;
    padding: 10px 20px;
    margin-top: 5px;
  }

  .hero-grid {
    flex-direction: column;
    margin-top: 200px;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .intro-text {
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 300;
  }

  .services-section {
    margin-bottom: 80px;
  }

  .section-title {
    font-size: 1.4rem;
    text-align: left;
  }
  .section-plus {
    font-size: 3.5rem;
    text-align: left;
  }

  .service-item {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
  }

  .service-text h3 {
    font-size: 1.1rem;
  }

  .service-text p {
    font-size: 0.8rem;
  }

  .cta-box {
    padding: 60px 30px;
    margin-bottom: -30px;
  }

  .cta-box h2,
  .cta-box p,
  .cta-box .cta-button {
    margin-left: 0;
  }

  .cta-box h2 {
    font-size: 2.2rem;
    line-height: 1;
  }

  .footer {
    padding: 80px 30px 60px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-left {
    font-size: 1.6rem;
    margin-bottom: 40px;
    text-align: left;
  }

  .footer-column {
    min-width: 100%;
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
  }
}

/* Make the CTA box a bit wider on phones */
@media (max-width: 600px) {
  /* loosen the inner container so the box can grow */
  .cta-section > .container { padding-left: 10px; padding-right: 10px; }

  /* keep the box centered and a bit wider */
  .cta-box { margin-left: 0; margin-right: 0; }
}
