/*
Theme Name: Twenty Twenty-Five Child - Kinetic
Theme URI: https://keithratner.live
Description: Premium dark theme inspired by business card design
Author: Keith Ratner
Author URI: https://keithratner.live
Template: twentytwentyfive
Version: 1.0.0
Text Domain: twentytwentyfive-child-kinetic
Domain Path: /languages
*/

/* Import parent theme styles */
@import url("../twentytwentyfive/style.css");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --color-dark: #2c2825;
  --color-dark-lighter: #3a3530;
  --color-cream: #f7f4ef;
  --color-gold: #b8953e;
  --color-gold-light: #d4b36a;
  --color-taupe: #9a9590;
  --color-text: #f7f4ef;
  --color-text-secondary: #9a9590;
}

* {
  box-sizing: border-box;
}

html, body {
  background-color: var(--color-dark);
  color: var(--color-text);
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-cream);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin: 0 0 1rem 0;
  font-weight: 500;
  letter-spacing: 0.03em;
}

h2 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  margin: 2.5rem 0 1.5rem 0;
  font-weight: 500;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin: 1.5rem 0 1rem 0;
}

p {
  font-size: 1rem;
  margin: 1rem 0;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-gold-light);
}

/* Override parent theme */
body {
  background: var(--color-dark);
  min-height: 100vh;
}

/* Site header - push away from left edge */
#header {
  padding-left: 2rem !important;
  margin-left: 0 !important;
}

#headerimg {
  padding-left: 0 !important;
}

#header h1 {
  margin-left: 0 !important;
  padding-left: 0 !important;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.description {
  margin-left: 0 !important;
  padding-left: 0 !important;
  font-family: "Outfit", sans-serif;
  display: none;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Sections */
section {
  padding: 5rem 2rem;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 1.5rem;
  }
}

/* Accent colors */
.gold {
  color: var(--color-gold);
}

.gold-light {
  color: var(--color-gold-light);
}

/* Buttons */
.btn, button, input[type="submit"] {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background-color: var(--color-gold);
  color: var(--color-dark);
  border: 2px solid var(--color-gold);
  border-radius: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn:hover, button:hover, input[type="submit"]:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: none;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-dark);
}

/* Input fields */
input[type="text"],
input[type="email"],
textarea {
  background-color: var(--color-dark-lighter);
  color: var(--color-text);
  border: 1px solid var(--color-gold);
  border-opacity: 0.3;
  padding: 0.875rem 1.25rem;
  border-radius: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-gold-light);
  background-color: rgba(212, 179, 106, 0.05);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-light);
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Gold separator dots */
.separator-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  margin: 0 1rem;
  opacity: 0.4;
  vertical-align: middle;
}

/* Divider line */
.divider {
  height: 1.5px;
  background-color: var(--color-gold);
  opacity: 0.2;
  margin: 2.5rem 0;
  border: none;
}

/* Card styles */
.card {
  background-color: rgba(212, 179, 106, 0.03);
  border: 1px solid rgba(212, 179, 106, 0.1);
  padding: 2rem;
  border-radius: 0;
  transition: all 0.4s ease;
}

.card:hover {
  border-color: rgba(212, 179, 106, 0.3);
  background-color: rgba(212, 179, 106, 0.08);
}

/* Subtle animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Focus styles */
:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.contact-value {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-cream);
  opacity: 0.9;
  letter-spacing: 0.03em;
}

/* Services list */
.services-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-taupe);
}

.services-list > span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Gold bar accent (right side) */
.gold-bar-right {
  position: fixed;
  right: 0;
  top: 0;
  width: 12px;
  height: 100%;
  background: linear-gradient(to bottom, #b8953e 0%, #d4b36a 50%, #b8953e 100%);
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 768px) {
  .gold-bar-right {
    display: none;
  }
}

/* Hide WordPress footer */
#footer {
  display: none;
}
