/*
Theme Name: Zehl Landing Page Theme
Theme URI: https://zehllaw.com
Description: A modular, replicable WordPress theme using Gutenberg block editing for rapidly deploying landing pages with reusable content blocks.
Version: 1.0.0
Author: Zehl & Associates
Author URI: https://zehllaw.com
Text Domain: zehllp
*/

/* Theme styles will be loaded from dist/blocks.css */

/* Header styles - simplified version */
.topbar {
  width: 100%;
}

.topbar .wp-block-group.alignwide {
  max-width: 400px;
  margin: 0 auto;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Google logo styling */
.google-logo {
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0;
}

.wp-block-image.google-logo img {
  margin: 0 !important;
  display: block;
  width: 90px;
  height: 30px;
}

/* Star rating styling */
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.star {
  color: #ffd700;
  font-size: 20px;
  line-height: 1;
}

/* Review text styling */
.topbar p.has-text-color {
  font-size: 14px;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Responsive styling */
@media (max-width: 768px) {
  .topbar .wp-block-group.alignwide {
    padding: 0 10px;
  }

  .header-row {
    gap: 10px;
  }

  .wp-block-image.google-logo img {
    width: 60px;
    height: 20px;
  }

  .star {
    font-size: 16px;
  }

  .topbar p.has-text-color {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .wp-block-image.google-logo img {
    width: 70px;
    height: 24px;
  }

  .star {
    font-size: 16px;
  }

  .topbar p.has-text-color {
    font-size: 12px;
  }
}

/* Google rating bar styles */
.google-rating-bar {
  background-color: #0a1f44;
  width: 100%;
}

/* Footer link styles */
.wp-block-group.has-navy-blue-background-color a {
  color: #949494;
  text-decoration: underline;
}

.wp-block-group.has-navy-blue-background-color a:hover {
  color: #ffffff;
}

/* Footer CTA Bar styles */
.footer-cta-bar {
  position: fixed;
  bottom: 0;
  right: 20px;
  background-color: #c01c20;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  max-width: 600px;
  width: auto;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px 8px 0 0;
}

.footer-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  gap: 0;
  transition: opacity 0.2s ease;
  padding: 10px 30px;
  border-radius: 0;
  min-width: 60px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-item:last-child {
  border-right: none;
}

.footer-cta-item:hover {
  opacity: 0.8;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-cta-item svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .footer-cta-bar {
    bottom: 0;
    right: 0;
    padding: 8px;
    gap: 8px;
    width: 100%;
    border-radius: 0;
  }

  .footer-cta-item {
    padding: 6px;
    width: 25%;
  }

  .footer-cta-item svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .footer-cta-item {
    padding: 6px;
  }

  .footer-cta-item svg {
    width: 20px;
    height: 20px;
  }
