/* ============================================
   AnthonyCanzano.com - Flat HTML Rebuild
   Brand Colors:
   - Magenta/Pink: #e4298c
   - Dark Navy: #1d283d
   - Teal: #004b46
   - Light Pink BG: #fdf4fe
   - Body Font: IBM Plex Sans
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  color: #212529;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-white { color: #fff; }
.text-pink { color: #e4298c; }
.text-navy { color: #1d283d; }
.text-teal { color: #004b46; }

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  border: none;
  line-height: 1.3;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-pink {
  background: #e4298c;
  color: #fff;
}
.btn-teal {
  background: #004b46;
  color: #fff;
}
.btn-outline-pink {
  background: transparent;
  border: 2px solid #e4298c;
  color: #e4298c;
}
.btn-lg {
  padding: 20px 40px;
  font-size: 1.1rem;
}
.btn-full { width: 100%; display: block; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 12px;
}

.header-logo img {
  height: 55px;
  width: auto;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e4298c;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.header-phone svg {
  width: 20px;
  height: 20px;
  fill: #e4298c;
}

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #212529;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.main-nav a:hover { color: #e4298c; }

.main-nav .nav-cta {
  background: #e4298c;
  color: #fff !important;
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: 600;
}

.main-nav .nav-cta:hover { background: #c91f7a; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #1d283d;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 12px 20px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #212529;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .nav-cta {
  background: #e4298c;
  color: #fff !important;
  text-align: center;
  border-radius: 4px;
  padding: 14px;
  margin-top: 8px;
  border-bottom: none !important;
}

/* ============================================
   HOME PAGE SECTIONS
   ============================================ */

/* Hero Section */
.hero-section {
  background: #fff;
  padding: 40px 20px 20px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.hero-photo {
  flex-shrink: 0;
  width: 200px;
}
.hero-photo img {
  width: 100%;
  border-radius: 8px;
}
.hero-text h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #1d283d;
}
.hero-text h1 .highlight {
  color: #e4298c;
}

/* Services Grid */
.services-section {
  padding: 30px 20px;
  background: #fff;
}
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.service-card:hover img { transform: scale(1.03); }

/* Pink Bio Section */
.bio-section {
  background: #e4298c;
  color: #fff;
  padding: 40px 20px;
}
.bio-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.bio-photo {
  flex-shrink: 0;
  width: 180px;
}
.bio-photo img {
  width: 100%;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.3);
}
.bio-text p {
  font-size: 1rem;
  line-height: 1.7;
}
.bio-text strong { font-weight: 700; }

/* Neighbor Section */
.neighbor-section {
  background: #fdf4fe;
  padding: 50px 20px;
}
.neighbor-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.neighbor-content { flex: 1; }
.neighbor-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1d283d;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.neighbor-content h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #212529;
  font-weight: 600;
  margin-bottom: 20px;
}
.neighbor-list {
  list-style: none;
  padding: 0;
}
.neighbor-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0e6f5;
}
.neighbor-list li::before {
  content: '🏠';
  position: absolute;
  left: 0;
  top: 8px;
}
.neighbor-photo {
  flex-shrink: 0;
  width: 220px;
}
.neighbor-photo img {
  width: 100%;
  border-radius: 8px;
}

/* Contact CTA Section */
.contact-cta-section {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}
.contact-cta-section h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #1d283d;
  margin-bottom: 20px;
}
.contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #e4298c;
}
.contact-email {
  font-size: 1rem;
  color: #212529;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Logo + Book Section */
.logo-book-section {
  background: #fff;
  padding: 30px 20px;
}
.logo-book-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Opt-in Section */
.optin-section {
  background: #fdf4fe;
  padding: 50px 20px;
}
.optin-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.optin-book {
  flex-shrink: 0;
  width: 200px;
}
.optin-book img { width: 100%; }
.optin-content { flex: 1; }
.optin-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e4298c;
  margin-bottom: 8px;
}
.optin-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #1d283d;
  margin-bottom: 12px;
}
.optin-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

/* Opt-in Form */
.optin-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.optin-form .form-row {
  display: flex;
  gap: 10px;
}
.optin-form input[type="text"],
.optin-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.optin-form input:focus { border-color: #e4298c; }
.optin-form .form-privacy {
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
}
.optin-form .form-privacy a { color: #e4298c; text-decoration: underline; }

/* Dark CTA Section */
.dark-cta-section {
  background: #1d283d;
  color: #fff;
  padding: 40px 20px;
}
.dark-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.dark-cta-photo {
  flex-shrink: 0;
  width: 160px;
}
.dark-cta-photo img {
  width: 100%;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.2);
}
.dark-cta-content p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 4px;
}
.dark-cta-content h3 {
  font-size: 1.2rem;
  color: #fff;
}

/* Properties Section */
.properties-section {
  background: #fff;
  padding: 50px 20px;
}
.properties-section h2 {
  text-align: center;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #1d283d;
  margin-bottom: 8px;
}
.properties-section h3 {
  text-align: center;
  font-size: 1rem;
  color: #555;
  font-weight: 400;
  margin-bottom: 30px;
}
.properties-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.property-card {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.property-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.property-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1d283d;
  color: #fff;
  padding: 40px 20px 20px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo img { height: 60px; width: auto; }
.footer-nav h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer-nav-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: #e4298c; }
.footer-nav-links .nav-cta {
  background: #e4298c;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
}
.footer-contact { text-align: right; }
.footer-contact a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #e4298c; }
.footer-contact .phone-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-social a:hover img { opacity: 1; }

/* ============================================
   INNER PAGE HERO (Sell, Buy, Build, etc.)
   ============================================ */
.page-hero {
  background: #fdf4fe;
  padding: 50px 20px 40px;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.page-hero-content { flex: 1; }
.page-hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e4298c;
  margin-bottom: 10px;
}
.page-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #1d283d;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero-content h1 .highlight { color: #e4298c; }
.page-hero-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 24px;
  max-width: 520px;
}
.page-hero-photo {
  flex-shrink: 0;
  width: 200px;
}
.page-hero-photo img {
  width: 100%;
  border-radius: 8px;
}

/* Dark section */
.dark-section {
  background: #1d283d;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}
.dark-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 16px;
}
.dark-section p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto 24px;
}

/* Content section */
.content-section {
  padding: 50px 20px;
  background: #fff;
}
.content-section-inner {
  max-width: 900px;
  margin: 0 auto;
}
.content-section h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #1d283d;
  margin-bottom: 16px;
}
.content-section p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Benefits list */
.benefits-section {
  background: #fdf4fe;
  padding: 50px 20px;
}
.benefits-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.benefits-inner h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #1d283d;
  text-align: center;
  margin-bottom: 30px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefit-item {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.benefit-item h4 {
  font-size: 1rem;
  color: #e4298c;
  margin-bottom: 8px;
}
.benefit-item p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* Guarantee section */
.guarantee-section {
  background: #004b46;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}
.guarantee-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 16px;
}
.guarantee-section p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 24px;
}
.guarantee-list {
  max-width: 600px;
  margin: 0 auto 30px;
  text-align: left;
}
.guarantee-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.guarantee-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e4298c;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Photography section */
.photo-section {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
}
.photo-section h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #1d283d;
  margin-bottom: 8px;
}
.photo-section p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 30px;
}
.listing-showcase {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.listing-showcase img {
  max-width: 380px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ============================================
   POPUP / MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  padding: 30px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
  background: none;
  border: none;
  line-height: 1;
}
.modal-close:hover { color: #333; }
.modal-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.modal-book { flex-shrink: 0; width: 140px; }
.modal-book img { width: 100%; }
.modal-content { flex: 1; }
.modal-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e4298c;
  margin-bottom: 8px;
}
.modal-content h2 {
  font-size: 1.3rem;
  color: #1d283d;
  margin-bottom: 12px;
  line-height: 1.3;
}
.modal-content p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 16px;
}

/* ============================================
   ABOUT ME PAGE
   ============================================ */
.about-hero {
  background: #fdf4fe;
  padding: 60px 20px;
}
.about-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}
.about-photo {
  flex-shrink: 0;
  width: 240px;
}
.about-photo img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.about-content h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #1d283d;
  margin-bottom: 8px;
}
.about-content .subtitle {
  font-size: 1rem;
  color: #e4298c;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ============================================
   SECRET LIST PAGE
   ============================================ */
.secret-hero {
  background: #1d283d;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.secret-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.secret-hero h1 .highlight { color: #e4298c; }
.secret-hero p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* ============================================
   TEXT ALERTS / INSTANT ALERTS PAGE
   ============================================ */
.alerts-hero {
  background: linear-gradient(135deg, #1d283d 0%, #004b46 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.alerts-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.alerts-hero h1 .highlight { color: #e4298c; }
.alerts-hero p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* ============================================
   PRIVACY POLICY
   ============================================ */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
}
.privacy-content h1 {
  font-size: 2rem;
  color: #1d283d;
  margin-bottom: 24px;
}
.privacy-content h2 {
  font-size: 1.2rem;
  color: #1d283d;
  margin: 24px 0 10px;
}
.privacy-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Header */
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-phone span { display: none; }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-photo { width: 140px; margin: 0 auto; }

  /* Services grid */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .service-card img { height: 160px; }

  /* Bio */
  .bio-inner { flex-direction: column; text-align: center; }
  .bio-photo { width: 120px; margin: 0 auto; }

  /* Neighbor */
  .neighbor-inner { flex-direction: column; }
  .neighbor-photo { width: 100%; max-width: 300px; margin: 0 auto; }

  /* Optin */
  .optin-inner { flex-direction: column; }
  .optin-book { width: 160px; margin: 0 auto; }
  .optin-form .form-row { flex-direction: column; }

  /* Dark CTA */
  .dark-cta-inner { flex-direction: column; text-align: center; }
  .dark-cta-photo { margin: 0 auto; }

  /* Properties */
  .properties-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-contact { text-align: center; }
  .footer-contact a { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }

  /* Page hero */
  .page-hero-inner { flex-direction: column; text-align: center; }
  .page-hero-photo { width: 160px; margin: 0 auto; }
  .page-hero-content p { margin: 0 auto 24px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* About */
  .about-hero-inner { flex-direction: column; text-align: center; }
  .about-photo { width: 200px; margin: 0 auto; }

  /* Modal */
  .modal-inner { flex-direction: column; }
  .modal-book { width: 120px; margin: 0 auto; }

  /* Listing showcase */
  .listing-showcase img { max-width: 100%; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card img { height: 200px; }
  .btn-lg { padding: 16px 24px; font-size: 1rem; }
}
