@charset "UTF-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #fff;
    color: #000;
}
header {
  background-color: #fff;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}
.logo {
    font-size: 2rem;
    font-weight: 200;
    padding-left: 10px;
}
.logo .slashes {
  color: #00AEEF;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding-right: 20px;
}
nav ul li a {
    color: #000;
    text-decoration: none;
    font-size: 1.15rem;
    position: relative;
}
nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #00AEEF;
    opacity: 0;
    transition: opacity 0.3s ease;
}
nav ul li a:hover::after {
    opacity: 1;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle span {
    background: #000;
    height: 3px;
    width: 25px;
    border-radius: 3px;
}
#menu-checkbox {
    display: none;
}
.close-menu {
    display: none;
}

@media (max-width: 768px) {
.menu-toggle {
    display: flex;
}
nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 999;
}
nav ul {
    flex-direction: column;
    gap: 30px;
    padding: 0;
}
nav ul li a {
font-size: 1.5rem;
}
}
#menu-checkbox:checked + label + nav {
    display: flex;
}
#menu-checkbox:checked + label + nav .close-menu {
    display: block;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
}

.portfolio-grid {
    padding-top: 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 0;
    margin-top: 60px;
}

@media (max-width: 900px) {
.portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 600px) {
.portfolio-grid {
    grid-template-columns: 1fr;
	padding-top: 45px;
}
}
.project {
    position: relative;
    overflow: hidden;
}
.project img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border: none !important;
}
.project:hover img {
    transform: scale(1.05);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
	word-spacing: 3px;
}
.project:hover .overlay {
    opacity: 1;
}
.contact {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    gap: 40px;
}
.contact-left {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    padding-left: 50px;
}

.contact-left .creative {
  color: #00AEEF;
}

.contact-left h2 {
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 20px;
}
.contact-left p {
    font-size: 1.2rem;
    margin: 8px 0;
}
	.contact a {
  color: inherit;
  text-decoration: none;
}
.contact-right {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}
.contact-right form {
    display: flex;
    flex-direction: column;
}
.contact-right input, .contact-right textarea {
    padding: 10px;
    margin: 10px 0;
    background: #fafafa;
    border: 1px solid #ccc;
    font-size: 1rem;
    color: #777;
}
.contact-right button {
    background: #00AEEF;
    color: #fff;
    border: none;
    padding: 12px 0;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
    width: 25%;
    height: 55px;
    text-align: center;
    display: block;
    border-radius: 4px;
}
.contact-right button:hover {
    background: #005D91;	
}
#form-success {
  color: #0a1b2e;
  background: #e6f0ff;
  border-left: 4px solid #112F50;
  padding: 12px 16px;
  margin-top: 20px;
  border-radius: 4px;
}
#form-success {
  transition: opacity 0.5s ease;
}
#form-success.fade-out {
  opacity: 0;
  pointer-events: none;
}
.lb-image {
    border: none !important;
    box-shadow: none !important;
}
.lb-close {
    position: fixed !important;
    top: 20px;
    right: 20px;
    z-index: 1101;
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-shadow: 0 0 5px black;
}

@media (max-width: 600px) {
.title-break {
    display: block;
    line-height: .9;
    margin-top: -2px;
}
}

@media (max-width: 900px) {
  .nav-container {
    padding: 0 10px;
  }
  header {
    padding-left: 5px;
  }

  .logo {
    padding-left: 0;
    margin-left: 0;
  }

  .contact-left {
    padding-left: 10px;
    margin-left: 10px;
  }

  .contact {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
    color: #e0e0e0;
  }
  body header {
    background-color: #222;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
  }
  body .nav-container {
    color: #ddd;
  }
  body nav ul li a {
    color: #ddd;
  }
  body nav ul li a::after {
    background-color: #00AEEF;
  }
  body .menu-toggle span {
    background: #ddd;
  }
  body .project .overlay {
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
  }
  body .contact-left,
  body .contact-right {
    color: #ddd;
  }
  body .contact-right input,
  body .contact-right textarea {
    background-color: #222;
    border: 1px solid #444;
    color: #eee;
  }
  body .contact-right button {
    background: #0074A7;
    color: #eee;
  }
  body .contact-right button:hover {
    background: #00AEEF;
  }
  body .lb-close {
    color: #ddd;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
  }
  body nav {
  	background: rgba(34, 34, 34, 0.97);
}

  body nav ul li a {
 	color: #fff;
}

  body close-menu {
  	color: #fff;
}
}


