/* =========================
   GLOBAL
========================= */
:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-bg: #212121;
    --color-heading: #f2eee8;
    --color-subtitle: #b7afa4;
    --color-menu: #c8c0b5;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --container-width: 800px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-menu);
    font-family: "Cormorant Garamond", serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.site-header {
    padding: 50px 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-menu-left{
    text-align:left;
    width: 98%;
}

.site-menu-left p{
    margin: 0;
    font-weight: 700;
}
/* =========================
   LOGO
========================= */

.site-logo {
    margin-bottom: 10px;
}

.site-logo img {
    max-width: 520px;
    width: 100%;
    height: auto;
    display: block;
}

.site-logo a {
    text-decoration: none;
    color: var(--color-heading);
    font-size: clamp(64px, 8vw, 120px);
    font-weight: 300;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1;
}

/* =========================
   DESCRIPTION
========================= */

.site-description {
    max-width: 700px;
    margin: 0 0 30px;
    color: var(--color-text-muted);
    font-size: 20px;
    line-height: 1.5;
}

/* =========================
   MENU
========================= */

.main-navigation ul,
.main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0;
}

.main-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.main-menu a:hover {
    opacity: 0.6;
}

.site-divider {
    width: 80px;
    height: 1px;
    background: var(--color-text-muted);
    margin: 0 auto 40px;
}

main{
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container{
    max-width: var(--container-width);
    margin-bottom: var(--spacing-lg);
    margin:0 auto;
}

.about{
    text-align: center;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-menu);
    font-family: inter, sans-serif;
}

h2{
    color: var(--color-heading);
}

img{
    width: 100%;
}

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: none;
    z-index: 999;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: min(90vw, 1200px);
}

.modal-content video {
    width: 100%;
    display: block;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 32px;
    background: none;
    border: 0;
    color: white;
    cursor: pointer;
}

.video-trigger {
    cursor: pointer;
    position: relative;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 72px;
    height: 72px;

    border: 1px solid rgba(255,255,255,.8);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.15);
    backdrop-filter: blur(4px);

    color: #fff;
    font-size: 20px;

    transition: .3s ease;
}

.video-trigger:hover .play-button {
    background: rgba(255,255,255,.08);
    transform: translate(-50%, -50%) scale(1.05);
}

.play-button img {
    width: 24px;
    height: 24px;
}

.work-card{
    margin-bottom: 30px;
}

.site-footer {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
}

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

.footer-top h2 {
    margin: 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.footer-social a,
.footer-contact a {
    color: inherit;
    text-decoration: none;
    opacity: .7;
    transition: opacity .3s ease;
}

.footer-social a:hover,
.footer-contact a:hover {
    opacity: 1;
}