@font-face {
    font-family: 'Berghan';
    src: url('./fonts/Berghan-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Altone Trial';
    src: url('./fonts/Altone Trial-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Altone Trial', Arial, sans-serif;
    overflow: hidden;
}

.container {
    display: flex;
    width: 100vw;
    height: 100%;
     padding: 0;
    margin: 0;
}

.column {
    width: 50%;
    height: 100%;
    flex: 1; 
}

/* Left Column */
.left video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative; 
    z-index: 2;
}

/* Right Column */
.right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FAF5E4;
    padding: 20px;
}
.arrow{
    height: 15px;
    width: 15px;
    margin-bottom: -4px;
}

.content {
    text-align: center;
    width: 80%;
}


.logo {
    margin-top: 0px;
    width: 100px;
}

.intro {
    margin-top: 30px;
    font-size: 11px;
    color: black;
    
}
 .new {
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
    margin-left: 90px;
    margin-right: 90px;
    font-weight:100;
        opacity: 0.8;
}


.full-experience {
    margin-top: 50px;
    font-size: 11px;
    color: black;
}

.copyright {
   
    font-size: 11px;
    color: black;
}

.coming-soon {
    font-family: 'Berghan', Arial, sans-serif;
    font-weight: 100;
    font-size: 24px;
    color: #d23a27;
    margin-top: -10px;
}

.be-first {
    margin-top: 10px;
    font-size: 11px;
    color: black;
    margin-bottom: 5px;
    margin-top: 30px;
}
a img {
    vertical-align: middle;
}
.newsletter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.newsletter input {
    padding: 8px;
    font-size: 11px;
    background-color: #707070;
    border: none;
    width: 215px; /* Increased width */
    color: white; /* Placeholder text color */
    font-family: 'Altone Trial', Arial, sans-serif;
}

.newsletter input::placeholder {
    color: white; /* Placeholder color update */
    font-family: 'Altone Trial', Arial, sans-serif;
}

.newsletter button {
    padding: 8px 10px;
    font-size: 12px;
    color: white;
    background-color: black;
    border: none;
    cursor: pointer;
    font-family: 'Altone Trial', Arial, sans-serif;
}

.visit {
    font-size: 11px;
    color: black;
    margin-bottom: 5px;
    margin-top:70px;
}

.studio-logo {
    width: 90px;
    margin-top: 10px;
}

hr {
    position: relative; /* Relative positioning */
    width: 100vw; /* Full viewport width */
    border: 0;
    border-top: 1px solid black;
    margin-left: -88px;
    z-index: 1;
    margin-top:-5px;
}


.footer {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    width: 80%;
    margin: 20px auto; 
    gap: 30px;
}

.queries, .social {
    display: flex;
    align-items: center; /* Ensure content is vertically aligned */
    gap: 10px;
    font-size: 13px;
    margin-top:-25px;
    margin-bottom:-25px;
}

.contact p, .icons p {
    margin: 0;
    font-weight: bold;
    color: #000; /* Dark text for headings */
}

.contact, .icons {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

.contact img, .icons img {
    width: 16px;
    height: 16px;
    object-fit: contain; /* Ensure proper scaling of icons */
}

.contact p, .icons p:last-child {
    color: #707070; /* Grey color for additional text */
    font-weight: normal;
    margin: 0;
}

/* Mobile responsive styles */
@media only screen and (max-width: 768px) {
    body {
        background-color: #FAF5E4; /* Overall background color */
        margin: 0;
        padding: 0;
        overflow: hidden; /* No scrolling */
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center align all content */
        position: relative;
    }

    .logo {
        position: absolute; /* Fix logo at the top */
        top: 10px; /* Logo's distance from the top */
        left: 50%; /* Center horizontally */
        transform: translateX(-50%); /* Perfect centering */
        width: 80px; /* Logo size */
        /*z-index: 10; */
    }

    .left {
        width: 100%;
        order: 2;
    }

    .left video {
        width: 100%;
        height: 29vh; /* Fixed height */
        object-fit: cover; /* Maintain proper aspect ratio */
        margin-top: 45px; /* Space below the logo */
        display: block;
        margin-bottom:0px;
    }

    .right {
        width: 100%;
        order: 3;
        text-align: center;
        padding: 20px;
        margin-top: 5px;
    }

    .content {
        width: 90%;
        margin: 0 auto;
    }

    hr {
    position: relative; 
    width: 100vw; 
    border: 0;
    border-top: 1px solid black;
    margin-left: -20px;
            margin-top: 10px;
    }
    
    .contact, .icons{
        gap:5px;
    }

    .footer {
        width: 80%;
        margin: 10px auto;
        display: flex;
        flex-direction: row;
        gap: 60px;
       
    }

    .queries, .social {
        text-align: center;
       font-size: 11px;
       margin-left:-30px;
       gap:5px;
    }
    
    .intro{
        margin-top:-15px;
        font-size:11px;
        margin-left:15px;
        margin-right:15px;
    }
    
    .full-experience{
        margin-top:25px;
    }
    .coming-soon{
        font-size:23px;
        margin-bottom:10px;
    }
    .visit{
        font-size:11px;
        margin-top:5px;
    }
    .contact p{
        font-size:11px;
    }
    .contact img{
        width:15px;
        height:14px;
    }
    .icons img{
        width:15px;
        height:14px;
    }
    .newsletter{
        margin-bottom:00px;
    }
    .newsletter input{
        width:165px;
    }
    .newsletter button{
        padding:7px 10px;
    }
    
    .arrow{
    
    margin-bottom: -3px;
}

.new {
        font-size: 10px;
        line-height: 1.4;
        text-align: center;
        margin-top: 15px;
        margin-left: 15px;
        margin-right: 15px;
            opacity: 0.8;
    }

 a img {
    vertical-align: middle; 
}   

.studio-logo {
    width: 90px;
    margin-top: 0px;
}
.be-first {
  
    font-size: 10px;
    color: black;
    margin-bottom: 5px;
    margin-top: 20px;

}

}
