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

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    overflow-y: auto;
    background: black;
    color: #f8f5f2;
}

/* main div */
.main-div {
    display: flex;
    min-height: 100vh;
    align-items: stretch; /* ← this makes both children equal height */
}

/* left div*/
.left-div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 30px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    height: auto;
}
.vertical-logo {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 30px;
}

.logo {
    width: 180px;     /* adjust size as needed */
    height: auto;    /* keep aspect ratio */
    object-fit: contain;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* optional, can remove */
    background: none; /* no white background */
    border-radius: 0; /* no oval shape */
}

.logo-text {
    color: #f8f5f2;
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase; /* so it shows Y U L A N */
    /* font-style: italic; */
    text-align: center;
    line-height: 1.2;
    writing-mode: horizontal-tb; /* reset */
}

/* left div*/

/* right div*/
.right-div {
    flex: 5;
    display: flex;
    flex-direction: column;
    padding: 30px;
    position: relative;
}

.video-div {
    height: 300px; /* or whatever fixed height you want */
    flex-shrink: 0; /* prevent shrinking */
    margin-bottom: 30px;
}

.video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    opacity: 0.9;
}

/* nav div section */
.nav-div {
    flex: 1;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.nav-div-unordered-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
}

.nav-link {
    color: #f8f5f2;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.dropdownAnimation{ /* DROPDOWN WHEN CLOSED */
    margin-left: 25px;
    max-height: 0;                                          /* styling original */
    overflow: hidden;                                       /* styling original */
    opacity: 0;                                             /* styling original */
    padding-top: 0;
    padding-bottom: 0;
    transition:                                             /* animation */
        max-height 0.75s ease, 
        opacity 0.75s ease,
        padding-top 0.75s ease,
        padding-bottom 0.75s ease   
}

.dropdownAnimation.open{ /* DROPDOWN WHEN OPEN */
    max-height: 500px;                                      /* styling post */ /* make this dynamically adjusted to value of the div */
    opacity: 1;                                             /* styling post */
    padding-top: 35px;                                      /* styling post */
    padding-bottom: 10px;                                   /* styling post */
    transition:                                             /* animation */
        max-height 2s ease, 
        opacity 1s ease,
        padding-top 1.30s ease,
        padding-bottom 1.30s ease         
}

#menuDropdown{
    margin-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#menuPDF{
    /*
    color: white;
    text-decoration: none;
    border: 1.25px solid white;
    padding: 6px 12px;
    border-radius: 5px;
    */
    padding: 6px 12px;
    background: rgba(248, 245, 242, 0.6);
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    width: 260px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#reservationsDropdown{
    margin-left: 25px;
    display: flex;
    gap: 10px;
}

#tock{
    /*
    color: white;
    text-decoration: none;
    border: 1.25px solid white;
    padding: 6px 12px;
    border-radius: 5px;
    */
    text-decoration: none;
    padding: 6px 12px;
    background: rgba(248, 245, 242, 0.6);
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

#ourStoriesDropdown{
    margin-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

#findUsDropdown{
    margin-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

#vipDropdown{
    margin-left: 25px
}

#weLoveOurCustomers{
    /*
    color: white;
    text-decoration: none;
    border: 1.25px solid white;
    padding: 6px 12px;
    border-radius: 5px;
    */
    text-decoration: none;
    padding: 6px 12px;
    background: rgba(248, 245, 242, 0.6);
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

#newslettersDropdown{
    margin-left: 25px
}

.social-links {
    display: flex;
    justify-content: flex-start; /* evenly spaced */
    align-items: center;            /* vertical centering */
    gap: 15px;
    margin-top: 20px;
    width: 100%;                    /* ensures full container width */
    }

.social-links a {
    width: 25px;
    height: 25px;
    background: rgba(248, 245, 242, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-decoration: none;
    transition: transform 0.3s ease;
    }
/* nav div section */
/* footer-div section*/
.footer-div {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-content-div {
    padding-top: 20px;
    border-top: 1px solid rgba(248, 245, 242, 0.3);
    display: flex;
    align-items: center; 
    justify-content: space-between;
    width: 100%;
}

.footer-content-p {
    font-size: 12px;
    color: rgba(248, 245, 242, 0.6);
    letter-spacing: 2px;
    font-weight: 300;
}

#administrationLogin{
    padding: 6px 12px;
    background: rgba(248, 245, 242, 0.6);
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

/* footer-div section*/
/* right div*/
/* main div */

/* media queries */
