body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    overflow: hidden; /* Prevents scrolling while curtains are present */
    background-color: #f8f9fa;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #d57700;
}

.tracking-widest {
    letter-spacing: 0.5rem;
    color: #a88a64; /* Sophisticated gold/tan tone */
}

/* Curtain Styling */
.curtain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    pointer-events: none; /* Allows clicking through after animation */
}

.curtain-left, .curtain-right {
    width: 50%;
    height: 100%;
    background-color: #9b5529; /* Deep charcoal/navy interior color */
    transition: transform 1.5s cubic-bezier(0.7, 0, 0.3, 1);
}

/* Texture for curtains */
.curtain-left::after, .curtain-right::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url('https://www.transparenttextures.com/patterns/dark-leather.png');
}

/* Class to trigger opening */
.curtain-container.open .curtain-left {
    transform: translateX(-100%);
}

.curtain-container.open .curtain-right {
    transform: translateX(100%);
}

/* Content Layout */
.content-wrapper {
    height: 100vh;
    background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), 
                      url('../img/2.jpg');
    background-size: cover;
    background-position: center;
}

.launch-box {
    border: 1px solid #ddd;
    padding: 30px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
}

.logo_main 
{
    width: 50%;
}

.btn-default
{
    background-color: #d57700;
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    margin-top: 30px;
    font-weight: 600;
}
.btn-default:hover
{
    background-color: #d57700;
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    margin-top: 30px;
    font-weight: 600;
}