/*
Theme Name: Northwind
Theme URI: https://example.com/northwind
Author: Nazar
Author URI: https://northwind-projects.com
Description: A modern theme for Northwind Projects.
Version: 1.0.1
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: northwind
Tags: block-theme, full-site-editing, education, glassmorphism
*/

/* 
Custom styles for Northwind theme 
Extracted from theme.html
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f7f3ed;
  color: #2c3038;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px;
}

footer {
  background-color: #212529;
  padding: 60px 80px 30px 80px;
  color: #a0aec0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid #2d3748;
}

/* Left Column Content */
.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border: 2px solid #f6ad55;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6ad55;
  font-weight: bold;
  font-size: 18px;
}

.brand-name {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.brand-name span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: #a0aec0;
  letter-spacing: 1px;
}

.footer-tagline {
  font-size: 22px;
  color: #ffffff;
  line-height: 1.4;
  max-width: 450px;
  margin-bottom: 40px;
}

.contact-info-container {
  display: flex;
  gap: 80px;
}

.contact-label {
  font-size: 13px;
  color: #718096;
  margin-bottom: 5px;
}

.contact-value {
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}

/* Right Columns (Company & Services) */
.footer-links-columns {
  display: flex;
  gap: 60px;
  grid-column: span 2;
  justify-content: flex-end;
}

.link-column h4 {
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.link-column ul {
  list-style: none;
}

.link-column ul li {
  margin-bottom: 12px;
}

.link-column ul li a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.link-column ul li a:hover {
  color: #ffffff;
}

/* Bottom Copyright Section */
.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0 auto;
  text-align: center;
  font-size: 13px;
  color: #718096;
}

.footer-bottom span {
  color: #cbd5e0;
}

/* Force proper horizontal alignment for footer flex containers */
footer .wp-block-group {
  box-sizing: border-box;
}

/* Footer Link Styling overrides */
footer a {
  color: #a0aec0;
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
}

/* Brand Logo Box Fix */
.brand-logo {
  width: 36px;
  height: 36px;
  border: 2px solid #f6ad55;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6ad55;
  font-weight: bold;
  font-size: 18px;
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}

/* Remove list bullets */
ul.is-style-no-bullet {
  list-style: none;
  padding-left: 0;
}

ul.is-style-no-bullet li {
  margin-bottom: 12px;
}

.workshop-container {
  display: flex;
  max-width: 1100px;
  width: 100%;
  gap: 60px;
  align-items: center;
}

/* Left Image Section */
.workshop-image-wrapper {
  flex: 1;
  max-width: 450px;
}

.workshop-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Right Content Section */
.workshop-content {
  flex: 1.2;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4a5568;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #4a5568;
}

.workshop-content h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a202c;
  margin-bottom: 20px;
}

.workshop-description {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 15px;
}

.workshop-subdescription {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 30px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
}

.feature-item svg {
  width: 18px;
  height: 18px;
  fill: #d69e2e;
  flex-shrink: 0;
}

/* Button */
.btn-discover {
  display: inline-block;
  background-color: #212529;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-discover:hover {
  background-color: #38414a;
}

/* Responsive */
@media (max-width: 768px) {
  .workshop-container {
    flex-direction: column;
  }
  .workshop-image-wrapper {
    max-width: 100%;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}
