/*
Theme Name: BlankPro
Theme URI: https://adgtourism.com/
Author: Custom
Description: Empty, lightweight, professional WordPress starter theme.
Version: 1.0.0
Text Domain: blankpro
*/

:root {
  --bp-primary: #005fd6;
  --bp-primary-dark: #0047a8;
  --bp-accent: #f5c400;
  --bp-dark: #07111f;
  --bp-text: #1f2937;
  --bp-muted: #6b7280;
  --bp-light: #f8fafc;
  --bp-border: #e5e7eb;
  --bp-white: #ffffff;
  --bp-radius: 16px;
  --bp-container: 1240px;
  --bp-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--bp-text);
  background: var(--bp-white);
  line-height: 1.6;
  font-size: 16px;
}

body.admin-bar .bp-site-header {
  top: 32px;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.bp-container {
  width: min(100% - 40px, var(--bp-container));
  margin-inline: auto;
}

/* HEADER */

.bp-site-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--bp-border);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
}

.bp-header-container {
  width: min(100% - 40px, var(--bp-container));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.bp-header-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.bp-header-logo a {
  display: flex;
  align-items: center;
  line-height: 0;
}

.bp-header-logo img,
.bp-header-logo .custom-logo {
  width: auto !important;
  max-width: 190px !important;
  max-height: 58px !important;
  height: auto !important;
  object-fit: contain;
  display: block;
}

.bp-logo-text {
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  color: var(--bp-dark);
  letter-spacing: -0.04em;
}

.bp-header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.bp-menu,
.bp-header-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.bp-menu li,
.bp-header-nav li {
  margin: 0;
  padding: 0;
  position: relative;
}

.bp-menu a,
.bp-header-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.bp-menu a:hover,
.bp-header-nav a:hover,
.bp-menu .current-menu-item > a,
.bp-header-nav .current-menu-item > a {
  color: var(--bp-primary);
}

.bp-header-action {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.bp-header-button {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bp-primary), var(--bp-primary-dark));
  color: var(--bp-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 95, 214, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bp-header-button:hover {
  color: var(--bp-white);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 95, 214, 0.32);
}

/* OLD HEADER CLASS COMPATIBILITY */

.bp-header {
  width: 100%;
  background: var(--bp-white);
  border-bottom: 1px solid var(--bp-border);
  position: sticky;
  top: 0;
  z-index: 999;
}

.bp-header-inner {
  width: min(100% - 40px, var(--bp-container));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bp-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--bp-dark);
}

.bp-logo img,
.bp-logo .custom-logo {
  width: auto !important;
  max-width: 190px !important;
  max-height: 58px !important;
  height: auto !important;
  object-fit: contain;
}

.bp-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.bp-nav a {
  font-size: 15px;
  font-weight: 800;
  color: var(--bp-text);
}

.bp-nav a:hover {
  color: var(--bp-primary);
}

/* MAIN */

.bp-main {
  min-height: 70vh;
  background: var(--bp-white);
}

.bp-section {
  padding: 72px 0;
}

.bp-card {
  background: var(--bp-white);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius);
  padding: 32px;
  box-shadow: var(--bp-shadow);
}

.bp-title {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--bp-dark);
  letter-spacing: -0.05em;
}

.bp-subtitle {
  font-size: 18px;
  color: var(--bp-muted);
  margin: 0 0 28px;
  max-width: 720px;
}

.bp-content {
  color: var(--bp-text);
}

.bp-content p {
  margin-top: 0;
  margin-bottom: 18px;
}

.bp-content h1,
.bp-content h2,
.bp-content h3,
.bp-content h4 {
  color: var(--bp-dark);
  line-height: 1.2;
  margin-top: 32px;
  margin-bottom: 14px;
}

.bp-button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bp-primary), var(--bp-primary-dark));
  color: var(--bp-white);
  font-weight: 900;
  border: 0;
  box-shadow: 0 12px 28px rgba(0, 95, 214, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bp-button:hover,
.wp-block-button__link:hover {
  color: var(--bp-white);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 95, 214, 0.3);
}

/* FORMS */

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  padding: 0 14px;
  background: var(--bp-white);
  color: var(--bp-text);
  outline: none;
}

textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--bp-primary);
  box-shadow: 0 0 0 4px rgba(0, 95, 214, 0.1);
}

/* FOOTER */

.bp-footer {
  background: var(--bp-dark);
  color: var(--bp-white);
  padding: 36px 0;
}

.bp-footer p {
  margin: 0;
  color: #d1d5db;
  font-size: 15px;
}

/* WORDPRESS DEFAULT FIXES */

.alignwide {
  max-width: var(--bp-container);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100%;
  max-width: 100%;
}

.wp-caption {
  max-width: 100%;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

/* MOBILE */

@media (max-width: 1024px) {
  .bp-header-container {
    gap: 20px;
  }

  .bp-menu,
  .bp-header-nav ul {
    gap: 20px;
  }

  .bp-menu a,
  .bp-header-nav a {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  body.admin-bar .bp-site-header {
    top: 46px;
  }

  .bp-header-container {
    height: auto;
    min-height: 78px;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .bp-header-logo img,
  .bp-header-logo .custom-logo {
    max-width: 155px !important;
    max-height: 48px !important;
  }

  .bp-header-nav {
    order: 3;
    width: 100%;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 4px;
  }

  .bp-menu,
  .bp-header-nav ul {
    justify-content: flex-start;
    gap: 18px;
    white-space: nowrap;
    padding-bottom: 4px;
  }

  .bp-header-button {
    min-height: 42px;
    padding: 0 17px;
    font-size: 13px;
  }

  .bp-section {
    padding: 52px 0;
  }
}

@media (max-width: 600px) {
  .bp-container,
  .bp-header-container {
    width: min(100% - 28px, var(--bp-container));
  }

  .bp-header-logo img,
  .bp-header-logo .custom-logo {
    max-width: 135px !important;
    max-height: 42px !important;
  }

  .bp-header-action {
    margin-left: auto;
  }

  .bp-header-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .bp-card {
    padding: 22px;
  }

  .bp-title {
    font-size: clamp(30px, 10vw, 42px);
  }
}


