/* css/styles.css */

/*  
fe0719 red 
#f80863  new art pink
a92128  button art red
d74448  light hover button
ffaf00  orange artcard
ffd466  light orange hover
fffbf7 / f8f8f8 grey header / footer / body background
f5f5f5 grey
fff2e0 peach hero 
f0f0f0 art card 
ffffff White
#fffbf7  logo background  (optionto be tried  #fff7f7)
 */

 body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #fffbf7;
  color: #222;
}

header {
  padding: 10px 20px;
  background: #fffbf7; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.nav-left {
  flex-grow: 1;
  order: 1;
  display: flex;
  align-items: center;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  order: 3;
}

.logo {
  height: auto;
  max-width: 150px;
  width: auto;
  display: flex;
  align-items: center;
  order: 0;
  margin-left: auto;
}

.logo img {
  height: auto;
  max-height: 150px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

.nav-menu a:hover {
  color: #555;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: transparent;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
}
	
.nav-links li a {
  text-decoration: none;
  color: #333;
}

/* Mobile Responsive Menu */

.hamburger {
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #000;
  display: none;
}

.menu-container {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  align-items: center;
  order: 3;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}


@media (max-width: 768px) {

	.hamburger {
    display: block;
    order: 3;          /* Ensure it appears first */
    margin-right: auto; /* Push other elements away */
	}
  
   .menu-container {
    width: 100%;
    order: 3;
	}
	
  .navbar {
    flex-wrap: wrap; /* allows logo and menu to stack nicely */
	}
 
  
   .nav-links {
    flex-direction: column;
    align-items: flex-start;
    display: none;
    background-color: #fff;
    width: 100%;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 101;
	transition: max-height 0.3s ease-in-out;
    overflow: hidden;
  }

  .nav-links.show {
    display: flex;
  }

  .logo {
    order: 0;
    margin-left: auto;
  }
 
  .nav-links a {
  /* Change menu text color to black */
    font-size: 1.2rem;
  }
  
  .nav-links.active {
   display: flex;
  }
  
  .about-section {
    flex-direction: column;
  }

  .about-section .about-image,
  .about-section .about-text {
    flex: 1 1 100%;
    max-width:100%;
  }
}

nav a {
  margin: 0 1em;
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.hero {
  text-align: center;
  padding: 10px 5px; /*  Reduce top/bottom spacing */
  background: #fffbf7 ; /* fff2e0 fddfea peach header Home is where the H4art is! f9f9f9=light Grey    fe0719-H4light red*/
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section {
  background-color:  #f5f5f5;
/*  padding: 10px 10px;Add some padding for better spacing  */
  padding: 1em 1em;
  max-width: 1000px;
  margin: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-margin-top: 80px; /* Adjust this to match the height of your header */
}

.gallery-filters button {
  margin: 0.5em;
  padding: 0.6em 1em;
  border: none;
  background: #333;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

/* About Section Two-Column Layout */
.section-about {
  padding: 60px 20px;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 5px;
}

.about-image {
  flex: 1 1 250px;
  max-width: 250px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.about-text {
  flex: 2 1 400px;
}

.about-full {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
    text-align: left;
  }

  .about-text, .about-image {
    max-width: 100%;
  }

  .about-image {
    order: -1; /* Show image on top */
  }
}

/* about 22nd May */
 .section-about {
  background-color: white; /*    Light lavender */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 1px 10px; Add some padding for better spacing 
}
/* 
 .section-testimonials {
  background-color: white;      
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 10px 10px; Add some padding for better spacing 
}
 */
 .section-contact {
  background-color: white; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 10px 10px; Add some padding for better spacing 
}
/*   26may testimonials Class */

.testimonials {
  background-color: white;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*   26may testimonials Class */


/* General gallery style */
.gallery {
  background-color: white;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gallery img,
.testimonials img,
.artwork img {
  width: 100%;           /* Make image scale to its container's width */
  height: 250px;         /* Set a fixed height */
  aspect-ratio: 3 / 2;
  object-fit: cover;     /* Crop image to fill area without distortion */
  border-radius: 8px;    /* Optional: rounded corners */
}

.art-card,
.art-card-testimonials
 {
  width: 100%;
  max-width: 250px;
  padding: 10px;
  text-align: center;
  background-color: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid transparent;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: transform 0.3s ease, background-color 0.3s ease, border 0.3s ease;  
}

/* ********* 25may ****** */
.gallery-filters-dropdown {
  margin: 30px 0;
  text-align: left;
}

.gallery-filters-dropdown .dropdown-label {
  font-weight: bold;
  margin-right: 10px;
  font-size: 1rem;
  color: #333;
}

.gallery-filters-dropdown select {
  padding: 8px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.gallery-filters-dropdown select:hover,
.gallery-filters-dropdown select:focus {
  border-color: #888;
  outline: none;
}
/* ***************  26may drop down filter */

/* Default all art cards 

/* Category-specific background colors */
.art-card[data-category="Celestial"] {
  background-color: #f0f0f0; /* Soft orange-cream */
}

.art-card[data-category="Sketches"] {
  background-color: #f0f0f0; /* Light blue */
}

.art-card[data-category="Handicrafts"] {
  background-color: #f0f0f0; /* Soft mint green */
}

.art-card[data-category="Others"] {
  background-color: #f0f0f0; /* Light lavender */
}

.art-card[data-category="sold"] {
  background-color: #f0f0f0; /* Light lavender */
}

.art-card:hover  {
  background-color: #ffd466;  /*  light orange background */
  border: 1px solid #ffaf00;  /* orange border */
  transform: scale(1.5);     /* Slight zoom for interactivity */
  color: #ffffff;             /* Optional: make text white */
}


.art-card-testimonials:hover  {
  background-color: #ffd466;  /*  light orange background */
  border: 1px solid #ffaf00;  /* orange border */
  transform: scale(1.5);     /* Slight zoom for interactivity */
  color: #ffffff;             /* Optional: make text white */
}

.art-card:hover h3,
.art-card:hover p,
.art-card:hover a {
  color: #ffffff; /* Ensure text and links are visible on black */
}

.art-card img {
  width: 100%;
  height: 350px;
  display: block;
}

.art-card h3 {
  margin: 0.5em 0 0.3em;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.art-card p {
  padding: 0 1em 1em;
  font-size: 0.9em;
  color: #555;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.whatsapp-btn {
  display: inline-block;
  background: #f5f5f5;   /* fffbf7 a92128=art red  25D366=green*/
  color: #111 ;	  /*f2545b */
  padding: 0.5em 1em;
  margin: 1em auto;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
}

.whatsapp-btn:hover {
  background-color: #f80863;  /* fe0719  background */
  border: 1px solid white;  /* White border */
  transform: scale(1.02);     /* Slight zoom for interactivity */
  color: #ffffff;             /* Optional: make text white */
}


#contact {
  background-color: #f5f5f5; /* Grey background color */
  padding: 10px 10px;  /*  Add some padding for better spacing */
}

#contact h2 {
  background-color: f5f5f5;  
  color: black; /* Optional: Change the header color to black for contrast */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#contact form {
  background-color: white; /* Optional: White background for the form for clarity */
  width: 98%;
  padding: 15px; 
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact input, #contact textarea {
  width: 80%;
  padding: 10px; 
  margin: 5px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Use the same font family as other fields */
  font-size: 1rem; /* Ensure the font size is consistent */
}


#contact button {
  background-color: White; /* 4CAF50=Green button for submission */
  color: #f80863;
  padding: 5px 20px;
  border: 1px solid #ccc;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem; /* Ensure the font size is consistent */
}

#contact button:hover {
  background-color: #f80863;
  color: White;
  transform: scale(1);
}


footer {
  background: #fffbf7;  /*fff2e0 #f80863-pink   header bak 222=black*/
  color: 222;
  text-align: center;
  padding: 5px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.social-icons a {
  margin: 0 0.5em;
  color: #ffaf00;
  font-size: 2em;
}

  @media (max-width: 768px) {
  nav div {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
} 