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

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #f0f0f0;
  background-color: #3b4d45;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: #f0f0f0;
}

a {
  color: inherit;
}

/* Layout helper */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 0rem;
}

section {
  padding: 2rem 0;   /* half the original */
}

/* Header / Nav */
header {
  background-color: #2e3c36;
  border-bottom: 1px solid #4a6058;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav {
  text-align: center;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

header nav ul li a {
  text-decoration: none;
  color: #f0f0f0;
  padding: 8px 10px;
  display: block;
  transition: color 0.3s;
  font-weight: 300;
  font-size: 0.9rem;
}

header nav ul li a:hover {
  color: #bfa180;
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* Hero (mobile-first) */
.hero {
  position: relative;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.45) 40%,
      rgba(0, 0, 0, 0.65) 100%
    ),
    url("images/550178109_10240447813238724_1246046258366546950_n.jpg") center center / cover no-repeat;
  background-color: #3b4d45;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #f8f8f8;
  text-align: center;
  overflow: hidden;
  padding: 80px 16px 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
  font-weight: 400;
}

.hero p {
  font-size: 1rem;
  color: #ddd;
  font-weight: 300;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid #4a6058;
  background-color: #4a6058;
  color: #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s,
    transform 0.15s ease;
}

.social-button:hover {
  background-color: #556b62;
  border-color: #bfa180;
  color: #bfa180;
  transform: translateY(-2px);
}

.social-icon {
  width: 18px;
  height: 18px;
}

/* About */
.about {
  padding: 60px 0;
  background-color: #3b4d45;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.about-image-wrapper {
  width: 100%;
  overflow: hidden;               /* hides edges when we zoom the image */
  border-radius: 10px;            /* optional: smooth corners */
  display: flex;
  justify-content: center;
  align-items: center;
}
/*
.about-image-wrapper {
  width: 100%;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
*/

.about-image {
  width: 120%;                    /* zoom in on flowers */
  height: auto;
  object-fit: cover;              /* ensures image fills container */
  transform: scale(1.2);          /* slight zoom effect */
  object-position: center 40%;    /* shifts focus upward slightly */
  transition: transform 0.4s ease, object-position 0.4s ease;
}

.about-image:hover {
  transform: scale(1.25);         /* optional: gentle zoom on hover */
  object-position: center 45%;
}

.about-text h3 {
  font-size: 1.6rem;
  color: #bfa180;
  margin-bottom: 16px;
}

/* Portfolio */
.gallery {
  padding: 60px 0;
  text-align: center;
  background-color: #3b4d45;
}

.gallery h3 {
  font-size: 1.6rem;
  color: #bfa180;
  margin-bottom: 10px;
}

.gallery p {
  margin-bottom: 20px;
}


/* === Recent Work Grid === */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;          /* grid-cols-1 */
  gap: 1.5rem;                         /* gap-6 */
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;          /* center + space below */
  padding: 0 1rem;
}


/* === Card styling (shadcn-like) === */
.project-card {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;              /* rounded-xl */
  border: 1px solid #4a6058;           /* border-card-border */
  background-color: #33433c;           /* bg-card */
  color: #f0f0f0;                      /* text-card-foreground */
  overflow: hidden;                    /* group overflow-hidden */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35); /* shadow-sm */
  cursor: pointer;                     /* cursor-pointer */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;       /* transition-all duration-300 */
}


/* hover-elevate feel */
.project-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
  border-color: #bfa180;
}

/* Hidden cards: collapsed from layout until Show More is clicked */
.hidden-card {
  display: none;
}

/* Reveal animation */
.project-reveal {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Make project card image-only */
.project-card.image-only {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card.image-only img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Hover zoom effect */
.project-card.image-only:hover img {
  transform: scale(1.04);
}

.project-card.image-only:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

/* image inside card */
.project-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* card body text */
.project-card h4 {
  margin: 14px 16px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #bfa180;
}

.project-tag {
  margin: 0 16px 14px;
  font-size: 0.9rem;
  color: #d0d7d3;
  /* aaa */
}

/* Responsive breakpoints */
/* md:grid-cols-2 */
@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* lg:grid-cols-3 */
@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


.view-all-btn {
  margin-top: 10px;
}


/* Buttons */
.button {
  display: inline-block;
  background: #bfa180;
  color: #3b4d45;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: #a58e6e;
}

/* Podcast */
.podcast {
  padding: 60px 0;
  text-align: center;
  background-color: #3b4d45;
}

.podcast h3 {
  font-size: 1.6rem;
  color: #bfa180;
  margin-bottom: 10px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.podcast-image {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.podcast p {
  max-width: 800px;
  margin: 0 auto 20px;
}

/* === Podcast Grid (Tailwind: grid md:grid-cols-2 gap-8 mb-12) === */
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr;   /* mobile = 1 column */
  gap: 1.5rem;                    /* gap-8 */
  margin-top: 2rem;
  margin-bottom: 3rem;          /* mb-12 */
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}


/* Podcast Card */
.podcast-block {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover elevation */
.podcast-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  border-color: #bfa180;             /* matches your accent color */
}

/* Icon */
.podcast-icon img {
  width: 36px;
  height: 36px;
  opacity: 0.85;
}

/* Text column */
.podcast-content {
  flex: 1;
  text-align: left;
}

.podcast-content h4 {
  margin: 0;
  font-size: 1.25rem;
  color: #d5b79e;
}

.podcast-content .duration {
  margin: 4px 0 12px;
  opacity: 0.8;
}

.podcast-content .description {
  margin-bottom: 16px;
  line-height: 1.5;
}


/* Podcast title */
.podcast-block h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #bfa180;
}

.podcast-tag {
  display: block;
  color: #d0d7d3;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* Podcast description */
.podcast-block p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #d9e4df;
} 

.podcast-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  text-decoration: none;
  color: #f0f0f0;
  border: 1px solid #4a6058;
  background-color: #4a6058;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s,
    transform 0.15s ease;
}

.podcast-link:hover {
  background-color: #556b62;
  border-color: #bfa180;
  color: #bfa180;
  transform: translateY(-1px);
}

/* Contact / Newsletter */
.contact {
  background-color: #3b4d45;
  padding: 60px 0;
}

.contact-flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.newsletter-form {
  text-align: left;
}

.newsletter-form h3 {
  color: #bfa180;
  margin-bottom: 10px;
}

.newsletter-form p {
  margin-bottom: 16px;
}

.newsletter-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 12px;
  border: none;
  border-radius: 4px;
  background-color: #4a6058;
  color: #f0f0f0;
}

.newsletter-form input[type="email"]::placeholder {
  color: #d0d7d3;
}

.small-text {
  margin-top: 10px;
  color: #d0d7d3; /* lighter = stronger contrast on #3b4d45 */
  font-size: 0.85rem;
}

/* Social icon links */
.social-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  text-decoration: none;
  color: #f0f0f0;
  border: 1px solid #4a6058;
  background-color: #4a6058;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  font-size: 0.85rem;
}

.social-icon-link:hover {
  background-color: #556b62;
  border-color: #bfa180;
  color: #bfa180;
}

.social-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.contact-image-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;               /* hides edges when we zoom the image */
  border-radius: 10px;            /* optional: smooth corners */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
}
/*
.contact-image {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
*/
.contact-image {
  width: 120%;                    /* zoom in on flowers */
  height: auto;
  object-fit: cover;              /* ensures image fills container */
  transform: scale(1.2);          /* slight zoom effect */
  object-position: center 40%;    /* shifts focus upward slightly */
  transition: transform 0.4s ease, object-position 0.4s ease;
}

.contact-image:hover {
  transform: scale(1.25);         /* optional: gentle zoom on hover */
  object-position: center 45%;
}

/* Footer */
footer {
  background-color: #2e3c36;
  color: #f0f0f0;
  padding: 40px 0 30px;
  font-family: "Playfair Display", serif;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

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

.footer-col h4 {
  color: #f0f0f0;
  margin-bottom: 15px;
  font-size: 1.2em;
  font-weight: 600;
}

.footer-col p,
.footer-col a,
.footer-col li {
  color: #cfcfcf;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  text-decoration: none;
  list-style: none;
}

.footer-col a:hover {
  color: #bfa180;
}

.footer-col ul {
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-links {
  margin-top: 15px;
  font-family: "Roboto", sans-serif;
  color: #cfcfcf;
  font-size: 0.9rem;
  text-align: center;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
  }

  .social-button {
    width: 80%;
    margin: 0 auto;
  }

  .contact-image-wrapper {
    max-height: 25vh;   /* one-third of the screen height */
    overflow: hidden;
  }

  .contact-image-wrapper img.contact-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  header nav ul {
    gap: 6px;
  }
}

/* Tablet and up */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: flex-start;
  }

/* md:grid-cols-2 */
  .podcast-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-image-wrapper {
    flex-basis: 40%;
    max-width: 380px;
  }

  .about-text {
    flex: 1;
  }


  .contact-flex {
    flex-direction: row;
    align-items: flex-start;
  }

  .newsletter-form {
    flex-basis: 55%;
  }

  
    .contact-image-wrapper {
    max-height: 20vh;   /* one-third of the screen height */
    overflow: hidden;
    flex-basis: 25%;
  }

  .contact-image-wrapper img.contact-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .newsletter-form form {
    flex-direction: row;
  }

  .newsletter-form input[type="email"] {
    max-width: 280px;
  }

  .footer-columns {
    flex-direction: row;
    text-align: left;
  }
}


/* Desktop large */
@media (min-width: 1024px) {
  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .podcast-grid {
    flex-direction: row;
  }
}

