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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    height: 100vh;
    overflow: hidden;
    background: #E8E6E0;
}

@media (max-width: 940px) {
    body {
        overflow: auto;
        height: auto;
    }
}

@media (max-width: 940px) and (orientation: landscape) {
    .container {
        flex-direction: row !important;
        height: 100vh !important;
    }
    
    .content-section {
        padding: 20px 0px !important;
    }
    
    .logo {
        width: 100px !important;
    }

    .logo-section {
        margin-bottom: 0 !important;
    }
    
    .main-content {
        padding-left: 20px !important;
        margin-top: 10px !important;
        margin-bottom: 20px !important;
        padding-right: 60px !important;
    }
    
    .coming-soon {
        font-size: 40px !important;
    }
    
    .new-website {
        font-size: 20px !important;
    }
    
    .cta-button {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
    
    .facebook-link {
        font-size: 10px !important;
        margin-top: 10px !important;
        padding: 4px 8px !important;
        gap: 4px !important;
    }
    
    .facebook-icon {
        width: 12px !important;
        height: 12px !important;
    }
    
    .contact-info .contact-name {
        font-size: 14px !important;
    }
    
    .contact-info .contact-data {
        font-size: 14px !important;
    }
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

.image-section {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

.masked-image {
    width: 100%;
    height: 100%;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 200px) 0, 100% 200px, calc(100% - 200px) 100%, 0 100%);
}


.bull-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
}

.content-section {
    flex: 0.8;
    background-color: #E8E6E1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.logo-section {
    position: absolute;
    top: 40px;
    right: 60px;
}

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

.logo {
    width: 400px;
    height: auto;
}

.brand-text {
    line-height: 1.1;
}

.brand-name {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 20px;
    color: #333;
    margin: 0;
}

.brand-subtitle {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 20px;
    color: #333;
    margin: 0;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-left: 40px;
    margin-top: 100px;
    margin-bottom: 80px;
}

.new-website {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 44px;
    color: #888;
    margin-bottom: 10px;
}

.coming-soon {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 160px;
    line-height: 0.85;
    color: #333;
    margin-bottom: 35px;
    letter-spacing: -1px;
    text-align: right;
}

.cta-button {
    border: 2px solid #333;
    background-color: transparent;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #333;
    color: #E8E6E1;
}

.facebook-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 18px;
    color: #1877f2;
    text-decoration: none;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border: 1px solid #1877f2;
    border-radius: 6px;
    background-color: transparent;
}

.facebook-link:hover {
    background-color: #1877f2;
    color: white;
    transform: translateY(-1px);
}

.facebook-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-info {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
    text-align: right;
}

.contact-info .contact-name {
    font-family: 'Lora', serif;
    font-size: 26px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.4;
}

.contact-info .contact-data {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 26px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.4;
}

.contact-info a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-info a:hover {
    color: #333;
    border-bottom: 1px solid #333;
}

.contact-info p:first-child {
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .image-section {
        flex: 0 0 45%;
    }
    
    .masked-image {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 150px), 150px 100%, 0 100%);
    }
    
    .content-section {
        flex: 0 0 55%;
        padding: 30px;
        justify-content: space-between;
    }
    
    .logo-section {
        position: static;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .logo {
        width: 300px;
        height: auto;
    }
    
    .main-content {
        margin-top: 0;
        margin-bottom: 0;
        text-align: center;
        align-items: center;
        padding-left: 0;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 16px !important;
    }
    
    .facebook-link {
        font-size: 14px !important;
        margin-top: 15px !important;
        padding: 6px 10px !important;
        gap: 6px !important;
    }
    
    .facebook-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    .coming-soon {
        font-size: 100px;
        text-align: center;
        margin-bottom: 24px !important;
    }
    
    .contact-info {
        position: static;
        text-align: center;
        margin-top: 20px;
    }

    .contact-info .contact-name {
        font-size: 16px;
    }

    .contact-info .contact-data {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 25px;
    }
    
    .logo {
        width: 200px;
        height: auto;
    }
    
    .coming-soon {
        font-size: 64px;
    }
    
    .new-website {
        font-size: 32px;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 24px;
    }
    
    .facebook-link {
        font-size: 16px !important;
        margin-top: 15px !important;
        padding: 6px 10px !important;
        gap: 6px !important;
    }
    
    .facebook-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    .contact-info .contact-name {
        font-size: 16px;
    }

    .contact-info .contact-data {
        font-size: 16px;
    }
}