/*
Theme Name:   Hello Elementor Child
Theme URI:    https://elementor.com/
Description:  DALLAN Construction child theme for Hello Elementor
Author:       DALLAN Construction
Template:     hello-elementor
Version:      1.2.0
Text Domain:  hello-elementor-child
*/

/* ──────────────────────────────────────────
   DALLAN CONSTRUCTION FOOTER STYLES
   Scoped to .dallan-footer to prevent conflicts
────────────────────────────────────────── */

:root {
  --df-primary:      #8E0000;
  --df-secondary:    #495057;
  --df-accent:       #FFFFFF;
  --df-font-display: 'Cormorant Garamond', Georgia, serif;
  --df-font-body:    'Jost', sans-serif;
}

.dallan-footer {
  font-family: var(--df-font-body);
  background: var(--df-secondary);
  color: var(--df-accent);
  -webkit-font-smoothing: antialiased;
}

/* ── Shared inner container ── */
.df-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Main content row ── */
.df-main {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.df-main .df-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* ── Brand block ── */
.df-brand-block { flex-shrink: 0; }
.df-brand-name {
  font-family: var(--df-font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--df-accent);
  text-decoration: none;
  display: block;
  line-height: 1;
  margin-bottom: 3px;
  transition: color 0.2s ease;
}
.df-brand-name:hover { color: rgba(255,255,255,0.75); }
.df-brand-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--df-primary);
  margin-bottom: 14px;
}
.df-address {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 6px;
}
.df-email {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.df-email:hover { color: var(--df-accent); }

/* ── Nav ── */
.df-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
}
.df-nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.df-nav a:hover { color: var(--df-accent); }

/* ── Bottom bar: social + copyright + agency logo ── */
.df-bottom {
  padding: 14px 0;
}
.df-bottom .df-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── Social icons ── */
.df-social {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.df-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.df-social a:hover {
  border-color: var(--df-primary);
  color: var(--df-accent);
  background: rgba(142,0,0,0.2);
}

/* ── Copyright ── */
.df-copyright {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.02em;
}

/* ── Agency logo (bottom-right of footer) ── */
.df-agency-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.df-agency-logo:hover {
  opacity: 1;
}
.df-agency-logo img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ── Hide Hello Elementor default footer ── */
.elementor-widget-theme-site-footer,
footer#colophon .site-info {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .df-inner { padding: 0 24px; }
  .df-main .df-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .df-nav ul { flex-wrap: wrap; gap: 16px; }
  .df-bottom .df-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .df-agency-logo { align-self: flex-start; }
}