/* General styles */
html, body {
    margin: 3vh 0 5vh 0; /* Remove default margin */
    padding: 3vh 0 5vh 0; /* Remove default padding */
    width: 100vw; /* Full width */
    min-height: 100%; /* Full height */
}

body {
    font-family: Arial, sans-serif;
    background-color: #141414;
    color: #f0f0f0;
    padding: 0;
    /*height: 100vh;*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    color: white;
    position: relative; /* Added to make the pseudo-element relative to body */
    z-index: 1; /* Ensures content appears above the pseudo-element */
}

body::before {
    content: "";
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-image: url('images/bg-noise.gif'); /* Replace with the actual path to your GIF */
    background-size: initial;
    background-position: initial;
    background-repeat: initial;
    background-attachment: initial;
    opacity: 0.05; /* Set the opacity to 5% */
    z-index: -2; /* Places the pseudo-element behind the content */
}

.container {
    width: 100%;
    max-width: 1200px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Start below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at original position */
    }
}

h1 {
    font-family: "Anton", sans-serif;
    text-transform: uppercase;
    line-height: 120%;
    font-size: 4rem;
    margin-bottom: 40px;
    color: white; /* Set text color to white */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1), /* Softer white glow with larger spread */
    0 0 10px rgba(255, 255, 255, 0.1); /* Softer glow with lower opacity */
    opacity: 0; /* Start with invisible */
    animation: fadeInUp 0.75s ease-out forwards; /* Animation duration and easing */
}

.logo-container {
    text-align: center; /* Center the logo */
    margin: 40px 0 20px 0;
}

.logo {
    width: 150px; /* Set the logo width */
    height: auto; /* Maintain aspect ratio */
}

/* Social links */
.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.social-btn {
    margin: 5px 15px;
    padding: 8px 15px;
    background-color: #383838; /* Slightly lighter background for buttons */
    color: #f0f0f0; /* Light text for buttons */
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.social-btn .icon {
    margin-right: 8px;
    font-size: 1.3rem;
    color: #FFC600; /* Accent color for icons */
}

.social-icon {
    margin-right: 8px;
    width: auto;  /* Adjust the size of the icon */
    height: 20px; /* Adjust the size of the icon */
}

.social-btn:hover {
    background-color: #FFC600; /* Hover state with accent color */
    color: #272727; /* Invert text color on hover */
}

/* Wrapper for the menu */
.menu-wrapper {
    width: 50%; /* Default width for larger screens */
    margin: 0 auto;
}

/* Menu section */
.menu {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between menu items */
}

.menu-item {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    background-color: #1f1f1f; /* Closer color to background for menu items */
    padding: 20px; /* Increased padding for better spacing */
    border-radius: 30px;
    position: relative; /* Needed for absolute positioning of the button */
    overflow: hidden; /* Prevent overflow */
}

.menu-icon {
    width: 60px; /* Set width for the icon */
    height: 60px; /* Set height for the icon */
    margin-right: 20px; /* Space between the icon and text */
    border-radius: 10px; /* Add border radius to the image */
    object-fit: cover; /* Ensures the image fits within the container and keeps aspect ratio */
}

.menu-info {
    text-align: left; /* Left align text */
}

/* Menu title styles */
.menu-info h2 {
    margin: 0; /* Remove default margin */
    font-size: 1.5rem; /* Adjust font size as needed */
    color: #ffffff; /* White title for menu items */
}

.menu-info p {
    font-size: 0.85rem;
    /*margin: 5px 0 0 0; !* Adjust margin to reduce space: top, right, bottom, left *!*/
    color: #b0b0b0; /* Darker grey for descriptions */
}

/* Button styles */
.menu-btn {
    padding: 8px 15px;
    border-radius: 50px; /* Round button edges */
    background-color: #FFC600; /* Yellow background for button */
    color: #272727; /* Button text color */
    text-decoration: none;
    font-size: 0.85rem; /* Button font size */
    transition: background-color 0.3s; /* Smooth transition */
    margin-top: 10px; /* Space above button */
    align-self: flex-start; /* Align button to the start of the item */
    border: 2px solid #FFC600; /* Optional: Add border to match the background */
}

.menu-btn:hover {
    background-color: #272727; /* Dark background on hover */
    color: #FFC600; /* Change text color on hover */
}

/* Copyright styles */
.copyright {
    font-size: 0.85rem;
    margin: 40px 0 50px 0; /* Adjust margin to reduce space: top, right, bottom, left */
    color: #b0b0b0; /* Darker grey for descriptions */
}

/* Media Queries */
@media (max-width: 768px) { /* Adjusted to target mobile screens */
    .h1 {
        font-size: 3rem;
    }

    .menu-wrapper {
        width: 75%; /* Set width to 75% for mobile screens */
    }

    .menu-info{
        margin-top: 10px;
    }
}

@media (min-width: 769px) {
    .menu-wrapper {
        width: 50%; /* Keep width at 50% for larger screens */
    }

    .menu-item {
        flex-direction: row; /* Row layout for larger screens */
        align-items: center; /* Center items vertically */
    }

    .menu-info {
        flex-grow: 1; /* Take available space */

    }

    .menu-btn {
        margin-left: auto; /* Push to the right on larger screens */
        margin-top: 5%; /* Remove top margin on larger screens */
    }
}
