@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNovaA-Bold.woff") format("woff"), url("../fonts/ProximaNovaA-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Semibold.woff") format("woff"), url("../fonts/ProximaNova-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNovaT-Thin.woff") format("woff"), url("../fonts/ProximaNovaT-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Regular.woff") format("woff"), url("../fonts/ProximaNova-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Light.woff") format("woff"), url("../fonts/ProximaNova-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNovaA-Black.woff") format("woff"), url("../fonts/ProximaNovaA-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #3DAAD9;
  --secondary: #082d5d;
  --background: #ffffff;
  --text: #707070;
  --primary-font: "Proxima Nova", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  color: var(--text);
  background-color: var(--background);
}

.main {
    min-height: 1080px;
    position: relative;
    overflow: hidden;
}

.main .container {
    max-width: 1410px;
    padding: 0 40px;
}

.left-content {
    padding: 143px 0px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 99;
}

.header-section {
    margin-bottom: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: auto;
    height: auto;
    max-height: 119px;
    object-fit: contain;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.construction-message {
    font-family: var(--primary-font);
    font-size: 18px;
    color: var(--text);
    line-height: 24px;
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 45px;
}

.cta-btn {
    background-color: var(--primary);
    border: none;
    border-radius: 2px;
    padding: 12px 15px;
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: left;
    transition: all 0.3s ease;
    max-width: 260px;
}

.cta-btn:hover {
    background-color: var(--secondary);
}

.profile-photo-container {
    margin-bottom: 0;
    display: flex;
    gap: 52px;
}

.profile-photo {
    width: 260px;
    height: 358px;
    border-radius: 2px;
    object-fit: cover;
}

.contact-info {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-item, .contact-item a {
    font-family: var(--primary-font);
    font-size: 16px;
    color: var(--text);
    margin-bottom: 0px;
    line-height: 21px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.contact-item::after {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--text);
    display: inline-block;
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100px;
}

.contact-item:last-child::after {
    display: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.right-background {
    position: absolute;
    min-height: 100vh;
    overflow: hidden;
    top: 0;
    right: 0;
}

.bg-shapes {
    width: 845px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 9;
}

.main::after {
    content: "";
    background: url(../images/shadow.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    min-height: 100%;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .bg-shapes {
        width: 565px;
    }
    .logo {
        max-height: 90px;
    }
}

@media (max-width: 991px) {
    .left-content {
        padding: 60px 0px;
    }
    .logo {
        max-height: 70px;
    }
    .bg-shapes {
        width: 450px;
    }
    .main {
        min-height: 100vh;
    }
    .construction-message, .cta-btn {
        font-size: 16px;
        line-height: 22px;
    }
    .contact-info {
        gap: 14px;
        column-gap: 24px;
    }
    .main::after {
        background-position: center;
    }
}

@media (max-width: 767px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .logo {
        max-height: 60px;
    }

    .header-section {
        margin-bottom: 40px;
    }
    
    .construction-message {
        text-align: center;
        margin: 0 auto 30px;
    }
    
    .cta-buttons {
        align-items: center;
    }
    
    .profile-photo {
        width: 230px;
        height: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .contact-info {
        justify-content: center;
    }

    .profile-photo-container {
        gap: 30px;
        flex-direction: column;
    }

    .right-background {
        top: 0;
        bottom: 0;
        min-height: 100%;
        height: auto;
        display: flex;
    }
}
