/*
Theme Name: E-Bike Motor Center
Theme URI: https://ebikemotorcenter.pl
Author: E-Bike Motor Center
Author URI: https://ebikemotorcenter.pl
Description: Profesjonalny motyw WordPress FSE dla serwisu rowerów elektrycznych E-Bike Motor Center. Nowoczesny design z ciemnym tłem i żółtymi akcentami.
Version: 1.0.11
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ebike-motor-center
Tags: full-site-editing, block-patterns, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready, wide-blocks
*/

/*
 * Custom styles for E-Bike Motor Center theme
 * This theme uses Tailwind CSS utility classes via theme.json
 */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

/* Base Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #fde047;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: #eab308;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Utility Classes matching Tailwind */
.bg-zinc-900 {
  background-color: #18181b;
}

.bg-zinc-950 {
  background-color: #09090b;
}

.bg-black {
  background-color: #000000;
}

.text-white {
  color: #ffffff;
}

.text-yellow-400 {
  color: #facc15;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

/* Button Styles */
.wp-block-button__link {
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.wp-block-button.is-style-primary .wp-block-button__link {
  background-color: #facc15;
  color: #000000;
}

.wp-block-button.is-style-primary .wp-block-button__link:hover {
  background-color: #fde047;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.3);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border: 2px solid #facc15;
  color: #facc15;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: #facc15;
  color: #000000;
  transform: translateY(-2px);
}

/* Header Styles */
.site-header {
  background-color: #000000;
  border-bottom: 1px solid #1f2937;
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Footer Styles */
.site-footer {
  background-color: #09090b;
  border-top: 1px solid #27272a;
  color: #9ca3af;
}

/* Logo Styles */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-logo .logo-main {
  color: #facc15;
  font-weight: 900;
  letter-spacing: -0.025em;
  font-style: italic;
  font-size: 1.875rem;
  text-transform: uppercase;
}

.site-logo .logo-sub {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.6rem;
  text-transform: uppercase;
  background-color: #000000;
  padding: 0 0.25rem;
  margin-top: -0.25rem;
  display: inline-block;
  width: fit-content;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  padding: 0 1rem;
}

/* Service Card Styles */
.service-card {
  background-color: #09090b;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #27272a;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: #facc15;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #18181b;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #facc15;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: #facc15;
  color: #000000;
}

/* Section Styles */
.section-dark {
  background-color: #09090b;
  padding: 5rem 1rem;
}

.section-light {
  background-color: #18181b;
  padding: 5rem 1rem;
}

/* Contact Card */
.contact-card {
  background-color: #09090b;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #27272a;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  border-color: #facc15;
}

/* Icon Styles */
.icon-wrapper {
  width: 4rem;
  height: 4rem;
  background-color: #18181b;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background-color 0.3s ease;
}

.contact-card:hover .icon-wrapper {
  background-color: #facc15;
}

/* Brands Bar */
.brands-bar {
  background-color: #facc15;
  padding: 1.5rem 1rem;
  overflow: hidden;
}

/* Navigation Menu */
.wp-block-navigation__responsive-container.is-menu-open {
  background-color: #18181b;
}

.wp-block-navigation-item a {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  color: #d1d5db;
  transition: color 0.2s ease;
}

.wp-block-navigation-item a:hover {
  color: #ffffff;
}

.wp-block-navigation-item.current-menu-item a {
  color: #facc15;
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .site-logo .logo-main {
    font-size: 1.5rem;
  }
  
  .hero-section {
    min-height: 500px;
  }
}

/* Animation Classes */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out;
}

/* WordPress Block Editor Styles */
.wp-block {
  max-width: 1200px;
}

/* Ensure full width for group blocks */
.wp-block-group.alignfull {
  max-width: 100%;
}

/* Custom spacing */
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(to right, #facc15, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Border utilities */
.border-yellow {
  border-color: #facc15;
}

.border-zinc {
  border-color: #27272a;
}

/* Post styles */
.page-blog .wp-block-post {
    border-width: 1px;
    border-color: rgb(39 39 42 / var(--tw-border-opacity, 1));
    background-color: rgb(9 9 11 / var(--tw-bg-opacity, 1));
    border-radius: 1rem;
    border: 1px solid;
}

.page-blog .wp-block-post:hover {
    border-color: rgb(250 204 21 / 0.5);
}

.page-blog .wp-block-post-title {
    margin-top: 0;
}

.page-blog .wp-block-post-excerpt {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.wp-block-post-excerpt__excerpt {
    font-size: 0.8rem;
}

.page-blog .wp-container-core-post-template-is-layout-1 .wp-block-group {
    display: flex;
    flex-direction: column;
    height: 100%;
}

a.wp-block-read-more {
    margin-top: auto;
}

.page-blog .wp-block-post-date {
    font-size: 0.7rem;
}

.page-blog .wp-block-read-more {
    font-size: 0.7rem;
    text-transform: uppercase;
}
footer .site-logo.is-vertical {
    padding: 0;
}

html {
    font-size: 14px;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

:root :where(.wp-block-group) {
    padding-top: 0;
}

li.flex.items-start {
    list-style: none;display: flex;
}

.mr-3 {
    margin-right: 0.75rem;
}

.flex {
    display: flex;
}

.mr-2 {
    margin-right: 0.5rem;
}

ul, li {
    list-style: none;
}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-5xl {
    font-size: 3rem;
    line-height: 1;
}
.font-black {
    font-weight: 900;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.ml-2 {
    margin-left: 0.5rem;
}
.font-bold {
    font-weight: 700;
}
.diagnose-list li+li {
    margin-top: 0.8rem;
}

.diagnose-list {
    margin: 0;
    padding: 0;
    padding-left: 1rem;
}
.h-14 {
    height: 3.5rem;
}
.w-14 {
    width: 3.5rem;
}
.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
.rounded-full {
    border-radius: 9999px;
}

.our_services .rounded-full.flex {
    margin-left: 0 !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content, .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container, .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list {
    align-items: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open {
    background-color: #18181b;
    padding-right: 1rem;
    padding-top: 1rem;
}

.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
    color: white;
}

.wp-block-navigation__responsive-container-close svg, .wp-block-navigation__responsive-container-open svg {
    color: white;
}
.is-menu-open .wp-block-social-links .wp-social-link svg {
    height: 3rem;
    width: 3rem;
}
