/*
Theme Name: Artius Theme
Author: Sipan
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    background: #000;
    color: #D9AA4C;
    font-family: 'Montserrat', sans-serif;
}

.navbar {
    position: absolute;
    top: 35px;
    right: 5%;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(18px, 2vw, 40px);

    z-index: 1000;
}

.navbar a {
    color: #D9AA4C;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.25s ease, transform 0.25s ease;
}

.navbar a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.page-center {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
    box-sizing: border-box;
}

.page-center h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 500;
    letter-spacing: 6px;
}

.page-center h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-center p {
    color: #ffffff;
    font-size: 20px;
    max-width: 700px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.services-list {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.service-card {
    border: 1px solid #D9AA4C;
    padding: 30px;
    width: 250px;
    border-radius: 10px;
    background: #111;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;
}

.service-card h3 {
    color: #D9AA4C;
    text-align: center;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    font-size: 16px;
    background: #1a1a1a;
    border: 1px solid #D9AA4C;
    color: white;
    border-radius: 5px;
}

.contact-form button {
    padding: 15px;
    background: #D9AA4C;
    color: black;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background: #D9AA4C;
}


.home-logo {
    width: 325px;
    height: auto;
    margin-bottom: 40px;
}

.home-page h1 {
    margin-top: 20px;
}
.contact-title {
    font-size: 3rem;
    margin-bottom: 25px;
}

.contact-logo {
    width: 300px;
    height: auto;
    margin-bottom: 15px;
    display: block;
}
.n2-ss-slider {
    max-width: 1200px;
    margin: 60px auto 0;
    border: 2px solid #D9AA4C;
    border-radius: 12px;
    overflow: hidden;
}
.services-page {
    padding-top: 140px;
    padding-bottom: 100px;
}

.services-intro {
    max-width: 950px;
    margin-bottom: 40px;
}

.services-grid {
    max-width: 1100px;
}

.services-grid .service-card {
    min-height: 180px;
}

.services-section {
    margin-top: 70px;
    max-width: 1100px;
    width: 100%;
}

.services-section h2,
.services-cta h2 {
    color: #D9AA4C;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.badge-list span {
    border: 1px solid #D9AA4C;
    color: #D9AA4C;
    padding: 12px 18px;
    border-radius: 30px;
    background: #111;
    font-weight: 600;
}

.services-cta {
    margin-top: 80px;
    max-width: 900px;
    border: 1px solid #D9AA4C;
    border-radius: 16px;
    padding: 40px;
    background: #111;
}

.services-cta a {
    display: inline-block;
    margin-top: 20px;
    background: #D9AA4C;
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.services-cta a:hover {
    background: #FFD27A;
}
.services-slider {
    width: 100%;
    max-width: 950px;
    margin: 35px auto 0;
    border: 3px solid #D9AA4C;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
}
.form-success {
    color: #D9AA4C;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}
.services-logo {
    display: block;
    margin: 0 auto 30px auto;
    width: 180px;
    max-width: 100%;
}

.services-page h2:first-of-type {
    margin-top: 0;
}

.home-services-section {
    max-width: 1100px;
    width: 100%;
    margin: 70px auto;
    text-align: center;
}

@media (max-width: 900px) {

    .navbar {
        top: 25px;
        right: 30px;
        gap: 20px;
    }

}