/*
Theme Name: Addigd Luxury Consultancy
Theme URI: https://addigd.com
Author: Addigd Agency
Author URI: https://addigd.com
Description: High-end consultancy WordPress theme with a luxury minimalist layout for landing, services, projects, and exclusive downloads.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: addigd-luxury
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', 'Cormorant Garamond', 'Segoe UI', Tahoma, sans-serif;
  font-weight: 400;
  margin: 0;
  background: #f8f7fc;
  color: #18326b;
  min-height: 100vh;
}

a {
  color: #18326b;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: rgba(248, 247, 252, 0.95);
  border-bottom: 1px solid rgba(24, 50, 107, 0.1);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4vw;
  gap: 2rem;
}

.site-branding .logo-mark {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 1.2rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  font-weight: 500;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.main-navigation a {
  font-weight: 500;
}

.hero-landing {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.hero-slab {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

.hero-slab .big-logo {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.4rem;
}

.hero-slab .intro-text {
  max-width: 620px;
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.01rem;
  color: rgba(24, 50, 107, 0.85);
}

.hero-slab .cta-button {
  display: inline-flex;
  border: 1px solid #18326b;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.2rem;
  background: transparent;
}

.section,
.projects-section,
.about-section,
.services-section,
.contact-section {
  padding: 4rem 4vw;
}

.section-title {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(24, 50, 107, 0.8);
}

.grid-3,
.grid-2,
.grid-services,
.grid-badges {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card,
.project-card,
.download-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(24, 50, 107, 0.15);
  padding: 1.8rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-card h3,
.project-card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 1.5rem;
}

.project-card p {
  margin: 0;
  color: rgba(24, 50, 107, 0.75);
}

.projects-section .project-intro {
  margin-bottom: 2rem;
}

.contact-map {
  height: 300px;
  border-radius: 1.75rem;
  border: 1px solid rgba(24, 50, 107, 0.25);
  background: linear-gradient(135deg, rgba(24, 50, 107, 0.1), rgba(24, 50, 107, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}

.contact-details {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 2;
}

.footer {
  background: #0b1230;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 4vw;
}

.footer .footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer .footer-brand {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  letter-spacing: 0.4rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  letter-spacing: 0.2rem;
}

.footer a:hover {
  color: white;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
  }

  .main-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-slab .cta-button {
    width: 100%;
    justify-content: center;
  }
}
