/*
Theme Name: Industrial Machinery
Theme URI: https://example.com
Author: ChatGPT
Description: About ATCP Group B.V. WordPress theme
Version: 1.0
Requires at least: 6.0
Tested up to: 6.8
License: GPL v2 or later
Text Domain: industrial
*/

html{
scroll-behavior:smooth;
}

body{
margin:0;
font-family:Arial,Helvetica,sans-serif;
background:#f4f6f8;
color:#222;
}

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

header{
background:#0c2340;
color:white;
padding:20px 0;
position:sticky;
top:0;
z-index:999;
}

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

.logo{
font-size:28px;
font-weight:bold;
}

nav ul{
list-style:none;
display:flex;
gap:30px;
margin:0;
padding:0;
}

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

.hero{
height:650px;
background:url("https://atcpgrp.com/img/image-3ac78e24-6a49-4660-96c4-ab18cc1cf5e5.jpg") center/cover;
display:flex;
align-items:center;
text-align:center;
color:white;
}

.hero h1{
font-size:56px;
margin-bottom:20px;
}

.hero p{
font-size:22px;
}

.btn{
display:inline-block;
margin-top:30px;
padding:16px 36px;
background:#ff8b00;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:bold;
}

section{
padding:90px 0;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

footer{
background:#0c2340;
color:white;
padding:40px 0;
text-align:center;
}

@media(max-width:900px){

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

.hero h1{
font-size:40px;
}

nav ul{
display:none;
}

h2{
font-size:40px;
text-align:center;
margin-bottom:50px;
color:#0c2340;
}

ul{
padding-left:20px;
}

li{
margin:12px 0;
}

input,
textarea{

width:100%;
padding:15px;
margin-bottom:15px;

border:1px solid #ddd;

border-radius:6px;

font-size:16px;

box-sizing:border-box;

}

textarea{

height:170px;

resize:vertical;

}

button{

border:none;

cursor:pointer;

}

.card:hover{

transform:translateY(-8px);

transition:.3s;

}

.hero{

position:relative;

}

.hero::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.55);

}

.hero .container{

position:relative;

z-index:2;

}

}