/*
Theme Name: ADCT Weblinks
Author: ADCT Team
Version: 1.0
Description: Custom clean SaaS landing theme
*/

/* Global Styles */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #171616;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.site-header {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  padding: 8px 16px;
  /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);*/
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #729fdf;
  
}

/* Header Buttons */
.header-buttons {
  display: flex;
  gap: 15px;
}

.header-buttons .btn-light,
.header-buttons .btn-dark {
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-buttons .btn-light {
  background: #fff;
  color: #111;
  border: 1px solid #ccc;
}

.header-buttons .btn-dark {
  background: #111;
  color: #fff;
}

.header-buttons .btn-light:hover {
  background: #f1f1f1;
}

.header-buttons .btn-dark:hover {
  background: #333;
}

/* ================= HERO ================= */
/* Hero Section */
.hero {
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  padding-top: 150px;
}
@media (max-width: 600px) {
  .hero {
    height: auto;
    padding-top: 100px;
  }
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.hero-content .creative {
  color: #a56dde;
  font-family: "Poppins", cursive;
  font-weight: 500;
  font-size: 30px;
}

.hero-content p {
  color: #555;
  margin: 20px 0 40px;
}

/* Optional for mockup image under text */
.mockup-image {
  display: flex;
  align-items: center;
  justify-content: center;
  /*height: 100vh; */
  text-align: center;
}

.mockup-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
    overflow: hidden;
}

@media (max-width: 600px) {
  .mockup-image img {
    max-width: 175%;
    height: auto;
    object-fit: contain;
    padding-top: 60px;
    overflow: hidden;
  }
}

/* ================= FOOTER ================= */
footer {
  padding: 20px;
  text-align: center;
  background: #fff;
  border-top: 1px solid #eee;
}

/* ================= HAMBURGER MENU ================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.menu-toggle div {
  height: 3px;
  background: #111;
  border-radius: 2px;
}

.menu-toggle.open div:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.menu-toggle.open div:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open div:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 220px;
    display: none;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .header-buttons {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.active {
    display: flex;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content h1 .creative {
    font-size: 24px;
  }
}
