/*
Theme Name: BH Tree Service
Theme URI: https://bhtreeservice.com
Author: Antigravity
Description: A pixel-perfect custom WordPress theme converted from React.
Version: 1.0.0
Text Domain: bh-tree-service
*/

/* Tailwind HSL Variables */
:root {
    --background: 0 0% 100%;
    --foreground: 0 0% 13%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 13%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 13%;
    --primary: 145 63% 32%;
    --primary-foreground: 0 0% 100%;
    --secondary: 0 0% 96%;
    --secondary-foreground: 0 0% 13%;
    --muted: 0 0% 96%;
    --muted-foreground: 0 0% 45%;
    --accent: 145 63% 32%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 0 0% 90%;
    --input: 0 0% 90%;
    --ring: 145 63% 32%;
    --radius: 0.5rem;
    --hero-overlay: 0 0% 0%;
    --section-dark: 0 0% 13%;
    --section-dark-foreground: 0 0% 100%;
}

.dark {
    --background: 0 0% 7%;
    --foreground: 0 0% 95%;
    --card: 0 0% 10%;
    --card-foreground: 0 0% 95%;
    --popover: 0 0% 10%;
    --popover-foreground: 0 0% 95%;
    --primary: 145 63% 42%;
    --primary-foreground: 0 0% 100%;
    --secondary: 0 0% 15%;
    --secondary-foreground: 0 0% 95%;
    --muted: 0 0% 15%;
    --muted-foreground: 0 0% 65%;
    --accent: 145 63% 42%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 62% 30%;
    --destructive-foreground: 0 0% 95%;
    --border: 0 0% 20%;
    --input: 0 0% 20%;
    --ring: 145 63% 42%;
}

/* Custom Styles from index.css */
.section-padding {
    padding: 4rem 1rem;
}
@media (min-width: 768px) {
    .section-padding {
        padding: 4rem 2rem;
    }
}
@media (min-width: 1024px) {
    .section-padding {
        padding: 6rem 4rem;
    }
}

.section-dark {
    background-color: hsl(var(--section-dark));
    color: hsl(var(--section-dark-foreground));
}

.container-wide {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: hsla(0, 0%, 0%, 0.6);
}

.wave-divider {
    position: relative;
}

.wave-divider::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: hsl(var(--background));
    clip-path: ellipse(55% 100% at 50% 100%);
}
