/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f5f5f5;
  color: #333;
}

header {
  background-color: #333;
  color: white;
  padding: 1rem;
  text-align: center;
}

.brand-name {
  font-size: 3rem;
  letter-spacing: 0.1rem;
  margin: 0;
  animation: fadeIn 2s ease-in-out; /* Animation added */
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

#hero {
  text-align: center;
  padding: 50px;
  background-color: #111;
  color: white;
}

#hero h2 {
  font-size: 2.5rem;
  animation: slideInLeft 1.5s ease-in-out; /* Animation added */
}

#showcase {
  padding: 50px;
  background-color: white;
  animation: fadeIn 2s ease-in-out; /* Animation added */
}

.clothing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.clothing-item {
  background-color: #ddd;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

#about, #contact {
  padding: 50px;
  text-align: center;
  animation: slideUp 2s ease-in-out; /* Animation added */
}

#about p {
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 2s ease-in-out; /* Animation added */
}

#displayed-image {
  max-width: 500px;
  margin: 20px auto;
  display: block;
  animation: fadeIn 2s ease-in-out; /* Animation added */
}

/* Team Section */
#team {
  padding: 40px 20px;
  background-color: #f4f4f4;
  text-align: center;
  animation: fadeIn 2s ease-in-out; /* Animation added */
}

#team h2 {
  margin-bottom: 20px;
  animation: slideInLeft 1.5s ease-in-out; /* Animation added */
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeIn 2s ease-in-out; /* Animation added */
}

.team-member {
  text-align: center;
  animation: slideUp 2s ease-in-out; /* Animation added */
}

.team-photo {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 10px;
  animation: fadeIn 2s ease-in-out; /* Animation added */
}

.founder .team-photo {
  width: 200px;
  height: 200px;
}

/* Investors Section */
#investors {
  padding: 40px 20px;
  text-align: center;
  animation: slideInRight 1.5s ease-in-out; /* Animation added */
}

#investors h2 {
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease-in-out; /* Animation added */
}

#investors ul {
  list-style: none;
  padding: 0;
}

#investors ul li {
  margin: 5px 0;
  font-size: 18px;
  animation: fadeIn 2s ease-in-out; /* Animation added */
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Animations */
.cta-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: transform 0.3s;
}

.cta-btn:hover {
  transform: scale(1.1);
}

.clothing-item:hover {
  background-color: #ff6600;
  color: white;
  transition: background-color 0.3s;
}

#displayed-image {
  max-width: 100%; /* Ensures image fits the mobile screen */
  height: auto;
}

/* Keyframes for Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .clothing-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }
}

@media (max-width: 480px) {
  .clothing-grid {
    grid-template-columns: 1fr; /* 1 column for mobile phones */
    padding: 10px;
  }

  /* Reduce padding for clothing items on small screens */
  .clothing-item {
    padding: 15px;
  }
}

#proposal {
  padding: 20px;
  background-color: #fff; /* Light background for readability */
  border: 1px solid #ccc; /* Subtle border */
  margin: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Soft shadow for depth */
}

#proposal h2, #proposal h3, #proposal h4 {
  color: #333;
  padding: 10px 0;
}

#proposal ul {
  padding-left: 20px;
}

#proposal li {
  padding: 5px 0;
  color: #666; /* Darker text for better readability */
}
/* Button Styling for Showcase Items */
button {
  background-color: #ff6600; /* Revora's theme orange */
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
}

button:hover {
  background-color: #cc5200; /* Darker shade of orange */
  transform: scale(1.05); /* Slightly enlarge button on hover */
}

/* Ensure buttons are flexibly displayed in the grid */
.clothing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

/* Adjustments for mobile responsiveness */
@media (max-width: 768px) {
  button {
    padding: 8px 16px; /* Slightly smaller padding on smaller screens */
    font-size: 14px; /* Smaller font size for better fit */
  }
}
