/* Projects section box styling */
.projects-box {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  margin: 2rem auto;
  max-width: 900px;
  border: 3px solid #000;
}
.projects-box h2 {
  text-align: center;
  color: var(--accent3);
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.projects-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.project-item {
  background: var(--secondary-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  border: 2px solid #000;
}
.project-item img {
  width: 100%;
  border-radius: 12px;
  margin-top: 0.5rem;
  border: 2px solid #000;
  box-sizing: border-box;
}
/* Modern, clean, branded style for Lorkins On The Grind */
:root {
  --primary-bg: #0b2236;
  --secondary-bg: #123a54;
  --accent: #00eaff;
  --accent2: #1e90c7;
  --accent3: #3be0ff;
  --text-main: #fff;
  --text-muted: #fff;
  --button-bg: #1e90c7;
  --button-text: #fff;
  --card-bg: #123a54;
  --border-radius: 18px;
  --shadow: 0 4px 24px 0 rgba(30,144,199,0.10);
}

body {
  background: linear-gradient(135deg, #07131f 0%, #0b2236 30%, #123a54 60%, #1e90c7 85%, #3be0ff 100%);
  color: var(--text-main);
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.centerpiece {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 3rem 0 2rem 0;
}
.centerpiece .logo-main {
  width: 120px;
  margin-bottom: 1.2rem;
}
.centerpiece h2 {
  color: var(--accent3);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 2px 16px var(--accent2);
  text-align: center;
}


header.hero {
  background: linear-gradient(135deg, #0b2236 0%, #123a54 60%, #1e90c7 100%);
  text-align: center;
  padding: 3rem 1rem 2.5rem 1rem;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 2rem auto 2.5rem auto;
}
.logo-main {
  width: 120px;
  margin-bottom: 1.2rem;
}
.big-logo {
  width: 220px;
  max-width: 95vw;
  margin-bottom: 1.5rem;
}
header.hero h1 {
  font-size: 2.7rem;
  margin: 0.5rem 0 1.2rem 0;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 900;
  text-shadow: 0 2px 24px var(--accent2);
  text-align: center;
}
header.hero p {
  color: var(--text-main);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: var(--button-text);
  padding: 1rem 2.5rem;
  border-radius: 32px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 2px 12px #2196f344;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta:hover {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  color: #fff;
  box-shadow: 0 4px 24px #ffd60099;
}
nav {
  background: var(--secondary-bg);
  padding: 0.5rem 0;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
nav ul li a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.2s;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
}
nav ul li a:hover {
  color: var(--accent);
  background: #ffffff11;
}
main {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
}
section {
  margin-bottom: 2.5rem;
  padding: 1.5rem 0 0.5rem 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.service {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.2rem 1rem 1.1rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px #ffd60055;
}
.service span {
  font-size: 2.8rem;
  display: block;
  margin: 0 auto 0.5rem auto;
  filter: drop-shadow(0 2px 6px rgba(30,144,199,0.18));
}
.service h3 {
  margin: 0.2rem 0 0.3rem 0;
  font-size: 1.1rem;
  color: var(--accent3);
  font-weight: 700;
}
.service p {
  margin: 0;
  color: var(--text-main);
  font-size: 0.98rem;
}
.about-cards {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.about-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  flex: 1 1 220px;
  padding: 1.2rem 1rem 1.1rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 220px;
  max-width: 300px;
}
.about-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.4rem;
}
.about-card h3 {
  margin: 0.2rem 0 0.3rem 0;
  font-size: 1.1rem;
  color: var(--accent3);
  font-weight: 700;
}
.about-card p {
  margin: 0;
  color: var(--text-main);
  font-size: 0.98rem;
}
.quote-form {
  display: grid;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1rem 1rem 1rem;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 0.8rem;
  border-radius: 10px;
  border: none;
  background: var(--secondary-bg);
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 0.1rem;
}
.quote-form button {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  color: var(--button-text);
  border: none;
  border-radius: 24px;
  padding: 0.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px var(--accent2);
}
.quote-form button:hover {
  background: linear-gradient(90deg, var(--accent3), var(--accent2));
  color: #fff;
  box-shadow: 0 4px 24px var(--accent3);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem 2rem 1.5rem 2rem;
  max-width: 410px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.contact-info > div {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1.13rem;
  word-break: break-word;
  padding: 0.6rem 0;
  border-bottom: 1px solid #1e90c733;
}
.contact-info > div:last-child {
  border-bottom: none;
}
.contact-info strong {
  min-width: 68px;
  display: inline-block;
}
.contact-info span {
  min-width: 2em;
  text-align: center;
  font-size: 1.25em;
}
.contact-info a {
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}
.contact-info a:hover {
  text-decoration: underline;
  color: var(--accent3) !important;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.08rem;
  word-break: break-word;
}
.contact-info strong {
  min-width: 62px;
  display: inline-block;
}
.contact-info span {
  min-width: 1.7em;
  text-align: center;
}
.contact-info span {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  color: var(--accent);
}
.contact-info a {
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
  color: var(--accent3) !important;
}
footer {
  background: var(--secondary-bg);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  border-top: 2px solid var(--accent2);
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 2rem auto 0 auto;
}
.logo-footer {
  width: 60px;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px #2196f344;
}
footer nav {
  margin-bottom: 1rem;
}
footer nav a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.2s;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
footer nav a:hover {
  color: var(--accent3);
  background: #0b2236;
}
}
@media (max-width: 900px) {
  header.hero, footer {
    max-width: 100vw;
    margin: 1rem 0;
    border-radius: 0;
  }
  main {
    max-width: 100vw;
    padding: 0 0.5rem;
  }
  .about-cards, .services-grid {
    flex-direction: column;
    gap: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.projects-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}
.project-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  box-shadow: none;
}
.copyright-symbol {
  font-size: 2.2rem;
  color: var(--accent3);
  margin-bottom: 0.3rem;
  font-weight: bold;
  text-shadow: 0 2px 8px var(--accent2);
}
.projects-gallery img {
  width: 100%;
  max-width: 340px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  background: #222;
  display: block;
}
@media (max-width: 600px) {
  .projects-gallery img {
    height: 140px;
    max-width: 100vw;
  }
}