/*
Theme Name: Cotomive
Theme URI: https://example.com/cotomive
Author: You
Description: A high-tech, modern, responsive WordPress theme with a sidebar, header, and footer.
Version: 1.1
*/

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #121212;
  color: #e0e0e0;
}

a {
  color: #00ffe1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header, footer {
  background: #1f1f1f;
  padding: 20px;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  margin: 10px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.content {
  flex: 3;
  padding-right: 20px;
  min-width: 0;
}

.sidebar {
  flex: 1;
  background: #1a1a1a;
  padding: 20px;
  min-width: 250px;
}

footer {
  margin-top: 40px;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    padding: 10px;
  }

  .content {
    padding-right: 0;
  }

  .sidebar {
    margin-top: 20px;
  }
}


body.dark-mode {
  background-color: #000;
  color: #ccc;
}

body.dark-mode a {
  color: #00ffcc;
}

body.dark-mode header,
body.dark-mode footer {
  background: #111;
  color: #eee;
}

body.dark-mode .sidebar {
  background-color: #111;
}
