/*
Theme Name: Glamware
Author: Glamware Team
Description: A modern minimalist e-commerce theme for beauty and fashion
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');


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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0d1b2a;
  color: #ffffff;
  line-height: 1.6;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Roboto', sans-serif;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background-color: #007BFF;
  color: white;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 60px;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

main {
  padding: 2rem 0;
}

section {
  margin-bottom: 2rem;
}

h2 {
  color: #00b4d8;
  margin-bottom: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  list-style: none;
  padding-left: 0;
}

footer {
  background-color: #1b263b;
  text-align: center;
  padding: 1rem;
  color: #adb5bd;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
  font-family: 'Orbitron', sans-serif;
}

.contact-form button {
  background-color: #00b4d8;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:hover {
  background-color: #0077b6;
}



.social-links a {
  margin-right: 1rem;
  color: #00b4d8;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .header-container,
  nav ul {
    flex-direction: column;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

input:focus,
textarea:focus,
button:focus {
  outline: 2px solid #00b4d8;
  outline-offset: 2px;
}






