@import 'colors.css';


:root{
	--border-radius: 20px;
	--header-font: 14px;
}


*, *::before, *::after { box-sizing: border-box; }

html{
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;

}

body{
	margin: 0;
	padding: 0;
	font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

.cookie-popup{
	position: fixed;
  	bottom: 20px;        
  	left: 50%;          
  	transform: translateX(-50%); 
  	background: white;
  	padding: 20px;
  	border-radius: var(--border-radius);
  	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 5px 0px;
  	z-index: 99;            
  	max-width: 400px;
	  color: var(--font-color);
	  display: none;
}

.close-btn{
	position: absolute;
  	top: 10px;
  	right: 10px;
  	background: transparent;
  	border: none;
  	font-size: 18px;
  	cursor: pointer;
}

.close-btn button{
	background: transparent;
	border: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	cursor: pointer;
}

.cookie-popup-content{
	text-align: center;
}


.cookie-popup-content h2{
	font-family: "Montserrat", sans-serif;
	font-size: 26px;
	margin-top: 2px;
}

.cookie-popup-content h3{
	margin-top: -10px;
	font-size: 18px;
	color: rgb(77, 77, 77);
	font-weight: 300;
}


.cookie-popup-content button{
	border: none;
	border-radius: var(--border-radius);
	font-family: "Montserrat", sans-serif;
	font-size: 1em;
	padding: 10px 35px;
	font-weight: 800;
	background: var(--primary-color);
	color: white;
	cursor: pointer;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 5px 0px;
}

#decline-cookies{
	margin-left: 10px;
	background: var(--background-color);
	color: var(--font-color);
	
}

.header-main{
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
    position: fixed;
    display: block;
    /*box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 5px 0px;*/
	  border-bottom: 1px solid rgb(219, 219, 219);
    z-index: 100;
    padding: 1rpx 65px;
    background:
    linear-gradient(90deg,
      rgba(255,255,255,1) 15%,
      rgba(255,255,255,0) 20%,
      rgba(255,255,255,0) 65%,
      rgba(255,255,255,1) 100%
    ),
    rgba(255,255,255,0.7);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    

}

.header-content{
    max-width: 90vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
	  justify-content: space-between;
    gap: 20px;
}


.logo-wrap img{
    height: 90px;
    width: auto;
    cursor: pointer;
    display: block;
}

		
.header-tabs{
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;


	
}

#header-btn{
	/*background: linear-gradient(135deg, #595760, var(--accent-color) 75%);*/
	background-color: var(--font-color);
	border: 3px solid rgba(255, 255, 255, 0.0);
	border-radius: var(--border-radius);
	padding: 10px 25px;
	color: var(--background-color);
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: var(--header-font);
	/*box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 5px 0px;*/
	transition: all 0.4s;
	text-decoration: none;
	border: none;
	
}

#header-btn:hover{
	cursor: pointer;
	background-color: #26384a;
	transition: all 0.3s;
	

}


.header-tab{
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--font-color);
    background: transparent;
    font-weight: 400;
	transition: color .15s ease;
    border: 1px solid transparent;
	position: relative;
	font-size: var(--header-font);
}


.header-tab::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	background: var(--font-color);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .28s cubic-bezier(.2,.9,.2,1);
	will-change: transform;
	backface-visibility: hidden;
	border-radius: 2px;
}

.header-tab:hover::after,
.header-tab:focus::after,
.header-tab.active::after{
	transform: scaleX(1);
}


.header-main, .header-content{ overflow: visible; }









.landing {
	position: relative;
	height: 100vh;
	width: 100vw;
	top: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
	-webkit-user-select: none; 
	-ms-user-select: none; 
	user-select: none;
  background-color: var(--background-color);
	border-bottom: 1px solid rgba(219, 219, 219);
}




.landing-image {
	position: absolute;
	top: 65px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;

	transition: transform 0.6s ease-out;
    
}


.landing::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
  background: linear-gradient(to right, rgb(233, 233, 233) 0%, rgba(0, 0, 255, 0) 75%);
	z-index: 3;
	pointer-events: none;
}

.landing-content {
	padding: 10px;
	z-index: 3;
	text-align: left;
	max-width: 800px;
	margin: 32px 0 0 8%;
}

.landing-content h1 {
  color: var(--font-color);
	font-weight: 300;
	font-size: 3.2rem;
}



.landing-buttons {
	display: flex;
	justify-content: left;
	gap: 25px;
    
}

.landing-buttons button {
	padding: 10px 10px;
	font-size: 0.9em;
	border: 2px solid rgba(255, 255, 255, 0.0);
	cursor: pointer;
	background-color: var(--background-color);
	color: var(--font-color);
  font-weight: 400;
	flex: 1;
	height: 40px;
	max-width: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Montserrat", sans-serif;
  transition: all 0.4s;
  /*box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 5px 0px;*/
  border-radius: var(--border-radius);
    

}

#portfolio-btn{
    background-color: var(--font-color);
    color: var(--background-color);
}

#portfolio-btn:hover{
  background-color: #26384a;
	transition: all 0.3s;
}

.landing-buttons button:hover {
    background-color: rgb(211, 211, 211);
    transition: all 0.3s;
    
}




.landing-footer {
	background-color: var(--accent-color);
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
	height: 32vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
    background: var(--accent-color);
}

.data-container {
	text-align: center;
	margin: 0 auto;
	margin-top: 100px;
	margin-bottom: 100px;
	color: var(--background-color);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.data-items {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap; 
	width: 100%; 
}

.data-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex: 1;
	max-width: 200px; 
	margin: 0 75px; 
}

.data {
	font-size: 42px;
	font-weight: 500;
	color: var(--background-color);
}

.data-text {
	font-size: 15px;
	color: var(--background-color);
	margin-top: 10px; 
}


.split-section {
	display: flex;
	width: 100%;
	padding: 0px;
	position: relative;
    
}

.image-half {
	flex: 1;
	position: relative;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.image-half img {
	max-width: 100%;
	height: 100%; 
	object-fit: cover; 
}

.image-half::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.0) 0%, rgb(255, 255, 255) 100%);
	z-index: 1;
	pointer-events: none;
}

.content-half {
	flex: 1;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	z-index: 2;
	margin-left: 85px;
	height: 100%; 
    
}


.content-half h2 {
	font-size: 36px;
	margin-bottom: 30px;
}

.content-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	width: 70%;
	background-color: var(--background-color);
	border-radius: 12px;
	padding: 15px;
	box-sizing: border-box;
	min-height: 120px; 
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 5px 0px;
	transition: all 0.3s;
}

.content-item:hover {
	cursor: pointer;
    transform: scale(1.02);
}

.content-item img {
	margin-right: 20px;
	flex-shrink: 0;
	height: 85px;
	width: auto;
}

.text-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.text-content h3 {
	margin: 0 0 10px;
	color: var(--primary-color);
}

.text-content p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
}



.color-a,
span.color-a{
	/*color: var(--primary-color);*/
	font-weight: 600;
	font-size: 3.6rem;
	line-height: 1.2;
	letter-spacing: 2px;
}



.about{
    padding: 80px 6vw;
    background: var(--background-color);
}


.about-content{
    max-width: 1200px;
    margin: 0 auto;
}


.about-content h2{
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--font-color);
}


.about-content p{margin-bottom:24px;color:var(--font-color);}


.card-row{
    display: flex;
    gap: 20px;
    align-items: stretch;
}


.about-card{
    flex: 1 1 0;
    background: var(--primary-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 5px 0px;
    color: var(--background-color);
    opacity: 0;
    transform: translateY(18px);
    transition: all 0.3s;
    cursor: pointer;
    text-align: left;
	
    
}

.about-card img{
    height: 100px;
    width: auto;
    margin-bottom: 10px;
}

.about-card h3{
    font-weight: 800;
    font-size: 18px;
}

.about-card p{
    color: var(--background-color);
}





.about.is-visible .about-card:nth-child(1){ transition-delay: .30s; opacity:1; transform: none; }
.about.is-visible .about-card:nth-child(2){ transition-delay: .45s; opacity:1; transform: none; }
.about.is-visible .about-card:nth-child(3){ transition-delay: .60s; opacity:1; transform: none; }
.about.is-visible .about-card:nth-child(4){ transition-delay: .75s; opacity:1; transform: none; }

@media (max-width: 860px){
    .card-row{flex-direction:column}
    .about{padding:48px 4vw}
    .about-card{opacity:1; transform:none}
}




.about-content{
    justify-content: center;
    text-align: center;
    padding: 50px 0px;
}

.about-content h2{
    font-size: 2.3rem;
}



.work-section-content{
	margin-top: 50px;
	padding: 50px 125px;
	justify-content: center;
	align-content: center;
	

	
}


.portfolio-cards{
	display: flex;
    gap: 30px;
    align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 25px 0px;
}


.portfolio-card {
  /*box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 5px 0px;
  border-radius: var(--border-radius);*/
  cursor: pointer;
  overflow: hidden; 
  height: 100%;
  width: 385px;
}


.portfolio-card-content{
	text-align: left;
	text-wrap: wrap;
}

.portfolio-card-content h2{
	font-size: 18px;
	font-weight: 600;
}

.portfolio-card-content p{
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 45px;
}


.portfolio-card img{
	height: auto;
	width: 100%;
	margin: 0 auto 0 auto;
	transition: all 0.3s;
	
	
	
	
}

#explore-site{
	background-color: var(--accent-color);
	border-radius: var(--border-radius);
	padding: 10px 0px;
	color: var(--background-color);
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	border: 2px solid rgba(255, 255, 255, 0.0);
	transition: all 0.3s;
	display: none;
  	margin: 10px auto 0 auto;
	width: 100%;
	box-sizing: border-box;
}

#explore-site:hover{
	cursor: pointer;
	background-color: var(--background-color);
	color: var(--accent-color);
	border: 2px solid var(--accent-color);
}




.portfolio-card:hover img {
    filter: brightness(75%);
	  
	
}





.projects-section {
  padding: 100px 60px;
  background: var(--background-color);
  color: var(--font-color);
  
}


.projects-section-container {
  max-width: 1200px;
  margin: 0 auto;
}


.projects-section-subtitle {
  color: var(--accent-color);
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}

.projects-section-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 60px;
}


.projects-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}


.projects-section-card {
  background: var(--background-color);
  border: none;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;

}

.projects-section-card.show {
  opacity: 1;
  transform: translateY(0);
}

.projects-section-card:hover{
	cursor: pointer;
}

.card-image-wrapper {
  overflow: hidden;
  border-radius: 0.25em;
  position: relative;
}


.card-image-wrapper span {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 25px;
  color: white; 
  display: flex;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.6s ease;
  
}


.projects-section-card:hover .card-image-wrapper span {
  opacity: 0.9;
}



/*.projects-section-card:hover img{
  filter: brightness(85%);
  transform: scale(1.05);
}*/

.projects-section-card:hover img {
  transform: scale(1.05);
}

.card-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 0.25em;
}

.projects-section-card:hover .card-image-wrapper::after {
  opacity: 1;
}







.projects-section-card img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 295px;
  transition: all 0.6s;
  
  
  
}


.projects-section-card-content {
  display: flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.projects-section-left {
  max-width: 70%;
}

.projects-section-left h3 {
  font-size: 20px;
  margin-bottom: -5px;
  font-weight: 600;
}

.projects-section-left p {
  color: #585858;
  font-size: 14px;
  font-weight: 300;
}


.projects-section-right {
  text-align: right;
  white-space: nowrap;
  
}

.projects-section-right span {
  display: block;
  font-size: 13px;
  color: #a5a7a8;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.projects-section-right p {
  font-size: 13px;
  color: #a5a7a8;
}









.services {
  padding: 100px 60px;
  background-color: var(--font-color);
}


.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

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

.subtitle {
  color: var(--background-color);
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}



.title {
  color: var(--background-color);
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 60px;
}


.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  border-top: 1px solid #222;
}

.service {
  padding: 40px 0;
  border-bottom: 1px solid #222;
  position: relative;
  
}


.number {
  position: absolute;
  left: -40px;
  top: 45px;
  color: #6a6a6a;
  font-size: 14px;
}

/*.service:hover h3{
	transform: translateX(8px);
}
*/


.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 400;
  color: var(--background-color);
  transition: transform 0.3s ease;
}


.service p {
  color: #6a6a6a;
  font-size: 15px;
}



.about-section {
  padding: 100px 60px;
  
}


.about-section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}


.about-section-subtitle {
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.about-section-title {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #111;
}

.about-section-title span {
  font-weight: 700;
}

.about-section-text {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 500px;
}

.about-section-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease;
}


.about-section-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s ease;
}


.about-section-left.show {
  opacity: 1;
  transform: translateX(0);
}

.about-section-right.show {
  opacity: 1;
  transform: translateX(0);
}


.about-section-card {
  border: 1px solid #ddd;
  padding: 15px 95px;
  text-align: center;
  background: #fff;
  border-radius: 0.25em;
}

.about-section-card h2 {
  font-size: 45px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #111;
}

.about-section-card p {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent-color);
}






.contact-left,
.contact-right {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


.contact-left.active,
.contact-right.active {
  opacity: 1;
  transform: translateY(0);
}


.contact-right.active {
  transition-delay: 0.3s;
}

.contact-section {
  padding: 100px 60px;
  background: #f5f5f5;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}


.contact-subtitle {
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.contact-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
}

.contact-title span {
  font-weight: 600;
}

.contact-text {
  color: #555;
  margin-bottom: 40px;
  max-width: 400px;
  
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--font-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-label {
  font-size: 12px;
  color: var(--accent-color);
  text-decoration: none;
}


.contact-right {
  background: #fff;
  padding: 40px;
  border: 1px solid #ddd;
  border-radius: 0.25em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-size: 12px;
  color: var(--accent-color);
  font-family: "Montserrat", sans-serif;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 14px;
  outline: none;
  background: transparent;
  font-family: "Montserrat", sans-serif;
}

.contact-form textarea {
  height: 100px;
  resize: none;
  font-family: "Montserrat", sans-serif;
}

.contact-form button {
  margin-top: 20px;
  background: var(--font-color);
  color: white;
  padding: 15px;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}






.simple-footer {
  background: var(--font-color);
  color: #fff;
  padding: 25px 60px;
}

.simple-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}


.simple-footer-left h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.simple-footer-left span{
	font-weight: 300;
}


.simple-footer-center {
  position: absolute;       
  left: 50%;                
  transform: translateX(-50%); 
  display: flex;
  gap: 30px;
 
}

.simple-footer-center a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.simple-footer-center a:hover {
  color: #fff;
}


.simple-footer-right p {
  font-size: 13px;
  color: #777;
}





@media (max-width: 768px) {

  body{
    overflow-x: hidden;
  }
	.landing-image { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-section-container { grid-template-columns: 1fr; }

  .header-main{
    background-color: white;
  }

  .header-tabs{
    display: none;
  }

  .logo-wrap img{height:64px}
  .header-tabs{gap:8px}
  .header-tab{padding:6px 10px;font-size:14px}

  .logo-wrap img{
    height: 90px;
  }

  .landing{
    background-color: var(--background-color);
    display: flex;
  }

  .landing-content {
    margin: 0 auto;
    text-align: center;
  }

  .landing-buttons {
    justify-content: center;
  }

  .landing::before{
    background-color: var(--background-color);
    background: none;
  }

  .landing-buttons button{
    border: 1px solid var(--font-color);
  }


  
  .projects-section {
    padding: 60px 20px;
  }

  .projects-section-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .projects-section-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  
  .about-section {
    padding: 60px 20px;
  }

  .about-section-title {
    font-size: 28px;
  }

  .about-section-text {
    font-size: 14px;
  }

  .about-section-right {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-section-card {
    padding: 20px;
  }

  /* Contact — form stacks below content */
  .contact-section {
    padding: 60px 20px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-label{
    color: var(--accent-color);
  }

  
  .contact-text {
    max-width: 100%;
  }

  .simple-footer-center{
    display: none;
  }
}

