/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

#grad {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-image: linear-gradient(to bottom, #31315D, #1d1d37, #07071c, #000000);
  background-size: 100% 100vh; 
  background-attachment: fixed; 
}
  
  body,
  html {
    width: 100%;
    font-family: "Lexend";
    height: 100%;
    margin: 0;
  }

  .font {
    font-family: "Lexend", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
  }
  

  .font {
    font-family: "Lexend", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  .navbar .logo {
    width: 80px;
    height: auto;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  
  .gif-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-color: #1B1B3A;
  }
  
  .gif-screen img {
    max-width: 100%;
    height: auto;
  }
  
  .first-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 100px);
    position: relative;
  }
  
  .first-screen .slogan {
    font-size: 52px;
    margin-top: -150px;
    color: #fff;
  }

  .first-screen .question {
    font-size: 40px;
    margin-bottom: 30px;
    margin-top: 50px;
    color: #fff;
  }
  
  
  .button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 200px;
  }

  #website-title {
    font-size: 40px;
    color: white;
    padding-bottom: 15px;
  }

  .first-screen button {
    padding: 20px 40px;
    font-size: 20px;
    font-family: "Lexend";
    cursor: pointer;
    border: 2px solid #383860;
    background-color: #383860;
    color: #eee;
    transition: background-color 0.2s;
    min-width: 200px;
    border-radius: 12px;
  }
  
  .first-screen button:hover {
    background-color: #ccc;
  }
  
  .connect-logo {
    position: absolute;
    top: 70px;
    left: 10px;
    width: 80px;
    height: auto;
  }
  
  .second-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 60px);
    background-color: #1B1B3A;
    position: relative;
  }
  
  .form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
    text-align: center;
  }
  
  .form-container input {
    padding: 10px;
    font-size: 16px;
    border: none;
    outline: none;
    border-radius: 4px;
  }
  
  .form-container button {
    padding: 10px;
    font-size: 16px;
    border: none;
    outline: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    transition: background-color 0.2s;
  }
  
  .form-container button:hover {
    background-color: #0056b3;
  }
  .account-details-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 60px);
    background-color: #1B1B3A;
  }
  .account-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    color: #fff;
  }
  .account-form input[type="text"],
  .account-form input[type="email"],
  .account-form input[type="url"],
  .account-form textarea {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    width: 100%;
  }
  .account-form input[type="file"] {
    font-size: 16px;
    color: #fff;
  }
  .account-form button {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    transition: background-color 0.2s;
  }
  .account-form button:hover {
    background-color: #0056b3;
  }
  .account-form h2 {
    text-align: center;
    margin-bottom: 10px;
  }
  .section-label {
    font-size: 14px;
    margin-bottom: -2px;
  }

  .figma-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px);
    background-color: #1B1B3A;
    padding: 10px;
  }
  .figma-embed {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
  }

  .messaging-container {
    display: flex;
    height: calc(100vh - 60px); 
  }
  
  .contacts-list {
    width: 300px;
    background-color: #f0f2f5;
    border-right: 1px solid #ccc;
    overflow-y: auto;
  }
  .contacts-list h3 {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
    margin: 0;
    font-size: 18px;
  }
  .contact-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  .contact-item:hover {
    background-color: #e0e0e0;
  }
  /* Conversation Area Column */
  .conversation-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
  }
  .conversation-header {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    background-color: #f7f7f7;
    font-weight: bold;
  }
  .messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background-color: #f9f9f9;
  }
  .message {
    margin-bottom: 10px;
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 16px;
    background-color: #e0e0e0;
    word-wrap: break-word;
  }
  .message.sent {
    align-self: flex-end;
    background-color: #e0e0e0;
    color: #000;
  }
  .message.received {
    align-self: flex-start;
    background-color: #1B1B3A;
    color: #fff;
  }
  /* Message Input Area */
  .message-input-container {
    padding: 10px;
    border-top: 1px solid #ccc;
    display: flex;
    gap: 10px;
    background-color: #fff;
  }
  .message-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
  }
  .send-button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  .send-button:hover {
    background-color: #0056b3;
  }
  
.grid {
  display: grid;
  gap: 20px;
  width: 90%;
  padding: 10px;
  margin: 40px;
  grid-template-columns: repeat(3, 1fr);
}
.tile {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, filter 0.3s;
}
.tile:hover {
  transform: translateY(-5px);
  filter: grayscale(100%);
}
.tile img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.industry {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  font-size: 0.8em;
  border-radius: 5px;
}
.content {
  padding: 15px;
  text-align: center;
}
.business-name {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
}
.mission {
  font-size: 0.9em;
  color: #444;
  margin: 10px;
  word-spacing: 5px;
  letter-spacing: 2px;
  line-height: 1.3;
  text-align: left;
}
.container {
  width: 80%;
  margin: auto;
  padding: 20px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.connect {
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}
main {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  margin: 20px;
}

.profile {
  width: 30%;
  background: #383860;
  padding: 20px;
  border-radius: 5px;
  margin: 10px;
  margin-top: 0px;
  font-family: "Lexend";
  color: white;
}

.profile img{
  width: 100%;
}

.website {
  padding-top: 20px;
}

.profile h2{
  padding: 5px;
}
.details {
  width: 70%;
  color: white;
  font-family: "Lexend";
}

.details ul {
  padding-left: 25px;
}
.card {
  background: #383860;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
}


a {
  color: white;
}
.press-kit {
  height: 100px;
  display: flex;
  color: white;
  border-radius: 5px;
}   

.social-icons {
  padding-top: 20px;
  list-style: none;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.social-icons li {
  display: inline;
}

.social-icons a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.stacked-button {
  display: block;
  width: 200px;
  padding: 15px;
  margin: 10px auto;
  text-align: center;
  background-color: #1d1d37;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
}

.stacked-button:hover {
  background-color: #07071c;
}

.photo-gallery {
    display: flex;
    flex-wrap: nowrap;       
    gap: 10px;               
    overflow-x: auto;        
    padding: 10px;           
    background-color: #1B1B3A;  
  }
  
  .photo-gallery img {
    height: auto;           
    max-height: 150px;       
  }
  
  #welcome {
    color: white;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }