/* styles.css */ 
 
body { 
    margin: 0; 
    padding: 0;
    height: 100%;
    font-family: jura; 
    background-image: url('Logo_Filwn.jpg'); /* Path to your background image */

    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;


} 
 
.navbar { 
    background-color: rgba(14, 13, 13, 0.65); /* Black with 50% opacity */
    overflow: hidden; 
    position: fixed; /* Make it sticky */ 
    top: 0; /* Stick to the top */ 
    width: 100%; /* Full width */ 
    /*right: 0;           /* Align the navbar to the right */
    justify-content: center;
    align-items: center;
    padding: 3px 0;          /* Padding makes the navbar height dynamic */

    z-index: 1000; /* Ensure it stays on top of other content */ 
} 
.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;

    
    display: flex;
    align-items: center;        /* Vertically center the list items */
}
.navbar ul li {
    margin: 0 20px;
}
/* Media Query for Small Screens */
@media (max-width: 600px) {
    .navbar ul {
        flex-direction: column;  /* Stack items vertically on small screens */
    }

    .navbar ul li {
        margin: 10px 0;          /* Adjust margin for vertical stack */
    }

    .navbar ul li a {
        font-size: 10px;         /* Smaller font size for small screens */
    }

    .content {
        padding-top: calc(15px + 180px); /* Adjust padding for small screens */
    }
}
.navbar a { 
    float: left; /* Align links to the left */ 
    display: block; /* Make links block elements */ 
    color: white; /* Text color */ 
    text-align: center; /* Center the text */ 
    padding: 10px 10px; /* Padding */ 
    text-decoration: none; /* Remove underline */ 
} 
.navbar a:hover {
    background-color: rgba(255, 255, 255, 0); /* Hover effect with transparency */
    border-radius: 5px;
  }
.flex-container {

    display: flex;
    padding-top: calc(15px + 60px); /* Dynamic padding based on navbar's total height */

    margin: 0 auto;        /* Center the container horizontally */
    width:90%;
    justify-content: center;
    /*height: 100vh; /* Full viewport height */

}
.flex-item{
    font-size: 1.7vw; /* Responsive font size based on viewport width */
    white-space: nowrap; /* Prevents text from wrapping to the next line */
    overflow: hidden; /* Ensures the text doesn’t overflow */
    text-align:center;

}
/* Video container for responsive embedding */
.video-container {
    position: relative;
    margin: 0 auto;
    width: 70%;                 /* Full width of parent container */
    padding-top: 39.35%;          /* 16:9 aspect ratio (9/16 = 0.5625 or 56.25%) */
    height: 0;                    /* Height set to zero, the padding will maintain the aspect ratio */
  
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
}

.flex-contact{
    padding-top: 10%;
    margin: 0 auto;        /* Center the container horizontally */
    width:80%;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
}
embed, iframe, object {
    padding-top: 5px;
    width: 80%;          /* Fit to the container's width */
    height: 80vh;         /* Fit to the container's height */
    border: none;         /* Remove default borders */
    padding-bottom: 5px;
  }


  .flex-container-intro {
    display: flex;
    margin: 0 auto;        /* Center the container horizontally */
width:90%;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    }
    .flex-item-intro{
    font-size: 1.7vw; /* Responsive font size based on viewport width */
    white-space: nowrap; /* Prevents text from wrapping to the next line */
    overflow: hidden; /* Ensures the text doesn’t overflow */

    }
    