﻿/* ===================================
INTER FONT
=================================== */

@font-face {
font-family: 'Inter';
src: url('../fonts/Inter.ttf') format('truetype');
font-style: normal;
font-weight: 100 900;
font-display: swap;
}

@font-face {
font-family: 'Inter';
src: url('../fonts/Inter-Italic.ttf') format('truetype');
font-style: italic;
font-weight: 100 900;
font-display: swap;
}

/* ===================================
CSS VARIABLES
=================================== */

:root {
/* Colors */
--color-white: #ffffff;
--color-black: #111111;
--color-text: #555555;
--color-border: #e5e5e5;
--color-background: #fafafa;
/* Typography */
--font-primary: 'Inter', sans-serif;
/* Layout */
/*    --container-width: 1200px;*/
/* Border Radius */
/*    --radius-sm: 8px;*/
--radius-md: 12px;
--radius-lg: 18px;
/* Transition */
--transition: all .3s ease;
}

/* ===================================
RESET
=================================== */

*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* ===================================
HTML
=================================== */

html {
font-size: 16px;
scroll-behavior: smooth;
}

/* ===================================
BODY
=================================== */

body {
font-family: var(--font-primary);
font-size: 1rem;
font-weight: 400;
line-height: 1.6;
color: var(--color-text);
background: var(--color-white);
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}

/* ===================================
GLOBAL ELEMENTS
=================================== */

img {
display: block;
max-width: 100%;
height: auto;
}

a {
color: inherit;
text-decoration: none;
transition: var(--transition);
}

ul,
ol {
list-style: none;
}

button,
input,
textarea,
select {
font: inherit;
}

button {
border: none;
background: none;
cursor: pointer;
}

input,
textarea,
select {
outline: none;
}

textarea {
resize: vertical;
}


/* ===================================
CONTAINER
=================================== */

.container {
width: 100%;
max-width: 1140px;
margin: 0 auto;
padding: 0 24px;
}

.content-container {
width: 100%;
max-width: 1120px;
margin: 0 auto;
}

/* ===================================
SECTION
=================================== */

section {
padding: 100px 0;
scroll-margin-top: 100px;
}

/* ===================================
HEADINGS
=================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--color-black);
font-weight: 700;
line-height: 1.2;
}

p {
margin-bottom: 1rem;
}


/* ===================================
HEADER
=================================== */

.site-header {
position: sticky;
top: 0;
left: 0;
z-index: 1000;
width: 100%;
background: #fff;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid var(--color-border);
}

.site-navbar {
display: flex;
align-items: center;
justify-content: space-between;
height: 80px;
}

.site-logo {
font-size: 1.6rem;
font-weight: 700;
color: var(--color-black);
letter-spacing: -0.04em;
}


.contact-icon {
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border: 1px solid var(--color-border);
border-radius: 50%;
color: var(--color-black);
font-size: 1.1rem;
transition: var(--transition);
}

.contact-icon:hover {
background: var(--color-black);
color: var(--color-white);
border-color: var(--color-black);
}


/* ===================================
HERO
=================================== */

.hero-section {
display: flex;
align-items: center;
min-height: calc(100vh - 80px);
padding: 80px 0;
}


.hero-tag {
display: inline-block;
margin-bottom: 20px;
font-size: 0.9rem;
font-weight: 600;
color: var(--color-black);
text-transform: uppercase;
letter-spacing: 2px;
}

.hero-title {
margin-bottom: 24px;
font-size: clamp(3rem, 6vw, 5rem);
font-weight: 700;
line-height: 1.05;
letter-spacing: -0.05em;
color: var(--color-black);
}

.hero-description {
max-width: 620px;
margin-bottom: 40px;
font-size: 1.125rem;
line-height: 1.8;
color: var(--color-text);
}

.hero-actions {
display: flex;
align-items: center;
gap: 20px;
}


.btn-primary,
.btn-secondary {
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--color-black);
min-width: 170px;
height: 52px;
padding: 0 28px;
border-radius: var(--radius-md);
font-size: 0.95rem;
font-weight: 600;
transition: var(--transition);
color: #fff;
}

.btn-primary:hover {
background: #2b2b2b;
}



.btn-secondary:hover {
background: var(--color-background);
}

.hero-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
gap: 120px;
}

.hero-content {
flex: 1;
max-width: 700px;
}

.hero-image {
flex: 0 0 420px;
display: flex;
justify-content: center;
align-items: center;
}

/*.image-placeholder {
width: 380px;
height: 480px;
border: 2px dashed var(--color-border);
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
color: #999999;
font-weight: 600;
}*/

    .hero-image img {
        width: 380px;
        height: 480px;
        object-fit: cover;
        border-radius: var(--radius-lg);
        display: block;
/*        -webkit-mask-image: radial-gradient(circle, black 55%, transparent 100%);
        mask-image: radial-gradient(circle, black 55%, transparent 100%);*/
    }


/* ===================================
ABOUT
=================================== */

.about-section {
padding: 180px 0 120px;
}

.about-content {
max-width: 760px;
}

.section-tag {
display: inline-block;
margin-bottom: 20px;
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--color-black);
}

.section-title {
margin-bottom: 24px;
font-size: clamp(2.2rem, 4vw, 3.5rem);
font-weight: 700;
line-height: 1.2;
letter-spacing: -0.03em;
color: var(--color-black);
}

.section-description {
max-width: 650px;
font-size: 1.125rem;
line-height: 1.8;
color: var(--color-text);
}


/* ===================================
WORK
=================================== */

.work-section {
padding: 120px 0;
}

.work-header {
max-width: 700px;
margin-bottom: 60px;
}

.work-grid {
display: grid;
grid-template-columns: repeat(4, 260px);
justify-content: center;
gap: 24px;
}

.work-card {
background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
border: 1px solid #e8e8e8;
border-radius: 20px;
overflow: hidden;
transition: all 0.35s ease;
position: relative;
}

.work-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--color-black);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.35s ease;
}


.work-card-link {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
min-height: 280px;
padding: 24px;
color: inherit;
text-decoration: none;
}

.work-logo {
width: 100%;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 30px;
}

.work-logo img {
max-width: 90px;
max-height: 80px;
width: auto;
height: auto;
object-fit: contain;
transition: transform 0.35s ease;
}


.work-content {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

.work-title {
margin: 0;
font-size: 1.25rem;
font-weight: 700;
line-height: 1.4;
text-align: center;
letter-spacing: -0.02em;
color: var(--color-black);
}

.work-footer {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 32px;
padding-top: 18px;
border-top: 1px solid var(--color-border);
}


.work-website {
font-size: 0.9rem;
font-weight: 600;
color: var(--color-black);
transition: color 0.35s ease;
}


/* ===================================
SERVICES
=================================== */

.services-section {
padding: 120px 0;
}

.services-header {
max-width: 700px;
margin-bottom: 60px;
}

.services-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}

.service-card {
position: relative;
display: flex;
flex-direction: column;
padding: 40px 32px;
background: var(--color-white);
border: 1px solid #e8e8e8;
border-radius: 20px;
overflow: hidden;
transition: all 0.35s ease;
}

.service-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--color-black);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.35s ease;
}

.service-icon {
display: flex;
align-items: center;
justify-content: center;
width: 72px;
height: 72px;
margin-bottom: 32px;
background: #f7f7f7;
border-radius: 18px;
transition: transform 0.35s ease;
}

.service-title {
margin-bottom: 16px;
font-size: 1.35rem;
font-weight: 700;
line-height: 1.4;
letter-spacing: -0.02em;
color: var(--color-black);
}

.service-description {
margin: 0;
font-size: 0.98rem;
line-height: 1.8;
color: var(--color-text);
}


/* ===================================
PROCESS
=================================== */

.process-section {
padding: 120px 0;
}

.process-header {
max-width: 700px;
margin-bottom: 70px;
}

.process-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}

.process-item {
position: relative;
padding-right: 20px;
}


.process-number {
display: inline-flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
margin-bottom: 28px;
border: 1px solid var(--color-black);
border-radius: 50%;
font-size: 1rem;
font-weight: 700;
color: var(--color-black);
background: var(--color-white);
}

.process-title {
margin-bottom: 16px;
font-size: 1.35rem;
font-weight: 700;
letter-spacing: -0.02em;
color: var(--color-black);
}

.process-description {
margin: 0;
font-size: 1rem;
line-height: 1.8;
color: var(--color-text);
}

/* ===================================
CONTACT
=================================== */

.contact-section {
padding: 80px 0 120px;
}

.contact-header {
max-width: 700px;
margin-bottom: 70px;
}

.contact-content {
display: grid;
grid-template-columns: 1fr 1.4fr;
gap: 80px;
align-items: start;
}

.contact-info h3 {
margin-bottom: 20px;
font-size: 2rem;
font-weight: 700;
color: var(--color-black);
}

.contact-info p {
margin-bottom: 40px;
line-height: 1.8;
color: var(--color-text);
}

.contact-list {
list-style: none;
padding: 0;
margin: 0;
}

.contact-list li {
margin-bottom: 28px;
font-size: 1rem;
line-height: 1.8;
color: var(--color-text);
}

.contact-list strong {
display: block;
margin-bottom: 6px;
color: var(--color-black);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 24px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 18px 22px;
font-family: inherit;
font-size: 1rem;
border: 1px solid #dddddd;
border-radius: 14px;
background: #ffffff;
color: var(--color-black);
outline: none;
transition: all 0.3s ease;
}

.form-group textarea {
resize: vertical;
min-height: 180px;
}

.form-group input:focus,
.form-group textarea:focus {
border-color: var(--color-black);
}


/* ===================================
FOOTER
=================================== */

.footer {
padding: 50px 0;
border-top: 1px solid var(--color-border);
}

.footer .container {
display: flex;
justify-content: center;
align-items: center;
}

.footer-social {
display: flex;
align-items: center;
justify-content: center;
width: 46px;
height: 46px;
border: 1px solid var(--color-border);
border-radius: 50%;
color: var(--color-black);
font-size: 1.25rem;
transition: var(--transition);
}

.footer-social:hover {
background: var(--color-black);
color: var(--color-white);
border-color: var(--color-black);
}

/* ===================================
SUCCESS MESSAGE POPUP
=================================== */

.success-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.75);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.3s ease;
}


.success-popup {
width: 350px;
padding: 30px;
background: #ffffff;
border-radius: 16px;
text-align: center;
box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}


.success-popup i {
font-size: 45px;
color: #198754;
margin-bottom: 15px;
}


.success-popup p {
margin: 0;
color: #111111;
font-size: 1rem;
font-weight: 600;
}

/* ===================================
SUCCESS ICON
=================================== */

.success-icon {
width: 50px;
height: 50px;
margin: 0 auto 15px;
border-radius: 50%;
background: #198754;
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
font-weight: bold;
}

/* Maintenance Page */

.maintenance-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

    .maintenance-container h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .maintenance-container p {
        font-size: 16px;
        margin-bottom: 10px;
    }

/* ===================================
RESPONSIVE
=================================== */

/* ===================================
iPad Pro (992px - 1024px)
=================================== */

@media (min-width: 992px) and (max-width: 1024px) {

/* Global */

section {
padding: 90px 0;
}

.container,
.content-container {
padding: 0 32px;
}

/* Hero */

.hero-section {
min-height: auto;
}


.hero-wrapper {
justify-content: center;
gap: 70px;
align-items: center;
}

.hero-content {
max-width: 560px;
}

.hero-image {
flex: 0 0 340px;
display: flex;
justify-content: center;
align-items: center;
}

.image-placeholder {
width: 320px;
height: 420px;
}

/* Work */

.work-grid {
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}

/* Services */

.services-grid {
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}

/* Process */

.process-grid {
grid-template-columns: repeat(2, 1fr);
gap: 36px;
}

/* Contact */

.contact-content {
grid-template-columns: 340px 1fr;
gap: 48px;
align-items: start;
}
}

/* ===================================
TABLET @media (min-width: 577px) and (max-width: 991px)
=================================== */

@media (min-width: 577px) and (max-width: 991px) {

/* -------------------------------
Global
-------------------------------- */

section {
padding: 80px 0;
}

.container,
.content-container {
padding: 0 32px;
}

/* -------------------------------
Header
-------------------------------- */

.site-navbar {
height: 76px;
}

/* -------------------------------
Hero
-------------------------------- */

.hero-section {
min-height: auto;
padding: 80px 0;
}

.hero-wrapper {
flex-direction: column-reverse;
gap: 60px;
text-align: center;
}

.hero-content {
max-width: 100%;
}

.hero-description {
margin-left: auto;
margin-right: auto;
}

.hero-actions {
justify-content: center;
}

.hero-image {
flex: none;
}

.image-placeholder {
width: 340px;
height: 430px;
}

/* -------------------------------
About
-------------------------------- */

.about-section {
padding: 100px 0 80px;
}

/* -------------------------------
Work
-------------------------------- */

.work-grid {
grid-template-columns: repeat(2, 1fr);
justify-content: unset;
gap: 24px;
}

/* -------------------------------
Services
-------------------------------- */

.services-grid {
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}

.service-card {
padding: 32px 28px;
}

/* -------------------------------
Process
-------------------------------- */

.process-grid {
grid-template-columns: repeat(2, 1fr);
gap: 32px;
}

/* -------------------------------
Contact
-------------------------------- */

.contact-section {
padding: 120px 0 80px;
}
}

/* ===================================
MOBILE (<=576px)
=================================== */

@media (max-width: 576px) {

/* -------------------------------
Global
-------------------------------- */

html {
font-size: 15px;
}

section {
padding: 70px 0;
scroll-margin-top: 70px;
}

.container {
padding: 0 20px;
}

/* -------------------------------
Header
-------------------------------- */

.site-navbar {
height: 70px;
}

.site-logo {
font-size: 1.35rem;
}

.contact-icon {
width: 40px;
height: 40px;
font-size: 1rem;
}

/* -------------------------------
Hero
-------------------------------- */

.hero-section {
min-height: auto;
padding: 60px 0;
}

.hero-wrapper {
flex-direction: column-reverse;
gap: 40px;
text-align: center;
}

.hero-content {
max-width: 100%;
}

.hero-tag {
margin-bottom: 16px;
font-size: .8rem;
}

.hero-title {
margin-bottom: 20px;
font-size: 2.5rem;
line-height: 1.15;
}

.hero-description {
margin: 0 auto 32px;
font-size: 1rem;
line-height: 1.7;
}

.hero-actions {
flex-direction: column;
gap: 14px;
}

.btn-primary,
.btn-secondary {
width: 100%;
min-width: 100%;
}

.hero-image {
flex: none;
}

.image-placeholder {
width: 100%;
max-width: 280px;
height: 340px;
}

/* -------------------------------
About
-------------------------------- */

.about-section {
padding: 90px 0 70px;
}

.section-tag {
margin-bottom: 16px;
font-size: .8rem;
}

.section-title {
margin-bottom: 18px;
font-size: 2rem;
}

.section-description {
font-size: 1rem;
line-height: 1.7;
}

/* -------------------------------
Work
-------------------------------- */

.work-section {
padding: 70px 0;
}

.work-header {
margin-bottom: 40px;
}

.work-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.work-card-link {
min-height: 240px;
padding: 22px;
}

.work-logo {
margin-bottom: 24px;
}

.work-title {
font-size: 1.15rem;
}

.work-footer {
margin-top: 24px;
}

/* -------------------------------
Services
-------------------------------- */

.services-section {
padding: 70px 0;
}

.services-header {
margin-bottom: 40px;
}

.services-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.service-card {
padding: 30px 24px;
}

.service-icon {
width: 64px;
height: 64px;
margin-bottom: 24px;
}

.service-title {
font-size: 1.2rem;
}

/* -------------------------------
Process
-------------------------------- */

.process-section {
padding: 70px 0;
}

.process-header {
margin-bottom: 40px;
}

.process-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.process-item {
text-align: center;
padding-right: 0;
}

.process-number {
margin: 0 auto 18px;
}

.process-title {
font-size: 1.2rem;
}

/* -------------------------------
Contact
-------------------------------- */

.contact-section {
padding: 70px 0;
}

.contact-header {
margin-bottom: 40px;
}

.contact-content {
grid-template-columns: 1fr;
gap: 40px;
}

.contact-info h3 {
margin-bottom: 16px;
font-size: 1.6rem;
}

.contact-info p {
margin-bottom: 30px;
}

.contact-list li {
margin-bottom: 20px;
}

.contact-form {
gap: 18px;
}

.form-group input,
.form-group textarea {
padding: 16px 18px;
font-size: .95rem;
}

.form-group textarea {
min-height: 160px;
}

/* -------------------------------
Footer
-------------------------------- */

.footer {
padding: 40px 0;
}

.footer-social {
width: 42px;
height: 42px;
font-size: 1.15rem;
}
}
