/* --- Brand Colors (hardcoded color values) --- */

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333333;
  line-height: 1.6;
}

/* --- Header --- */
header {
  background-color: #000000;
  padding: 10px 20px;
}

nav {
  display: flex;
  flex-direction: column; /* stack logo and nav menu vertically */
  align-items: center;
  text-align: center;
}

.sticky-nav {
  position: sticky;
  top: 0;
  background-color: #000000;
  z-index: 1000;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.sticky-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  color: white;
  padding: 6px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  user-select: none;
}

.contact-left,
.contact-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* ===========================
   Portfolio Grid (Masonry Style)
=========================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Portfolio Item */
.portfolio-item {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Portfolio Images */
.portfolio-item img {
  width: 100%;       /* full width */
  height: auto;      /* keep natural aspect ratio */
  display: block;
  border-radius: 4px;
  transition: transform 0.4s ease;
  background: #fafafa;  /* light bg for transparency */
  object-fit: contain;
}

/* Hover zoom effect */
.portfolio-item:hover img {
  transform: scale(1.02);
}

/* Title Overlay */
.portfolio-item h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 8px 12px;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.portfolio-item:hover h3 {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive columns for smaller screens */
@media (max-width: 1200px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.sticky-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  transition: background 0.3s ease, color 0.3s ease;
}

.sticky-nav ul li a:hover {
  background-color: #ff6600;
  border-radius: 4px;
}

.logo {
  display: flex;
  align-items: left;
}

.logo img {
  height: 200px;
  margin-right: 10px;
}

.studio-name {
  margin-top: 50px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: #ff6600;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  transition: background 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
  background-color: #ff6600;
  border-radius: 4px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 80px 20px;
  height: 60vh;
  transition: background-image 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero h2 {
  font-size: 2.9rem;
  color: #ff6600;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 50px;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.btn {
  display: inline-block;
  background-color: #ff6600;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e65c00;
}

/* --- Page Section Styles --- */
section {
  padding: 50px 20px;
}

section h2 {
  font-family: 'Playfair Display', serif;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

section p {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* --- Services Grid --- */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 20px;
}

.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 3px solid transparent; /* space for blue border */
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  padding: 15px;
  font-size: 1.1rem;
}

.card,
.service-card {
  will-change: transform;
}

/* Hover effect with turquoise highlight */
.card:hover {
  transform: translateY(-5px);
  border: 3px solid #00c8c8;
  box-shadow: 0 4px 15px rgba(0, 200, 200, 0.4);
}

.portfolio-section {
  margin: 3rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.portfolio-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--brand-orange);
}

.portfolio-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.portfolio-section .grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.portfolio-section .grid img:hover {
  transform: scale(1.05);
}

.portfolio h2{
  color:#ff6600;
}

/* --- Portfolio Gallery --- */
.gallery {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* --- Contact Form --- */
form {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

form button {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

form button:hover {
  background-color: #e65c00;
}

/* --- Footer --- */
footer {
  background-color: #000000;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

/* Center buttons inside preview sections */
.preview .btn {
  display: inline-block;
  margin: 20px auto 0 auto; /* top margin, auto left/right */
}

.preview {
  text-align: center;
}

.site-footer {
  background-color: #000000;
  color: white;
  padding: 40px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-about p {
  margin-top: 15px;
  line-height: 1.5;
}

.footer-logo {
  width: 120px;
  display: block;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.page {
  text-align: center;
  margin-top: 50px;
  color: #ff6600;
}

.btn {
  margin-bottom: 50px;
}

.footer-links a {
  color: #f9f9f9;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00c8c8;
}

.footer-contact p {
  margin: 5px 0;
  line-height: 1.4;
}

.footer-social a {
  margin-right: 10px;
  display: inline-block;
}

.footer-social img {
  width: 24px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 15px;
}

/* About Page Custom Styles */
.about-page {
  padding-bottom: 3rem;
}

.about-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-hero-image {
  max-width: 380px;
  width: 90%;
  border-radius: 14px;
  box-shadow: 0 5px 32px rgba(0, 200, 200, 0.13);
  margin: 2rem auto 0;
  display: block;
}

.big-intro {
  font-size: 1.4rem;
  max-width: 620px;
  margin: 1.2rem auto 0 auto;
  font-style: italic;
  color: #000;
}

.highlight-heading {
  font-family: 'Playfair Display', serif;
  color: #ff6600;
  font-size: 2.44rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.about-bio-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.about-card {
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 200, 200, 0.06);
  border-radius: 9px;
  max-width: 320px;
  padding: 2rem 1.35rem;
  flex: 1 1 250px;
  text-align: left;
  min-width: 240px;
}

.about-card h3 {
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
  color: #00c8c8;
  letter-spacing: 1px;
}

.testimonial-section {
  margin: 2.5rem auto 0;
  text-align: center;
}

.testimonial-section blockquote {
  background: #00c8c8;
  color: #fff;
  border-radius: 10px;
  font-size: 1.2rem;
  padding: 1.2rem 2rem;
  margin: 0 auto 1.5rem;
  max-width: 600px;
  font-style: italic;
  box-shadow: 0 2px 8px rgba(0, 200, 200, 0.17);
}

.testimonial-author {
  font-size: 1rem;
  font-style: normal;
  display: block;
  margin-top: 0.7rem;
  font-family: 'Poppins', sans-serif;
  color: #000000;
}

/* Services Page Custom Styles */
.services-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-page .services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 0 auto 2rem auto;
  max-width: 1100px;
}
.location-section {
  padding: 60px 20px;
  text-align: center;
}

.location-section .location-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.location-section .location-gallery img {
  width: 45%;
  max-width: 400px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Google Map */
.footer-map {
  margin-top: 40px;
  text-align: center;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 200, 200, 0.10);
  padding: 1.7rem 1.35rem 1.4rem 1.35rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s, box-shadow 0.3s, border 0.3s;
  border: 3px solid transparent;
  min-height: 420px;
}

.service-card:hover {
  transform: translateY(-7px);
  border: 3px solid #00c8c8;
  box-shadow: 0 6px 35px rgba(0, 200, 200, 0.21);
}

.service-image {
  width: 100%;
  max-width: 240px;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.1rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.11);
}

.center-btn {
  text-align: center;
  margin-top: 20px;
}

.blog-post h2 {
  color: #ff6600;
}
.blog-post p {
  color:#000000
}

.blog-page h1 {
  text-align: center;
  margin-top: 50px;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  background-color: #ff6600; /* orange background */
  padding: 8px 12px;
  border-radius: 4px;
}


/* --- Responsive --- */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .location-section .location-gallery img {
    width: 100%;
    max-width: 100%;
  }

  /* --- Responsive Mobile Styles --- */

/* Tablet and below */
@media (max-width: 1024px) {
  .logo img {
    height: 120px;
  }

  .studio-name {
    font-size: 3rem;
    margin-top: 20px;
  }

  .hero {
    height: 50vh;
    padding: 60px 15px;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

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

  section {
    padding: 40px 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Stack nav vertically */
  .sticky-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .footer-map {
  margin-top: 40px;
  text-align: center;
  max-width: 100vw;
}

  .logo img {
    height: 90px;
  }

  .studio-name {
    font-size: 2.2rem;
    margin-top: 10px;
    text-align: center;
  }

  .hero {
    height: auto;
    padding: 50px 15px;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

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

  .grid,
  .services-page .services-grid {
    grid-template-columns: 1fr; /* stack cards */
  }

  .card img,
  .service-image {
    height: 160px;
  }

  .footer-container {
    grid-template-columns: 1fr; /* stack footer sections */
    text-align: center;
  }

  .footer-social {
    margin-top: 15px;
  }
}

/* Very Small Screens (phones in portrait) */
@media (max-width: 480px) {
  .studio-name {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

   .footer-map {
  margin-top: 40px;
  text-align: center;
  max-width: 100vw;
   }

  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .about-card {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }

  .testimonial-section blockquote {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}

/* --- Navigation --- */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Default nav menu (desktop) */
.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  transition: 0.3s;
}

.nav-menu li a:hover {
  background: #ff6600;
  border-radius: 4px;
}

/* --- Mobile Menu --- */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-right: auto;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -250px; /* hidden off-screen */
    height: 100%;
    width: 250px;
    background: #000;
    flex-direction: column;
    padding: 60px 20px;
    gap: 20px;
    transition: right 0.3s ease;
  }

  .nav-menu.active {
    right: 0; /* slide in */
  }

  .nav-menu li a {
    font-size: 1.2rem;
  }
}
}
