/*
Theme Name: Trebia Custom Theme
Theme URI: https://trebiacapital.com/
Author: Trebia Design Bot
Description: A custom WordPress theme inspired by the clean, modern design of TP Birch Grove. Built for Trebia Capital.
Version: 1.0
Tags: custom-theme, trebiacapital, minimal, corporate
*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&display=swap');


/*
 * Stylesheet for the Trebia Capital WordPress theme
 * The CSS below mirrors the design used in the static prototype.
 */

/* Root variables for easy theming */
:root {
  --primary-color: #2f73b3; /* a mid blue reminiscent of TP Birch Grove */
  --secondary-color: #0c2340; /* deep blue for darker accents */
  --light-bg: #f9fafb; /* very light background for content sections */
  --text-color: #1f2937; /* dark grey for body text */
  --accent-color: #4b9cd3; /* lighter blue used for highlights */
  --font-sans: 'Montserrat', Arial, sans-serif;
-
/*--font-serif: 'Cinzel',serif;*/
--font-serif: 'Cormorant Garamond',serif;
	

/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-bg);
}

/* Navigation bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
display:none !important;o
  justify-content: space-between;
  align-items: center;
padding: 20px 40px;  background-color: var(--primary-color);
  color: #fff;
  z-index: 1000;
}

	
	/* Hide navigation bar */
nav {
    display: none !important;
}


/* Hide navigation bar */
nav {
    display: none !important;
}

nav .logo a {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  text-decoration: none;
}

nav .nav-links ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
}

nav .nav-links a:hover {
  opacity: 0.8;
}

/* Hero sections */

	
	/* Updated navigation bar style */
nav {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    background-color: transparent !important;
    color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav .logo {
    display: none;
}
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
/*  background-image: url('images/hero-bg.png');*/
  background-image: url('http://trebiacapital.com/wp-content/uploads/2025/11/a-photorealistic-hyper-detailed-landscape-of-the-t2-3.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 80px; /* offset for fixed nav */
}

.hero.small {
  height: 50vh;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 10.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.callouts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.callout {
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  padding-top: 20px;
  min-width: 160px;
}

.callout h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin: 0;
  color: #fff;
}

.callout p {
  margin: 0;
  font-size: 0.9rem;
  color: #e6f0f8;
}

/* Content sections */
section.content {
  padding: 120px 40px 80px 40px;
  background-color: var(--light-bg);
}

section.content h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

section.content h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

section.content p {
  margin-bottom: 16px;
  max-width: 800px;
}

/* Grid layout for approach and team pages */
.flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.flex-item {
  flex: 1;
  min-width: 250px;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 30px 40px;
  text-align: center;
  font-size: 0.9rem;
}