@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --color-midnight-green: #16302B;
    --color-forest-green: #175347;
    --color-golden-earth: #C79B74;
    --color-ivory-cream: #F9ECCC;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --nav-height: 80px;
    --nav-height-mobile: 64px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-ivory-cream);
    color: var(--color-midnight-green);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
}

h1, h2 { font-weight: 700; }
h3, h4 { font-weight: 600; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.text-ivory { color: var(--color-ivory-cream); }
.text-gold { color: var(--color-golden-earth); }
.text-midnight { color: var(--color-midnight-green); }

.eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.pull-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--color-golden-earth);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
    background-color: var(--color-golden-earth);
    color: var(--color-midnight-green);
}

.btn-primary:hover {
    background-color: #b38a65; /* Darker golden earth */
}

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

.btn-secondary:hover {
    background-color: var(--color-ivory-cream);
    color: var(--color-midnight-green);
}

.btn-ghost {
    background-color: transparent;
    border: 2px solid var(--color-midnight-green);
    color: var(--color-midnight-green);
}

.btn-ghost:hover {
    background-color: var(--color-midnight-green);
    color: var(--color-ivory-cream);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--color-midnight-green);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    height: 70px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-ivory-cream);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-ivory-cream);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-golden-earth);
    transition: width 0.3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: var(--color-ivory-cream);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-midnight-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.5s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-ivory-cream);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--color-midnight-green);
    color: var(--color-ivory-cream);
}

.section-light {
    background-color: var(--color-ivory-cream);
    color: var(--color-midnight-green);
}

.section-forest {
    background-color: var(--color-forest-green);
    color: var(--color-ivory-cream);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-midnight-green);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--color-golden-earth) 1px, transparent 1px),
                      linear-gradient(90deg, var(--color-golden-earth) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    margin-bottom: 20px;
    color: var(--color-ivory-cream);
}

.hero p {
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: var(--color-ivory-cream);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--color-golden-earth);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    padding: 40px;
    border-top: 4px solid var(--color-golden-earth);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.service-card.midnight { background-color: var(--color-midnight-green); color: var(--color-ivory-cream); }
.service-card.forest { background-color: var(--color-forest-green); color: var(--color-ivory-cream); }

.service-card .icon {
    width: 50px;
    height: 50px;
    color: var(--color-golden-earth);
}

.service-card h3 {
    font-size: 1.5rem;
}

.service-card .learn-more {
    margin-top: auto;
    font-weight: 600;
    color: var(--color-golden-earth);
}

/* Why Augury */
.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.feature-block {
    display: flex;
    gap: 20px;
}

.feature-number {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-golden-earth);
}

.feature-content h3 {
    margin-bottom: 10px;
    color: var(--color-ivory-cream);
}

/* Insights Preview */
.insight-card {
    background-color: var(--color-ivory-cream);
    border-top: 4px solid var(--color-golden-earth);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.insight-card .tag {
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--color-golden-earth);
    text-transform: uppercase;
}

.insight-card h3 {
    font-size: 1.25rem;
    color: var(--color-midnight-green);
}

.insight-card p {
    font-size: 0.9rem;
    color: var(--color-forest-green);
}

.insight-card a {
    color: var(--color-forest-green);
    font-weight: 600;
}

/* Stats */
.stats-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat-item .number {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--color-golden-earth);
    display: block;
}

.stat-item .label {
    font-size: 0.875rem;
    color: var(--color-ivory-cream);
}

/* Media Section */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.media-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--color-midnight-green);
    color: var(--color-ivory-cream);
    padding: 80px 0 40px;
    border-top: 1px solid var(--color-golden-earth);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--color-golden-earth);
    margin-bottom: 25px;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--color-golden-earth);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(249, 236, 204, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: var(--color-golden-earth);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-midnight-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: bounce-subtle 5s infinite;
}

@keyframes bounce-subtle {
    0%, 90%, 100% { transform: translateY(0); }
    95% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    header { height: var(--nav-height-mobile); }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    
    .grid-3, .grid-4, .grid-2x2, .stats-grid, .media-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-btns { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    
    section { padding: 60px 0; }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Placeholder Image */
.img-placeholder {
    background: var(--color-forest-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-golden-earth);
    font-family: var(--font-body);
    font-size: 12px;
    min-height: 200px;
    width: 100%;
}

/* Contact Form */
.contact-container {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-info {
    background-color: var(--color-midnight-green);
    color: var(--color-ivory-cream);
    padding: 60px;
}

.contact-form-wrapper {
    background-color: var(--color-ivory-cream);
    padding: 60px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 1px solid rgba(22, 48, 43, 0.2);
    font-family: var(--font-body);
    color: var(--color-midnight-green);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-golden-earth);
}

.success-message {
    display: none;
    background-color: var(--color-forest-green);
    color: var(--color-ivory-cream);
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}
