@font-face {
    font-family: 'DelaGothicOne';
    src: url('path/to/DelaGothicOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --safe-area-inset-top: env(safe-area-inset-top);
    --safe-area-inset-bottom: env(safe-area-inset-bottom);
    --background-color: #000000; /* Change this to match your website's theme color */
}

* {
    margin: 0;
    padding: 0;
    /* Add other reset styles if necessary */
}

body, html {
    font-family: 'DelaGothicOne', sans-serif;
    height: 100%;
    margin: 0;
    overflow: hidden; /* Ensure no scrollbars are present */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000; /* Black background to fill safe areas on iOS */
    padding-top: var(--safe-area-inset-top);
    padding-bottom: var(--safe-area-inset-bottom);

}

#bgVideo {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;    /* Video layer - behind content but visible */
}


/* Mobile optimizations - adjust focus for smaller screens */
@media only screen and (max-width: 768px) {
    #bgVideo {
        object-position: 50% 40%; /* Show lightning/silhouette on mobile */
        min-height: 100vh; /* Ensure full coverage */
    }
}

#blackRectangle {
    display: none; /* Hidden by default */
}



.container {
    position: relative;
    z-index: 10; /* Positioned on top of the video background */
    text-align: center;
    padding: 50px; /* Add space around the edges */
    min-height: 100vh; /* Full height */
    padding-top: calc(20px + var(--safe-area-inset-top)); /* Add 20px padding plus the safe area inset */
    padding-bottom: calc(20px + var(--safe-area-inset-bottom)); /* Same for bottom */
}

/* Add a media query for screens smaller than a certain width */
@media only screen and (max-width: 600px) {
    .container {
        padding: 0; /* Remove padding for mobile devices */
    }
    /* Include other responsive styles here if needed */
}

.circle-img {
    border-radius: 50%; /* Creates the circular image */
    width: 150px; /* Adjust as needed */
    height: 150px; /* Adjust as needed */
}

.intro-text {
    margin: 15px 0; /* Space between image and text */
    color: #FFF;
    font-weight: bold;
    font-size: 24px; /* Specifies a larger font size */
    /* Additional styling as per your preference */
}

a:hover {
    transform: scale(1.1); /* Makes the link grow */
    transition: transform 0.3s ease;
}

/* This targets all anchor tags within the 'action-btn' class */
.action-btn a {
    display: block; /* Changes display to block to ensure they stack */
    margin: 10px 0; /* Adjusts vertical spacing; reduces from 20px to 10px for both top and bottom */
    padding: 10px 20px; /* Padding for button size */
    text-decoration: none;
    color: #FFF; /* Text color */
    background-color: transparent; /* No background color */
    border: 2px solid #FFF; /* White border */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Centers the text within the button */
    transform: scale(1); /* Ensure it stays the same size on hover */
}

.social-links a {
    margin: 0 15px; /* Space between icons */
    color: #FFF; /* Icon color: can be adjusted */
    font-size: 35px; /* Icon size: can be adjusted */
    line-height: 1;
    text-decoration: none;
    left: 3px;
}

.social-links a i {
    transition: transform 0.3s ease; /* Ensures the effect is smooth */
}

.social-links a:hover i {
    transform: scale(1.1); /* Enlarges the icons */
}

.social-links a:hover .social-svg {
    transform: scale(1.1); /* or whatever value you're using for other icons */
    transition: transform 0.3s ease;
}

/* CSS Media Query for Galaxy Fold in Folded State */
@media only screen and (max-width: 336px){
    .social-links a[href*="twitter.com"] {
        display: none; /* Hide the Twitter link */
    }
}

@media only screen and (max-width: 266px){
    .social-links a[href*="instagram.com"] {
        display: none; /* Hide the Twitter link */
    }
}

@media only screen and (max-width: 202px){
    .social-links a[href*="spotify.com"] {
        display: none; /* Hide the Twitter link */
    }
}


.action-btn a:hover {
    background-color: #FFF;       /* White background */
    color: black;           /* Transparent text */
    border: 2px solid #FFF;      /* White border */
    transform: scale(1);          /* Ensure it stays the same size on hover */
}


.spotify-icon {
    vertical-align: middle; 
    display: inline-block;
}

.spotify-icon-link i {
    font-size: 33.5px; /* This sets the icon's height and width */
    
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    position: relative;
    top: -5px;
    left: -2px;
}


.social-svg {
    position: relative;
    top: 3px;
}


.menu-image {
    max-width: 340px;  /* Maximum width */
    max-height: 340px; /* Maximum height */
    margin-bottom: 20px; 
    display: block;     /* To center the image */
    margin-left: auto;
    margin-right: auto;
}

.menu-header {
    color: #FFF; /* Adjust color as needed */
    margin-bottom: 15px; /* Space between the header and the buttons */
    /* Add any other desired styling */
}

.menu-footer {
    color: #FFF; /* Adjust color as needed */
    margin-top: 15px; /* Space between the buttons and the footer */
    /* Add any other desired styling */
}


.content {
    /* Example: Add a background color to your content to enhance readability */
    background-color: transparent; /* Black background with 50% opacity */
    border-radius: 5px; /* Optional */
    padding: 15px;
    color: #fff; /* White text */
}

/* Modal styles */
.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 25px;
    cursor: pointer;
    color: #000000;
    background-color: transparent;
    border: none;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(0, 0, 0);
    color: #fff;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modal h4 {
    margin-top: 0;
}

.modal form label input[type="checkbox"] {
    margin-right: 5px; /* Space between checkbox and its label */
}

.modal form input[type="submit"] {
    display: block;
    max-width: 200px; /* Set a max width for the submit button */
    width: 100%; 
    margin: 20px auto 0; /* Top margin added, auto centers the button */
    margin-top: 10px;
    background-color: #000000;
    border-color: #FFF;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.modal form input[type="submit"]:hover {
    background-color: #ffffff;
    color: black;
}

/* Modal form styles */
.modal form {
    display: flex;
    flex-direction: column;
    align-items: center; /* This will center the elements */
}

.modal form input,
.modal form select,
.modal form p {
    width: 100%; /* Makes sure they take the full width of the form */
    margin-bottom: 10px; /* Adds space between each field */
    box-sizing: border-box; /* Makes sure padding doesn't increase width */
}

.modal form label {
    display: flex; 
    align-items: center; 
}


/* Responsive design elements go here. You can use media queries to adjust the layout for different screen sizes. */
@media only screen and (max-width: 600px) {
    .circle-img {
        width: 100px;
        height: 100px;
    }
    /* Other styling adjustments for smaller screens */
}
