/*
  Project: Grid-Based Website Prototype
  Developed with guidance from Microsoft Copilot (GPT-4)
  Copilot assisted in HTML/CSS structure, accessibility, and semantic layout.
  Tool: https://copilot.microsoft.com/
  Date: September 2025

  Site designed by: Vanessa Perez
*/

/* 
A submission for Vanessa Perez's CSS Hair Salon project.
My Design is titled: The Luxe Salon
My Name is: Vanessa Perez
*/

/* This is the CSS file for the Hair Salon project */

/*	/////  CSS CITATIONS */
/* 	This CSS file is released under the Creative Commons License - 
		- /* The Luxe Salon © 2025 by Vanessa Perez is licensed under CC BY-SA 4.0. 
    To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/
/*		- csszenProjectTitle.png  is not released and all rights are retained by the designer */

/* 	/////  IMAGE CITATIONS */
/* 	Images are all cited below and not included in the CC4.0 above, which is limited to the CSS only */
/*	All images are from iStock and Adobe Stock */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: white;
  color: black;
}

header {
  background-color: #ada397;
  color: white;
  padding: 10px 0;
  text-align: center;
  border: 2px dotted white;
}

.sidebar {
  background-color: #bdcebe;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  border: 2px solid #a2b0a3;
  flex-wrap: nowrap;
}

.sidebar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  border: whitesmoke 2px solid;
  padding: 10px 15px;
  display: inline-block;
  border-radius: 5px;
  background-color: #eca1a6;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 0;
  text-align: center;
}

.sidebar a:hover {
  background-color: #ba757a;
  color: white;
}


.container {
  width: 80%;
  min-width: 1000px;
  margin: 20px auto;
  padding: 10px;
  background-color: #756b67;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.grid-container {
  display: grid;
  width: 80%;
  min-width: 1000px;
  gap: 10px;
  padding: 10px;
  grid-template-columns: auto auto auto;
  margin: 25px auto;
}

.grid-item p {
  font-size: 18px;
  line-height: 1.5;
  color: white;
  text-align: center;
  padding: 0 10px;
  border-radius: 5px;
}

#welcome h2 {
  padding: 10px;
  font-size: 25px;
  text-align: center;
  border-radius: 5px;
  background-color: rgb(179, 131, 140);
  border: 2px solid rgb(208, 167, 175);
  color: white;
  margin: 10px;
}

#welcome p {
  padding: 3px;
  font-size: 18px;
  text-align: center;
  border-radius: 5px;
  background-color: rgb(179, 146, 152);
  border: 2px dotted white;
  color: white;
  margin: 50px;
}

#about-us {
  background-color: #f7cac9;
  border: 5px dotted whitesmoke;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  color: white;
  border-radius: 5px;
}

#about-us h1 {
  text-align: center;
  color: white;
  font-size: 30px;
  margin: 20px;
}

#about-us-text h2 {
  color: white;
  border-radius: 5px;
  padding: 5px;
  margin: 40px;
  font-size: 20px;
  border: 2px solid #f7cac9;
  background-color: #f9bab9;
  text-align: center;

}

#about-us-text p {
  font-size: 18px;
  color: white;
  text-align: left;
}

#appointment {
  background-color: #756b67;
  border: 5px dashed #9d928d;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  color: white;
  border-radius: 5px;
}

#contact-info {
  background-color: #d6cbd3;
  border: 2px dotted #b5adb3;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}

#contact-info h2 {
  background-color: #b899b0;
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 2px solid #988193;
}

#contact-info p {
  font-size: 18px;
  color: white;
  margin: 5px 0;
}

#importance {
  background-color: #92a8d1;
  border: 5px dotted whitesmoke;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  color: white;
  border-radius: 5px;
}

#importance h2 {
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin: 20px;
  font-size: 30px;
}

#importance-text p {
  font-size: 18px;
  color: white;
  margin: 10px;
  padding: 30px;
  text-align: left;
}

#services {
  background-color: #756b67;
  border: 5px dashed #9d928d;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  color: white;
  border-radius: 5px;
  width: 80%;
}

#types-of-services {
  background-color: #b36b6f;
  border: 2px solid #d28387;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  color: white;
}

#types-of-services h2 {
  background-color: #d28387;
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 2px solid #eab5b8;
}

#types-of-services ul {
  font-size: 18px;
  color: white;
  margin: 10px;
  list-style: square;
  padding: 20px;
  text-align: left;
}

#demo {
  background-color: #756b67;
  border: 5px dashed #9d928d;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  color: white;
  border-radius: 5px;
}

#demo-info {
  background-color: #ccd6cb;
  border: 2px dotted #adb5ad;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}

#demo-info h2 {
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
  font-size: 30px;;
}

.collage-container h2 {
  background-color: #a3b9b0;
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 2px solid #8a9c95;
  text-align: center;
}

.collage-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  padding: 10px;
}

.collage-img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

footer {
  background-color: #ada397;
  color: white;
  text-align: center;
  padding: 5px;
}

#download {
  background-color: #756b67;
  border: 5px dotted #9d928d;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  color: white;
  border-radius: 5px;
  margin-bottom: 20px;
  width: 80%;
  min-width: 1000px;
}

.container-download {
  text-align: center;
}

.download-button {
  display: inline-block;
  padding: 20px 50px;
  font-size: 26px;
  font-weight: bold;
  color: white;
  background: linear-gradient(45deg, #b7a8cc, #937fae);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.download-button:hover {
  background: linear-gradient(45deg, #827099, #896caf);
  transform: scale(1.05);
}

.download-button:active {
  transform: scale(0.95);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 #7144ab(0, 114, 255, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(0, 114, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 114, 255, 0); }
}