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

/* CSS Variables - Updated Moodboard */
:root {
  --clr-obsidian: #121212;
  --clr-ash-gold: #CBA135;
  --clr-bone-white: #F5F5F0;
  --clr-wine: #4B1D1D;
}

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

/* Base Styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-bone-white);
  background-color: var(--clr-obsidian);
  overflow-x: hidden;
  position: relative;
}

/* Grain Overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.02;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.loaded .fade-in {
  opacity: 1;
}

/* Typography */
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Utility Classes */
.container {
  max-width: 73.75rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.vh-100 {
  min-height: 100vh;
}

/* Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.site-nav.scrolled {
  background-color: var(--clr-obsidian);
  border-bottom: 0.5rem solid var(--clr-ash-gold);
  padding: 0.5rem 0;
}
.site-nav.scrolled .logo img{
    width: 2.5rem;
}

.nav-wrapper {
  max-width: 73.75rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo img {
  display: block;
  width: 4.5rem;
  transition: width 0.2s ease;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--clr-ash-gold);
}
.nav-links a.active {
  color: var(--clr-ash-gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--clr-ash-gold);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.3125rem, -0.3125rem);
}

/* Updated Hero Section */
#hero {
  position: relative;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 10vw;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 120vh;
  object-fit: cover;
  object-position: 50% 70%;
  transform: scale(0.8);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 44%;
  height: 100%;
  background: linear-gradient(to right, 
    rgba(18, 18, 18, 0.95) 0%, 
    rgba(18, 18, 18, 0.85) 45%, 
    rgba(18, 18, 18, 0.6) 70%, 
    rgba(18, 18, 18, 0) 100%
  );
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 6rem 2rem 2rem;
  max-width: 73.75rem;
  margin: 0 auto;
}

.hero-content {
  max-width: 40rem;
}

.hero-content h1 {
  font-size: 3.375rem;
  line-height: 1.1;
  color: var(--clr-bone-white);
  margin-bottom: 1rem;
}

.hero-content h2 {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--clr-ash-gold);
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.125rem;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.btn-gold {
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid var(--clr-ash-gold);
  color: var(--clr-ash-gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.btn-gold:hover {
  background-color: var(--clr-wine);
  border-color: var(--clr-wine);
  color: var(--clr-bone-white);
  transform: translateY(-2px);
}

/* Scroll Teaser */
.scroll-teaser {
  position: absolute;
  bottom: 2rem;
  left: 55%;
  transform: translateX(-50%);
  z-index: 4;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 95%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) translateY(5px);
  }
}

/* About & Services Section */
.dark-strip {
  background-color: var(--clr-obsidian);
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 4rem;
}

.about-block h2,
.services-block h2 {
  font-size: 3rem;
  color: var(--clr-ash-gold);
  margin-bottom: 2rem;
}

.about-block p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.text-link {
  color: var(--clr-bone-white);
  text-decoration: underline;
  transition: all 0.2s ease;
}

.text-link:hover {
  color: var(--clr-ash-gold);
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-icon {
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.service-item:hover .service-icon {
  fill: var(--clr-ash-gold);
}

/* Blog Teaser Section */
#blog-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.blog-content h2 {
  font-size: 2rem;
  color: var(--clr-ash-gold);
  margin-bottom: 0.5rem;
}

.blog-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--clr-bone-white);
}

.meta {
  font-size: 0.875rem;
  color: var(--clr-ash-gold);
  margin-bottom: 1rem;
}

.blog-image {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--clr-wine);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.blog-image:hover::after {
  opacity: 0.3;
}

.blog-image:hover img {
  transform: scale(1.05);
}

/* Footer */
.site-foot {
  background-color: var(--clr-obsidian);
  padding: 2rem 0;
  border-top: 1px solid rgba(203, 161, 53, 0.2);
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, var(--clr-obsidian) 20%, var(--clr-wine) 50%, var(--clr-obsidian) 90%);
}

.footer-wrapper {
  max-width: 73.75rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 4rem;
  height: auto;
}

.copyright {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.6);
}

.footer-left{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-write{
    display: flex;
    flex-direction: column;
}

.name {
  font-size: 1.4rem;
  color: var(--clr-ash-gold);
  margin-bottom: 0.25rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}


.footer-right{
    display: flex;
    gap: 1rem;
}
.social-icon {
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #d4af37;
  transform: scale(1.2);
}


.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.6);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--clr-ash-gold);
}

/* Responsive Design */
@media (max-width: 80rem) {
  #hero {
    max-width: 100%;
  }
}

@media (max-width: 62rem) {
  /* Mobile Navigation */
  .nav-links {
    position: fixed;
    top: 5.8rem;
    right: -100%;
    width: 100%;
    height: calc(100vh - 5rem);
    background: var(--clr-obsidian);
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: right 0.3s ease;
    border-top: 1px solid var(--clr-ash-gold);
    transition: top 0.2s ease;

  }
  .site-nav.scrolled .nav-wrapper .nav-links{
    top: 3.8rem !important;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  /* Hero Mobile */
  .hero-overlay {
    background: rgba(18, 18, 18, 0.85);
  }
  
  .hero-content-wrapper {
    text-align: center;
    padding: 4rem 2rem 2rem;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .scroll-teaser {
    display: none;
  }
  
  /* Grid Adjustments */
  .grid-two,
  #blog-teaser .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 48rem) {
  /* Typography Scale Down */
  .hero-content h1 {
    font-size: 2.375rem;
  }
  
  .hero-content h2 {
    font-size: 1.125rem;
  }
  
  .about-block h2,
  .services-block h2 {
    font-size: 2rem;
  }
  
  .blog-content h3 {
    font-size: 1.75rem;
  }
  
  /* Footer Mobile */
  .footer-wrapper {
    flex-direction: column;
    gap: 4rem;
    text-align: center;
  }
  .site-foot{
    background: var(--clr-obsidian);
  }
}

@media (max-width: 30rem) {
  /* Small Mobile */
  .hero-content h1 {
    font-size: 2.375rem;
  }
  
  .btn-gold {
    width: 100%;
    text-align: center;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .dark-strip {
    padding: 3rem 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .btn-gold:hover,
  .blog-image:hover img {
    transform: none !important;
  }
  
  .scroll-teaser {
    animation: none !important;
  }
  
  .fade-in {
    opacity: 1 !important;
  }
}

/* Print Styles */
@media print {
  .site-nav,
  .btn-gold,
  .text-link,
  .grain-overlay,
  .scroll-teaser {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}

















/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .site-nav {
    background-color: #121212b0;
    padding: 0.75rem 0;
  }
  

  
  /* Mobile Hero - Complete Redesign */
  #hero {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100vh;
    min-height: -webkit-fill-available; /* iOS fix */
  }
  
  .hero-image-container {
    position: relative;
    left: 0;
    width: 100%;
    height: 100%;
    flex: 1;
  }
  
  .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1);
  }
  
  .hero-overlay {
    width: 100%;
    background: linear-gradient(to bottom,
      rgba(18, 18, 18, 0) 0%,
      rgba(18, 18, 18, 0) 40%,
      rgba(18, 18, 18, 0.7) 70%,
      rgba(18, 18, 18, 0.95) 100%
    );
  }
  
  .hero-content-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 4rem;
    text-align: center;
    z-index: 3;
    min-height: auto;
    display: block;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-content h2 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  
  .tagline {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
  }
  
  .btn-gold {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    width: auto;
    min-width: 200px;
  }
  
  .scroll-teaser {
    display: none;
  }
  
  /* Add bottom indicator bar */
  #hero::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--clr-bone-white);
    border-radius: 2px;
    opacity: 0.5;
  }
  
  /* Rest of mobile styles */
  .dark-strip {
    padding: 3rem 0;
  }
  
  .grid-two,
  #blog-teaser .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-block h2,
  .services-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .service-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-content h3 {
    font-size: 1.75rem;
  }
}











/* Tablet/iPad View (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .site-nav {
    background-color: #121212b0;
  }
  .hero-image-container {
    left: 0;
  }
  .hero-content-wrapper {
padding-top: 60vh !important;
}
  
  .hero-bg-image {
    transform: scale(0.9);
    object-position: 50% -15vh;
  }
  
  .hero-overlay {
    width: 100%;
    background: linear-gradient(to right, 
      rgba(18, 18, 18, 0.92) 0%, 
      rgba(18, 18, 18, 0.17) 50%, 
      rgba(18, 18, 18, 0.49) 80%, 
      rgba(18, 18, 18, 1) 100%
    );
  }
  .hero-content {
margin: 10px auto;
background: #12121214;
}
}
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .hero-content-wrapper {
    padding: 5rem 2rem 2rem;
  }


  /* Landscape Mobile Orientation */
@media (max-height: 600px) and (orientation: landscape) {
  #hero {
    min-height: 100vh;
  }
  
  .hero-content-wrapper {
    padding: 1.5rem 1.5rem 2rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  
  .tagline {
    margin-bottom: 1rem;
  }
  
  .btn-gold {
    padding: 0.625rem 2rem;
  }
}


/* Ventures Section - Replaces Blog Teaser */
.ventures-content h2 {
  font-size: 2rem;
  color: var(--clr-ash-gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.ventures-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--clr-bone-white);
}

.ventures-intro {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  color: var(--clr-bone-white);
  opacity: 0.85;
}

.ventures-logos {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.venture-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.venture-logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.venture-logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: var(--clr-wine);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: 0;
}

.venture-item:hover .venture-logo::before {
  width: 100%;
  height: 100%;
}

.venture-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.venture-item:hover .venture-logo {
  border-color: var(--clr-ash-gold);
  transform: translateY(-5px);
}

.venture-item:hover .venture-logo img {
  filter: brightness(0) invert(0.8) sepia(1) saturate(2) hue-rotate(15deg);
}

.venture-name {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--clr-bone-white);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.venture-item:hover .venture-name {
  color: var(--clr-ash-gold);
}

/* Responsive Design for Ventures */
@media (max-width: 62rem) {
  .ventures-logos {
    justify-content: center;
    gap: 2rem;
  }
  
  .venture-logo {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 48rem) {
  .ventures-content h3 {
    font-size: 1.75rem;
  }
  
  .ventures-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .ventures-logos {
    flex-direction: row;
    gap: 1.5rem;
  }
  
  .venture-logo {
    width: 90px;
    height: 90px;
    padding: 1.25rem;
  }
  
  .venture-name {
    font-size: 1rem;
  }
}

@media (max-width: 30rem) {
  .ventures-logos {
    gap: 1.25rem;
  }
  
  .venture-logo {
    width: 80px;
    height: 80px;
    padding: 1rem;
  }
  
  .venture-name {
    font-size: 0.875rem;
  }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .ventures-content {
    text-align: center;
  }
  
  .ventures-logos {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .ventures-content h2 {
    font-size: 1.75rem;
  }
  
  .ventures-content h3 {
    font-size: 2rem;
  }
}

/* Tablet/iPad View (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .ventures-logos {
    justify-content: flex-start;
  }
}
/* Ventures Section - Replaces Blog Teaser */
.ventures-content h2 {
  font-size: 2rem;
  color: var(--clr-ash-gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.ventures-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--clr-bone-white);
}

.ventures-intro {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  color: var(--clr-bone-white);
  opacity: 0.85;
}

.ventures-logos {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.venture-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.venture-logo {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.venture-logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: var(--clr-wine);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: 0;
}

.venture-item:hover .venture-logo::before {
  width: 100%;
  height: 100%;
}

.venture-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.venture-item:hover .venture-logo {
  border-color: var(--clr-ash-gold);
  transform: translateY(-5px);
}

.venture-item:hover .venture-logo img {
  filter: brightness(0) invert(0.8) sepia(1) saturate(2) hue-rotate(15deg);
}

.venture-name {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--clr-bone-white);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.venture-item:hover .venture-name {
  color: var(--clr-ash-gold);
}

/* Responsive Design for Ventures */
@media (max-width: 62rem) {
  .ventures-logos {
    justify-content: center;
    gap: 2.5rem;
  }
  
  .venture-logo {
    width: 140px;
    height: 140px;
    padding: 1.75rem;
  }
}

@media (max-width: 48rem) {
  .ventures-content h3 {
    font-size: 1.75rem;
  }
  
  .ventures-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .ventures-logos {
    flex-direction: row;
    gap: 2rem;
  }
  
  .venture-logo {
    width: 120px;
    height: 120px;
    padding: 1.5rem;
  }
  
  .venture-name {
    font-size: 1.125rem;
  }
}

@media (max-width: 30rem) {
  .ventures-logos {
    gap: 1.5rem;
  }
  
  .venture-logo {
    width: 100px;
    height: 100px;
    padding: 1.25rem;
  }
  
  .venture-name {
    font-size: 1rem;
  }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .ventures-content {
    text-align: center;
  }
  
  .ventures-logos {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .ventures-content h2 {
    font-size: 1.75rem;
  }
  
  .ventures-content h3 {
    font-size: 2rem;
  }
  
  .venture-logo {
    width: 110px;
    height: 110px;
  }
}

/* Tablet/iPad View (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .ventures-logos {
    justify-content: flex-start;
  }
  
  .venture-logo {
    width: 150px;
    height: 150px;
  }
}
