:root {
    --primary-color: #1f2312;
    --secondary-color: #1c1911;
    --background-color: #090a0b;
    --nav-background: black;
    --button-background: #2d3120;
    --hover-color: #2d3120;
    --content-background: #ece7d5;
}

body {
    font-family: 'IM Fell English', serif;
    background-color: #121212;
    color: #ece7d5;
    text-align: center;
    font-size: 1rem;
    margin: 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--nav-background);
    padding: 10px 20px;
    position: relative;
}

.logo {
    max-width: 150px;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li a {
    color: #ece7d5;
    text-decoration: none;
    padding: 10px 20px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    background: var(--hover-color);
    padding: 20px;
    border-radius: 5px;
    font-size: 1.2rem;
}

.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
.artist-section {
  margin-bottom: 4rem;
  padding: 1rem;
  border-bottom: 2px solid #ccc;
}

.artist-header {
  text-align: center;
  margin-bottom: 1rem;
}

.artist-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.artist-header p {
  font-size: 1rem;
  color: #666;
}

.flash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default: 3 columns */
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.flash-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.5rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.flash-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 1100px) {
    .hamburger {
        order: 2;
        display: flex;
        font-size: 2rem;
        z-index: 3;
        align-items: center;
        justify-content: flex-end;
        margin-left: auto;
        margin-right: 35px;
    }

    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%; /* Position below the hamburger menu */
      right: 0;
      left: 0;
      background-color: var(--nav-background);
      z-index: 10; /* Ensure it appears above other content */
      padding: 60px;
      border-radius: 8px;
    }

    .nav-links a {
      color: #ece7d5;
      text-decoration: none;
      padding: 20px;
      margin: 10px 0; /* Adds space above and below each link */
      transition: color 0.3s;
      display: block; /* Ensures each link takes up its own line */
    }

    .nav-links.active {
        display: flex;
    }
}

/* 🔄 Responsive: 2 columns when screen < 860px */
@media (max-width: 860px) {
    .flash-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }


  /* Aftercare styling*/

  .aftercare-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 2rem;
    color:#1f2312;
    background-color: #ece7d5;
    padding: 30px;
    border-radius: 10px;
  }
  
  .tab-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .tab-btn {
    padding: 1rem;
    background: #ece7d5;
    color: #2d3120;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s ease;
  }
  
  .tab-btn:hover,
  .tab-btn.active {
    background: #2d3120;
    color: #ece7d5;
  }
  
  .tab-content {
    display: none;
    padding: 1rem;
    border: 1px solid #2d3120;
    border-radius: 10px;
    background: #2d3120;
  }
  .tab-content p { 
    color: #ece7d5;
    font-size: 1.4rem;
    width: 70%;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .tab-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 6px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .tab-buttons {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 500px) {
    .tab-buttons {
      grid-template-columns: 1fr;
    }
  }


  /*About Us styling*/

.header-image img{
    display: block;
    margin: 0 auto;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.header-block {
    padding: 20px;
    font-size: 1.2rem;
  }

  /* Section styling */
  .head-section,
  .content-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #2a2a2a;
    margin: 40px auto;
    max-width: 900px;
    padding: 20px;
    border-radius: 10px;
  }
  .head-section{
    background-color: var(--button-background);
    padding: 20px;
    border-radius: 10px;
    margin-top: 70px;
  }
.header-block {
    background: var(--primary-color);
    padding: 30px;
    font-size: 1.7em;
    font-weight: bold;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
}

.header-block:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}
  
  .content-section img {
    width: 40%;
    border-radius: 5px;
    margin: 20px;
  }
  
  .text-content {
    width: 90%;
  }
  .text-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ece7d5;
    margin: 0 20px;
    line-height: 2;
    padding: 20px;
  }
  .biography {
    background-color: #0a0a0a;
    padding: 40px 0;
    width: 100%;
  }  
  
 /* Wrapper for all the boxes */
.team-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

/* Founder styles (centered above) */
.founder-box {
  max-width: 900px;
  width: 100%;
  background-color: #ece7d5;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
  text-align: center;
}

/* Artists grid below the founder */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  box-sizing: border-box;
}

/* Shared box styles */
.artist-box, .founder-box {
  background-color: #ece7d5;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Shared image styles */
.founder-img, .artist-img {
  width: 100%;
  aspect-ratio: 1 / 1; /* Ensures the image is a square */
  object-fit: cover; /* Ensures the image covers the square without distortion */
  display: block;
}

/* Header styling */
.founder-header, .artist-header {
  background-color:  #1f2312;
  color:  #ece7d5;
  padding: 10px;
  text-align: center;
}

.founder-header h2, .artist-header h2 {
  margin: 0;
  font-size: 1.5em;
}

/* Body paragraph styles */
.founder-body , .artist-body  {
  padding: 30px;
  text-align: center;
  font-size: 1.5rem;
  color: black;
  width: 80%;
  margin: 0 auto;
  line-height: 1.5;
}
  
/* === Mobile Responsiveness === */
@media (max-width: 1100px) {
  .team-container {
    padding: 20px 10px;
  }

  .founder-box {
    margin-bottom: 30px;
  }

  .artist-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .founder-header h2,
  .artist-header h2 {
    font-size: 1.3em;
  }

  .founder-body p,
  .artist-body p {
    font-size: 1em;
  }
}

/*testiomonial page*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.test-head {
  background-color: #2d3120;
  text-align: center;
  margin-bottom: 40px;
}

.test-head h1 {
  font-size: 2.5rem;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.test-head p {
  color: #ece7d5;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;

  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.testimonial-card {
  background-color: #444;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: #ece7d5;
}

.rating {
  color: #f9a825; /* gold stars */
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.testimonial-author {
  align-self: flex-end;
}

.author-name {
  font-weight: bold;
  color: #2d3120;
  background-color: #ece7d5;
  padding: 8px;
  border-radius: 8px;
}

/* CTA Button */
.cta-container {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  background-color: #1f2312;
  color: #ece7d5;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: 2px solid #ece7d5;
}

.cta-button:hover {
  background-color: #2d3120;
}

/*Testimonial Submission Style*/

.form-container {
  background: #1f2312;
  padding: 2rem;
  max-width: 500px;
  margin: 5rem auto; /* Adds space above and below the container */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

input, textarea, select {
  width: 100%;
  padding: 0.7rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ece7d5;
  border-radius: 8px;
  font-size: 1rem;
}

button {
  padding: 0.8rem 1.5rem;
  background: #121212;
  color: #ece7d5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #1c1911;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .form-container {
    padding: 1.5rem;
    margin: 1.5rem auto; /* Adjusts spacing for smaller screens */
  }

  input, textarea, select {
    font-size: 0.9rem; /* Slightly smaller font size for inputs */
  }

  button {
    padding: 0.7rem 1.2rem; /* Adjust button padding */
  }
}


/*Footer*/
footer {
  background-color: #000;
  color: #ece7d5;
  padding: 20px;
}

/* Social Media Icons Styling */
.social-media-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.social-media-icons a {
  display: inline-block;
  transition: transform 0.3s, opacity 0.3s;
}

.social-media-icons a:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.social-media-icons img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: box-shadow 0.3s;
}

.social-media-icons img:hover {
  box-shadow: 0 0 10px var(--hover-color);
}