/*
 Theme Name: Astra Child
 Template: astra
 Version: 1.0.0
 Description: Child theme for Trips2Europe
*/

.t2e-footer {
  background: #0D2B4E;
  color: #F5F5F0;
  font-family: inherit;
  margin-top: 0;
}
.t2e-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 0;
}
.t2e-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}
.t2e-brand-name {
  font-size: 22px;
  font-weight: 600;
  color: #F5F5F0;
  margin: 0 0 0.5rem;
}
.t2e-brand-tag {
  font-size: 14px;
  color: #A8C4D8;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.t2e-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 1.25rem;
}
.t2e-soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #A8C4D8;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.t2e-soc:hover {
  border-color: #E8A020;
  color: #E8A020;
}
.t2e-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  color: #E8A020;
}
.t2e-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #E8A020;
  margin: 0 0 1rem;
}
.t2e-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.t2e-links li a {
  font-size: 14px;
  color: #A8C4D8;
  text-decoration: none;
}
.t2e-links li a:hover { color: #E8A020; }
.t2e-link-more {
  font-weight: 500;
  color: #E8A020 !important;
}
.t2e-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.85rem;
}
.t2e-icon {
  color: #E8A020;
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1.5;
}
.t2e-contact-row span {
  font-size: 14px;
  color: #A8C4D8;
  line-height: 1.5;
}
.t2e-contact-row a {
  color: #A8C4D8;
  text-decoration: none;
}
.t2e-contact-row a:hover { color: #E8A020; }
.t2e-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 2.5rem 0 0;
}
.t2e-bottom {
  padding: 1.25rem 0 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.t2e-copy {
  font-size: 12px;
  color: rgba(168,196,216,0.55);
}
.t2e-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.t2e-bottom-links a {
  font-size: 12px;
  color: rgba(168,196,216,0.55);
  text-decoration: none;
}
.t2e-bottom-links a:hover { color: #E8A020; }
@media (max-width: 900px) {
  .t2e-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .t2e-col-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .t2e-footer-grid { grid-template-columns: 1fr; }
  .t2e-bottom { flex-direction: column; align-items: flex-start; }
  .t2e-footer-inner { padding: 2.5rem 1.25rem 0; }
}