/* ===== IMPORT FONTS ONCE ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Poppins:wght@400;600&display=swap');

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #222;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #222;
}

/* Make sure blogpost4 inherits these styles */
#blogpost4 {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #222;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #222;
}

/* ===== LINKS & BUTTONS ===== */
a {
  text-decoration: none;
  color: #222;
  transition: all 0.3s ease;
}

a:hover,
button:hover {
  color: #d35400;
  opacity: 0.85;
  transform: scale(1.03);
}

.cta-btn, .enter-btn {
  display: inline-block;
  background-color: #d35400;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover,
.enter-btn:hover {
  background-color: #e67e22;
  transform: scale(1.05);
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo img {
  width: 150px;
  height: auto;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #222;
}

/* ===== NAVIGATION ===== */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  font-weight: 600;
}

nav ul li a:hover {
  color: #cc9900;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background: url('images/hero-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
}

.vision {
  margin-top: 30px;
  background-color: #f9f9f9;
  padding: 20px;
  border-left: 4px solid #cc9900;
  text-align: left;
}

/* ===== ARTIST PROFILE SECTION ===== */
.artist-profile {
  margin-top: 40px;
}

.profile-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  text-align: left;
}

.profile-content img {
  width: 200px;
  height: auto;
  border-radius: 8px;
}

.profile-content p {
  flex: 1;
}

/* Responsive layout for profile section */
@media (max-width: 768px) {
  .profile-content {
    flex-direction: column;
    text-align: center;
  }

  .profile-content img {
    margin-bottom: 15px;
  }

  .profile-content p {
    text-align: left;
  }
}

/* ===== GALLERY / PROJECTS GRID ===== */
.gallery-grid, .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  margin-top: 30px;
}

.gallery-grid img,
.project-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover,
.project-item img:hover {transform: scale(1.05);
}
.caption {
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
  color: #444;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
}

.whatsapp-button img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-button img:hover {
  transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.footer-section {
  min-width: 200px;
}

.footer-section h4 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer p {
  margin-top: 20px;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 20px;
  }
}



/* ===== RESPONSIVE NAVIGATION ===== */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    display: none;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta-btn {
    padding: 10px 18px;
    font-size: 16px;
  }
}
footer .logo,
footer .footer-logo {
  display: none !important;
}
/* ===== BLOG SECTION ===== */
#blog {
  padding: 40px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.blog-container h2 {
  font-size: 2.5em;
  color: #d35400;
  margin-bottom: 10px;
}

.blog-intro {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.blog-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #d35400;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-title {
  font-size: 1.5em;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title:hover {
  color: #d35400;
}

.blog-date {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  font-weight: bold;
  color: #d35400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #e67e22;
}
/* Additional CSS for Read More button */
.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  font-size: 1rem;
  color: #ffffff;
  background-color: #d35400; /* Orange color for the button */
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #e67e22; /* Darker orange on hover */
}

.read-more-btn:focus {
  outline: none;
}
/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Poppins:wght@400;600&display=swap');

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #222;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  font-weight: 600;
  text-decoration: none;
  color: #222;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #d35400;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: #222;
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    display: none;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== MAIN PRODUCT SECTION ===== */
.products {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.products h1 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #d35400;
}

.product-item {
  text-align: center;
}

.product-item h2 {
  font-size: 1.5rem;
  margin: 20px 0 10px;
  font-family: 'Poppins', sans-serif;
}

.product-item img {
  max-width: 300px;
  width: 100%;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-item p {
  font-size: 1rem;
  margin: 15px 0;
  text-align: justify;
  padding: 0 15px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
}

.whatsapp-button img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-button img:hover {
  transform: scale(1.1);
}
/* ===== ICON ROW STYLE ===== */
.icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.icon-row a img {
  width: 28px; /* Smaller size */
  height: 28px;
  transition: transform 0.3s ease;
}

.icon-row a img:hover {
  transform: scale(1.1);
}
/* ===== HERO SECTION IMAGE FIX ===== */
.transparent-img {
  max-width: 300px;     /* Limits width on desktop */
  width: 80%;           /* Makes image responsive */
  height: auto;
  margin-bottom: 20px;
}

/* Optional: Reduce further on smaller screens */
@media (max-width: 768px) {
  .transparent-img {
    max-width: 200px;
    width: 60%;
  }
}
/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background-image: url('images/signature1.png');  /* Replace with the image you want */
  background-size: cover;        /* Ensures the image fills the screen */
  background-position: center;   /* Centers the image */
  background-repeat: no-repeat;  /* Ensures no repeating of the image */
  height: 100vh;                 /* Takes full height of the viewport */
  display: flex;
  justify-content: center;       /* Centers content horizontally */
  align-items: center;           /* Centers content vertically */
  text-align: center;            /* Aligns the text in the center */
  color: white;                  /* White text for visibility */
  padding: 0 20px;               /* Adds some padding for smaller screens */
}

.hero-content h1 {
  font-size: 3rem;   /* Adjust as necessary */
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.5rem; /* Adjust as necessary */
  margin-bottom: 20px;
}

.cta-btn {
  padding: 10px 20px;
  background-color: #FF5722;  /* Example CTA button color */
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition:background-color 0.3s ease;
}
.cta-btn:hover {
  background-color: #FF3D00;  /* Change button color on hover */
}

/* ===== Ensure Mobile Responsiveness ===== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;  /* Reduce size on smaller screens */
  }

  .hero-content p {
    font-size: 1.2rem;  /* Adjust text size for mobile */
  }

  .cta-btn {
    font-size: 1rem;  /* Adjust button size on mobile */
  }
}
@media (max-width: 768px) {
  .product-item p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.product-item p {
  overflow: visible;
  max-height: none;
}
<img src="images/project5.jpg" alt="Project Image 5" style="max-width: 300px; height: auto;">
.share-buttons {
  margin-top: 30px;
  text-align: center;
}

.share-buttons p {
  margin-bottom: 10px;
  font-weight: bold;
}

.share-buttons a,
.copy-link-btn {
  display: inline-block;
  margin: 0 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.share-buttons img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.share-buttons img:hover {
  transform: scale(1.2);
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Header (leave as-is if you like the current style) */
header {
  background-color: #fff;
  color: #333;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Top Image */
.top-image {
  text-align: center;
  margin-top: 20px;
}

.top-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  max-height: 400px;
  object-fit: cover;
}

/* Pricing Section */
.pricing-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.pricing-section h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  color: #222;
}

/* ✅ Table Header: Updated to Gray */
.pricing-table thead {
  background-color: #4A4A4A; /* Replaces green with gray */
  color: white;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 15px;
  text-align: left;
  border: 1px solid #ddd;
}

.pricing-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .pricing-section {
    padding: 10px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 10px;
    font-size: 0.9em;
  }
}
.top-image {
  text-align: center;
  margin: 20px auto 30px;
}

.top-image img {
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 250px; /* Smaller height */
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  object-fit: contain;
}
/* ===== PRICING SECTION ===== */
.pricing-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.pricing-section h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  color: #222;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 15px;
  text-align: left;
  border: 1px solid #ddd;
}

.pricing-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Responsive tweaks for pricing table */
@media (max-width: 768px) {
  .pricing-section {
    padding: 15px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px;
    font-size: 0.9em;
  }

  .pricing-table thead {
    font-size: 1.1em; /* Slightly smaller font for headings */
  }

  /* Adjust table layout on mobile */
  .pricing-table {
    display: block;
    overflow-x: auto; /* Allows horizontal scrolling */
    white-space: nowrap; /* Prevents text from wrapping*
/* Ensure images scale down on smaller screens */
img {
  max-width: 100%;
  height: auto;
}
/* Specific rules for the pricing section images */
.pricing-section img {
  width: 100%; /* Ensure the image takes the full width of its container */
  max-width: 400px; /* Limit the image width on mobile */
  margin: 0 auto; /* Center the image */
  display: block; /* Make sure the image behaves like a block element */
}

/* Mobile-specific image adjustments */
@media (max-width: 768px) {
  /* Adjust the image inside the pricing section */
  .pricing-section img {
    width: 90%;  /* Make the image take 90% of the screen width */
    max-width: 300px; /* Set a reasonable max-width for smaller screens */
    margin: 10px auto; /* Space the image from top/bottom */
  }
}

/* For very small screens (below 480px) */
@media (max-width: 480px) {
  .pricing-section img {
    width: 85%;  /* Make the image take 85% of the screen width */
    max-width: 250px; /* Further reduce the max-width for very small screens */
  }
}
/* Base styles for the pricing table */
.pricing-table {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pricing-column {
  flex: 1;
  margin: 10px;
  padding: 20px;
  border: 1px solid #ccc;
  text-align: center;
}

/* Stack columns vertically on small screens */
@media (max-width: 600px) {
  .pricing-column {
    flex: 0 0 100%;
    margin: 10px 0;
  }
}
/* Make images responsive */
img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
/* Make social media icons smaller on mobile */
@media (max-width: 768px) {
  .icon-row a img {
    width: 24px;
    height: 24px;
    margin: 5px;
  }
}
.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 10px 0;
}

.icon-row a img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s;
}

.icon-row a img:hover {
  transform: scale(1.1);
}
/* Always white on mobile */
@media screen and (max-width: 768px) {
  .hero-content .mobile-white {
    color: #fff !important;
  }
}
/* Global reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Body styling */
body {
  background-color: #333; /* Dark background for contrast */
  color: white; /* Default text color */
  line-height: 1.6;
  font-size: 16px;
  text-align: center;
  padding: 20px;
}

/* Styling for the 'Welcome to' text */
h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white; /* Ensures the text is white */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 50px;
}

/* Optional: Styling for the rest of the page */
p {
  font-size: 1rem;
  color: white;
  margin-top: 20px;
}
#blogpost4 {
  font-family: 'Arial', sans-serif; /* Ensure this is your site's default font */
  font-size: 16px; /* Adjust if necessary */
  line-height: 1.5;
  color: #333; /* Match your site's text color */
}