/* --- Landing Page --- */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}

header {
  text-align: center;
  size: 40 px;
  color: white;
  padding: 40px 20px;
}

.logo {
  width: 200px;   /* adjust this number as you like */
  height: auto;   /* keeps the correct proportions */
  display: block; /* optional – removes small gaps below images */
  margin: 10px auto; /* centers the logo if you want it centered */
}

main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.card {
  background: white;
  display: grid;
  grid-template-columns: 1fr; /* 1 column by default (mobile) */

  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 300px;
  text-align: center;
  padding: 20px;
}


.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, color 0.2s ease;
}

.card-link:hover {
  transform: scale(1.05);
  color:rgba(231, 191, 123, 0.8);; /* 0.8 = 80% opacity */
  
}

.gallery {
  display: grid;
  grid-template-columns: 1fr; /* 1 column by default (mobile) */
  gap: 25px;
  justify-items: center;
  padding: 0 20px;
}

/* when screen width ≥ 700px → switch to 2 columns */
@media (min-width: 1100px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}





/* --- Private Collection Page --- */

.home-btn {
  display: inline-block;
  text-decoration: none;
  background-color: rgba(231, 191, 123, 0.8); /* 0.8 = 80% opacity */; /* Light background color */
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.home-btn:hover {
  background-color: #d9a85b;
  transform: scale(1.05);
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* Adjust as needed */
    background-color: rgba(231, 191, 123, 0.8); /* 0.8 = 80% opacity */; /* Light background color */
    color: #000000; /* Dark text color */
    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}


.collection {
  text-align: center; /* centers all text inside, including h1 */
  padding: 40px 20px;
}

.collection h1 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #444;
  text-align: center; /* make sure the title stays centered */
}

.gallery {
  display: grid;
  grid-template-columns: 1fr; /* 1 column by default (mobile) */
  gap: 25px;
  justify-items: center;
  padding: 0 20px;
}

/* when screen width ≥ 700px → switch to 2 columns */
@media (min-width: 1100px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

.item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.item p {
  padding: 15px;
  font-size: 1em;
  color: #555;
}


/* --- Image Slider --- */
.slider {
  position: relative;
  width: 100%;
  max-width: 500px; /* optional: sets a limit for very large screens */
  aspect-ratio: 16 / 9; /* keeps nice proportions while resizing */
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 auto; /* centers it horizontally */
}


.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slider img.active {
  opacity: 1;
}

@media (max-width: 600px) {
  .slider {
    max-width: 100%;
    aspect-ratio: 4 / 3; /* slightly taller for phones */
  }

  .slider button {
    font-size: 1.2em;
    padding: 4px 8px;
  }
}

.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 1.5em;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.slider .prev { left: 10px; }
.slider .next { right: 10px; }

.slider button:hover {
  background: rgba(0, 0, 0, 0.6);
}



/* Footer Styling */
.footer {
    padding: 50px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #000000; /* Dark text color */
    justify-content: center; /* This will horizontally center the content */
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    height: 100px; /* Set this to the height of your footer */
    align-items: center; /* This will vertically center the content */
    font-size: 10px;

}


.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    flex-wrap: wrap; /* Ensure responsiveness */
}

.footer-left,
.footer-right {
    flex: 1;
    margin: 20px;
    text-align: left;
    margin-top: 100px;
}

.footer-left h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center; /* This will horizontally center the content */

}

.social-icons a img {
    width: 24px;
    height: 24px;
}

.footer-right p {
    font-size: 1rem;
    margin-bottom: 10px;
    
}

.commerce-logo img {
    width: 80px;
    margin: 10px 0;
}
/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        margin: 10px 0;
        text-align: center;
    }
}



.inquiry-page {
  text-align: center;
  padding: 40px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.inquiry-page h1 {
  color: #333;
  margin-bottom: 30px;
  font-size: 2em;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(231, 191, 123, 0.15);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.inquiry-form label {
  text-align: right;
  font-weight: bold;
  color: #444;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  width: 100%;
}

.inquiry-form button {
  background-color: #e7bf7b;
  color: white;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.inquiry-form button:hover {
  background-color: #d9a85b;
  transform: scale(1.03);
}

.home-btn {
  display: inline-block;
  margin-top: 30px;
  background-color: #e7bf7b;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.home-btn:hover {
  background-color: #d9a85b;
  transform: scale(1.05);
}


.thank-you {
  text-align: center;
  padding: 80px 20px;
}

.thank-you h1 {
  color: #4caf50;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.thank-you p {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 30px;
}

