/* Global Styles */
/* body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #111;
} */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

body > main {
  flex: 1;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
}
/* .logo {
  margin-right: auto;
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 0.5px; */
/* } */

.logo {
  color: #111;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

/* Prevent link color change on hover/active/focus/visited */
.logo:visited,
.logo:active,
.logo:hover,
.logo:focus {
  color: #111;
  text-decoration: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  transition: transform 0.3s ease-in-out;
  z-index: 1001;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background: #111;
  transition: all 0.3s ease;
}
.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active div:nth-child(2) {
  opacity: 0;
}
.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

nav {
  display: flex;
  align-items: center;
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav ul li {
  text-align: right;
}
nav ul li a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
}
nav ul li a:hover {
  text-decoration: underline;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 100%;
    right: 1rem;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-content {
    padding: 2rem;
  }

  nav ul.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 2rem;
    max-width: 90%;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-image: url("images/hero.png");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 3rem;
  border-radius: 12px;
  color: #fff;
  max-width: 700px;
  width: 90%;
  text-align: center;
  animation: fadeIn 1s ease-in;
  box-sizing: border-box;
}

.hero h1 {
  font-size: 3rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}
.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #333;
}

/* Quote Block */
.quote {
  text-align: center;
  padding: 4rem 1rem;
  font-style: italic;
  color: #555;
  background: #fafafa;
}

/* About Section */
.about {
  padding: 4rem 1rem;
  background: #fff;
}
.about h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.about p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Ventures Section */
.ventures {
  padding: 4rem 1rem;
  background: #f8f8f8;
}
.ventures h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.venture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.venture-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.venture-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.venture-card p {
  color: #555;
}

/* Footer */
.site-footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

/* BLOG SECTION */
.blog {
  padding: 4rem 1rem;
  background: #fff;
}
.blog h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.blog-post {
  background: #fafafa;
  padding: 2rem;
  padding-top: 6rem; /* space below the fixed header */
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.blog-post h3 {
  margin-top: 0;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.blog-post h3 a {
  text-decoration: none;
  color: #111;
}
.blog-post .post-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}
.blog-post p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}
.btn-sm {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  background: #111;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

/* CONTACT SECTION */
.contact {
  padding: 4rem 1rem;
  background: #f8f8f8;
}
.contact h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
button[type="submit"] {
  background-color: #111;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
  background-color: #333;
}

/* BLOG CARD HOVER ANIMATION */
.blog-post {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* FADE IN ANIMATION */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.back-button {
  display: inline-block;
  margin: 2rem 0 1rem 1rem;
  padding: 0.5rem 1rem;
  background-color: #111;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #444;
}

.venture-thumb {
  object-fit: cover;
  height: 180px;
}

.venture-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Modal (shared) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  animation: fadeIn 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.close-modal {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

.close-modal:hover {
  color: #000;
}
