@import url(fonts/stylesheet.css);

:root {
    --primary-color: #E67E22;
    --bg-color: #ded5c8;
    --text-color: #333;
    --icon-color: #bb6d28;
    
}

body {
    background-color: var(--bg-color);
    font-family: 'Avenir Next LT Pro';
    color: var(--text-color);
}
.container{ 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}
.header-page{  
    padding-top: 30px; 
    height: 140px;
    display: flex;
    justify-content: flex-start;
}
.header-page .header-page-logo{
    max-width: 300;
} 
.header-page span{
    display: block;
    height: 100%;
    width: 2px;
    background-color:#c3a86b ;
    margin-right: 70px;
    margin-left: 10px;
}


.main{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-top: 20px;
    margin-bottom: 10px;
    align-items: center;
    min-height: 400px;
}
.footer{
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
} 
.footer-left{
    display: flex;
    align-items: flex-end;
}
.footer-left a{
    margin-right: 25px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
}
.footer-left a img{
    margin-right: 10px;
    width: 23px;
}
.social-links {
   /* position: fixed;
    left: 61px;
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    */
    position: absolute;
    left: 0px;
    top: 10%;
}
.social-links ul{
    list-style: none;
    padding: 0px;
}
.social-links ul li{
    position: relative;
}
.social-links ul li label{
    position: absolute;
    transform: rotate(269deg);
    top: 40px;
    left: -166px;
    width: 360px;
    font-size: 15px;
    letter-spacing: 8px;
    font-weight: 500;
    z-index: -1;
}
.social-links a {
    color: var(--icon-color);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}
.coming-soon {

}
.coming-soon h1 {
    font-size: 170px;
    line-height: 1.1; 
    text-align: right; 
    color: #000000;
    font-weight: 300;
}
 
 
.input-newsletter{ 
    border: 1px solid #bb6d28;
    border-radius: 27px;
    padding: 2px;
}

.subscribe-form h2{
    font-size: 15px;
    text-align: right;
    margin-right: 28px;
    margin-bottom: 20px;
}
.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form .form-control {
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}

.subscribe-form .btn {
    background-color: #bb6d28;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 54px;
    padding: 0px;
    display: block; 
}

@media (max-width: 980px) {
    .header-page span{
        margin-right: 20px;
    }
    .coming-soon
    {
        display: flex;
        align-items: center;
    }
    .coming-soon h1 {
        font-size: 71px; 
    }
    
    .footer{
        display: flex;
        justify-content: space-between;
        padding-bottom: 50px;
        flex-direction: column;
    }
    .footer-left {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
    .footer-left a {
        margin-right: 0Px;
        font-size: 15px; 
        margin-bottom: 15px;
    }
    .subscribe-form h2{
        text-align: center;
    }
}
@media (max-width: 575px) {
    .subscribe-form h2{
        text-align: right;
        margin-right: 15px;
    }
}
