* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

html {
scroll-behavior: smooth;
}

body {
font-family: Arial, sans-serif;
background: #0b0b0b;
color: #ffffff;
overflow-x: hidden;
}

/* ================= HEADER ================= */

header {
background: #080808;
padding: 15px 4%;
border-bottom: 1px solid #2a2118;
}

nav {
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}

.logo img {
width: 300px;
max-width: 45vw;
height: auto;
display: block;
}

.menu {
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
list-style: none;
flex-wrap: wrap;
}

.menu a {
color: #ffffff;
text-decoration: none;
font-size: 14px;
letter-spacing: 1px;
transition: 0.3s;
}

.menu a:hover {
color: #c58a35;
}

/* ================= HOME ================= */

.hero {
min-height: 650px;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
padding: 80px 7%;

background:
    radial-gradient(
        circle at 70% 45%,
        #2a2118 0%,
        #111111 35%,
        #080808 75%
    );

}

.hero-content {
position: relative;
z-index: 2;
max-width: 600px;
}

.hero-content span {
font-family: Georgia, serif;
font-size: 60px;
letter-spacing: 2px;
}

.hero h1 {
color: #c58a35;
font-family: Georgia, serif;
font-size: 38px;
margin-top: 8px;
}

.line {
width: 100px;
height: 2px;
background: #c58a35;
margin: 30px 0;
}

.hero p {
font-size: 18px;
line-height: 1.7;
color: #dddddd;
}

.hero-button {
display: inline-block;
margin-top: 30px;
padding: 16px 28px;
border: 1px solid #c58a35;
color: #c58a35;
text-decoration: none;
font-size: 15px;
letter-spacing: 1px;
transition: 0.3s;
}

.hero-button:hover {
background: #c58a35;
color: #111111;
}

/* ================= WATERMARK ================= */

.watermark {
position: absolute;
right: 25%;
top: 5%;
font-family: Georgia, serif;
font-size: 600px;
color: rgba(160, 105, 40, 0.08);
line-height: 1;
pointer-events: none;
}

/* ================= FEATURES ================= */

.features {
position: relative;
z-index: 5;

margin: -30px 4% 0;
display: grid;
grid-template-columns: repeat(4, 1fr);
background: #080808;
border: 1px solid #3a2a18;
border-radius: 15px;
padding: 35px 20px;

}

.features > div {
text-align: center;
padding: 10px 20px;
border-right: 1px solid #3a2a18;
}

.features > div:last-child {
border-right: none;
}

.features strong {
display: block;
color: #c58a35;
font-size: 32px;
margin-bottom: 12px;
}

.features h3 {
font-size: 16px;
margin-bottom: 10px;
}

.features p {
color: #bbbbbb;
line-height: 1.6;
font-size: 14px;
}

/* ================= ABOUT ================= */

.about {
padding: 90px 20px;
text-align: center;
background: #0b0b0b;
}

.about span {
display: inline-block;

color: #c58a35;
letter-spacing: 4px;
font-size: 12px;
font-weight: 600;
margin-bottom: 30px;
padding: 10px 25px;
border: 1px solid #c58a35;

}

.about h2 {
max-width: 1000px;
margin: 0 auto;

padding: 45px 50px;
border: 1px solid rgba(197, 138, 53, 0.45);
font-family: Georgia, serif;
font-size: 17px;
font-weight: 400;
line-height: 1.9;
color: #eeeeee;

}

/* ================= PRODUCTS ================= */

.products {
padding: 90px 20px;
background: #0b0b0b;
}

.section-title {
text-align: center;
margin-bottom: 45px;
}

.section-title span {
color: #c58a35;
letter-spacing: 4px;
font-size: 12px;
font-weight: 600;
}

.section-title h2 {
margin-top: 15px;

color: #eeeeee;
font-family: Georgia, serif;
font-size: 32px;
font-weight: 400;

}

.products-gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);

gap: 20px;
max-width: 1100px;
margin: auto;

}

.products-gallery img {
width: 100%;
height: 380px;

object-fit: cover;
display: block;
border-radius: 10px;
transition: 0.4s;

}

.products-gallery img:hover {
transform: scale(1.02);
}

/* ================= PROJECTS ================= */
.projects {
  padding: 90px 5%;
  background: #080808;
}

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 700px;
  margin: auto;
}

.project-card {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #111111;
}

.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.project-card img:hover {
  transform: scale(1.03);
}
/* ================= CONTACT ================= */

.contact {
padding: 90px 20px;
text-align: center;
background: #0b0b0b;
}

.contact h2 {
color: #eeeeee;

font-family: Georgia, serif;
font-size: 32px;
font-weight: 400;
margin-bottom: 12px;

}

.contact > p {
color: #999999;
font-size: 14px;

margin-bottom: 35px;

}

.contact-info {
margin-bottom: 40px;
}

.contact-info p {
color: #cccccc;

font-size: 14px;
margin: 12px 0;

}

.contact form {
max-width: 600px;
margin: auto;

display: flex;
flex-direction: column;
gap: 15px;

}

.contact input,
.contact textarea {
width: 100%;

padding: 15px;
background: #111111;
border: 1px solid rgba(197, 138, 53, 0.4);
color: #ffffff;
font-family: Arial, sans-serif;
font-size: 14px;
outline: none;
border-radius: 3px;

}

.contact textarea {
height: 140px;
resize: none;
}

.contact input:focus,
.contact textarea:focus {
border-color: #c58a35;
}

.contact button {
padding: 15px;

background: #c58a35;
border: none;
color: #0b0b0b;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: 0.3s;

}

.contact button:hover {
background: #e0aa55;
}

/* ================= TABLET ================= */

@media (max-width: 1000px) {

.logo img {
    width: 240px;
}
.menu {
    gap: 18px;
}
.menu a {
    font-size: 12px;
}
.hero-content span {
    font-size: 50px;
}
.products-gallery,
.projects-grid {
    grid-template-columns: repeat(2, 1fr);
}

}

/* ================= MOBILE ================= */

@media (max-width: 800px) {

header {
    padding: 15px 18px;
}
nav {
    flex-direction: column;
    gap: 18px;
}
.logo img {
    width: 240px;
    max-width: 80vw;
}
.menu {
    gap: 12px 18px;
}
.menu a {
    font-size: 11px;
}
/* HOME */
.hero {
    min-height: 600px;
    padding: 60px 25px;
}
.hero-content {
    max-width: 100%;
}
.hero-content span {
    font-size: 40px;
}
.hero h1 {
    font-size: 27px;
}
.hero p {
    font-size: 15px;
}
.watermark {
    right: -20%;
    top: 15%;
    font-size: 400px;
}
/* FEATURES */
.features {
    grid-template-columns: 1fr 1fr;
    margin: -20px 15px 0;
    padding: 25px 10px;
}
.features > div {
    border-right: none;
    padding: 12px 8px;
    margin-bottom: 15px;
}
.features strong {
    font-size: 27px;
}
.features h3 {
    font-size: 13px;
}
.features p {
    font-size: 12px;
}
/* ABOUT */
.about {
    padding: 65px 18px;
}
.about span {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 8px 18px;
}
.about h2 {
    padding: 25px 20px;
    font-size: 13px;
    line-height: 1.9;
}
/* PRODUCTS */
.products {
    padding: 65px 18px;
}
.section-title {
    margin-bottom: 30px;
}
.section-title h2 {
    font-size: 26px;
}
.products-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
}
.products-gallery img {
    height: 300px;
}
/* PROJECTS */
.projects {
    padding: 65px 18px;
}
.projects-grid {
    grid-template-columns: 1fr;
    gap: 15px;
}
.project-card img {
    height: 300px;
}
/* CONTACT */
.contact {
    padding: 65px 18px;
}
.contact h2 {
    font-size: 27px;
}
.contact-info p {
    font-size: 13px;
}
.contact form {
    width: 100%;
}

}

/* ================= SMALL PHONES ================= */

@media (max-width: 400px) {

.hero-content span {
    font-size: 34px;
}
.hero h1 {
    font-size: 23px;
}
.menu {
    gap: 10px 13px;
}
.menu a {
    font-size: 10px;
}
.about h2 {
    padding: 22px 16px;
    font-size: 12px;
}
.products-gallery img,
.project-card img {
    height: 280px;
}

}  
/* ================= FOOTER ================= */

.footer {
    background: #080808;
    border-top: 1px solid #3a2a18;
    padding: 60px 6% 20px;
}

.footer-content {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo img {
    width: 250px;
    max-width: 100%;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #999999;
    font-size: 14px;
    line-height: 1.6;
}

.footer h3 {
    color: #c58a35;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #c58a35;
}

.footer-contact p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 13px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 45px auto 0;
    padding-top: 20px;

    border-top: 1px solid #2a2118;

    text-align: center;
}

.footer-bottom p {
    color: #777777;
    font-size: 12px;
}


/* ================= FOOTER MOBILE ================= */

@media (max-width: 800px) {

    .footer {
        padding: 50px 25px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-logo img {
        width: 220px;
    }

    .footer-links {
        align-items: center;
    }

    .footer-bottom {
        margin-top: 35px;
    }

    .footer-bottom p {
        line-height: 1.6;
    }
}