/*
Theme Name: Adabass Hero
Theme URI: https://adabass.com
Author: Gigabyte Ltd.
Author URI: https://gigabyteltd.com
Description: Custom Adabass landing theme with a full-screen animated hero section, built to work alongside Elementor for all interior pages. Includes a guided required-plugins screen and one-click demo content import.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adabass-hero
Domain Path: /languages
Tags: e-commerce, custom-menu, featured-images, full-width-template, threaded-comments, translation-ready
*/

/* ---------------------------------------------------
   Base resets kept minimal on purpose — a compiled,
   purged Tailwind build (assets/css/tailwind.min.css)
   handles the vast majority of styling. This file only
   carries the small pieces that don't belong in Tailwind:
   the fade-in-up keyframes, the Inter font-family hook,
   the hero typography, and a couple of WordPress-required
   default styles.
--------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  margin: 0;
}

/* WordPress default alignment classes (required by core) */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
  width: 1px; word-wrap: normal !important;
}

/* ---------------------------------------------------
   Responsive hero typography.
   clamp() scales the headings down smoothly on narrow
   viewports so nothing overflows or wraps awkwardly on
   mobile, while keeping large, confident sizes on desktop.
--------------------------------------------------- */
.hero-title {
  font-size: clamp(34px, 8vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero-subtitle {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 300;
  color: #b0b0b0;
  line-height: 1.2;
}
.hero-paragraph {
  font-size: clamp(13px, 3.2vw, 15px);
  font-weight: 300;
  line-height: 1.7;
}

/* Fade-in-up animation used for staggered hero content */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Glassmorphism helper for the Log In button */
.glass-btn {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Elementor compatibility: full-width canvas for pages built with Elementor */
.elementor-page .site-header,
.elementor-page .site-footer {
  display: none;
}

/* ---------------------------------------------------
   Pagination (blog index) & post navigation (single).
   WordPress outputs its own .page-numbers markup, so
   these are styled here rather than via Tailwind classes.
--------------------------------------------------- */
.adabass-pagination {
  margin-top: 3.5rem;
}
.adabass-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.adabass-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(31, 43, 36, 0.12);
  color: #1F2B24;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.adabass-pagination .page-numbers:hover {
  background: rgba(31, 43, 36, 0.04);
  border-color: rgba(31, 43, 36, 0.25);
}
.adabass-pagination .page-numbers.current {
  background: #4A7766;
  border-color: #4A7766;
  color: #fff;
  font-weight: 600;
}
.adabass-pagination .page-numbers.dots {
  border-color: transparent;
}

.adabass-post-nav {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 43, 36, 0.1);
}
.adabass-post-nav .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}
.adabass-post-nav .nav-next {
  margin-left: auto;
  text-align: right;
}
.adabass-post-nav a {
  text-decoration: none;
  color: #1F2B24;
  transition: color 0.15s ease;
}
.adabass-post-nav a:hover {
  color: #4A7766;
}
