@import "/css/fonts.css";

body {
    margin: 0;


    background-size: 110%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column; /* Changed to column to accommodate the top bar */
    align-items: center;
    height: 100vh;
    color: #000000;
}

.top-bar {
    font-family: "Helvetica Neue", 'Arial Narrow', Arial, sans-serif;
    width: 100%; /* Adjusted width to match the container width */
    max-width: 800px; /* Added max-width to limit the width of the top bar */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px; /* Adjusted padding to match the container */
    border-radius: 12px; /* Added border-radius to match the container */

}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 78px;
}



.top-bar-buttons {
    display: flex;
    gap: 0px;
}

.top-bar-button, .login-button {
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px; /* Added border-radius to match the container */
    transition: background 0.3s ease;
}

.top-bar-button:hover, .login-button:hover {
    background-color: #ffffff;
}

.container {
    width: 100%;
    /* Removed max-width: 800px; */
    height: 100vh; /* Make the container take up the full viewport height */
    text-align: center;
    background-image: url('/IMG_0694.jpeg');
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Optionally center the image */
    background-repeat: no-repeat;
    padding: 40px;
    display: flex; /* Enable Flexbox for vertical centering */
    flex-direction: column; /* Align items vertically */
    justify-content: center; /* Center content vertically */
    /* removed border-radius and box-shadow as they won't be visible on a full-page image */
}




.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px; /* Add 40px vertical space */
}




.contact {
    display: flex;
    justify-content: center;
    margin-top: 40px; /* Add 40px vertical space */
}

.contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px; /* Set the width of the button */
    height: 40px; /* Set the height of the button */
    color: #ffffff;
    border-radius: 20px;
    margin-right: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-button img {
    width: 20px; /* Set the width of the SVG icon */
    height: auto; /* Maintain the aspect ratio */
}

.contact-button:hover {
    background-color: #6c6c6c;
}

.top-bar {
  position: relative; /* Add position relative to position the picture container */
}

.top-bar {
  position: relative; /* Add position relative to position the picture container */
}

.login-button {
  margin-right: 40px; /* Add margin to the right of the login button */
}

.profile-picture-container {
  position: absolute; /* Position the picture container */
  top: 50%; /* Move the container vertically to the center */
  right: 40px; /* Adjust the right spacing for the profile picture */
  transform: translateY(-50%); /* Adjust to center the container */
  width: 30px; /* Set a fixed width for the profile picture */
  height: 30px; /* Set a fixed height for the profile picture */
  overflow: hidden; /* Hide overflow to prevent distortion */
  border-radius: 50%; /* Make the container circular */
}

.profile-picture-container img {
  width: 100%; /* Set the image width to 100% */
  height: auto; /* Automatically adjust height to maintain aspect ratio */
}


/* General Styles for Both Names */
.name {
    /* Apply styles common to both names here */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 48px; /* Or your preferred size */
    line-height: 0.78;
}

/* Specific Styles for Steven */
.name:first-child {
    font-family: "Helvetica", 'Arial Narrow', Arial, sans-serif;
    font-size: 56px;
    color: #ffffff; /* Example: Make Steven red */
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 1); /* Example: Add a subtle shadow */
}


/* Specific Styles for Dorry */
.name:last-child {
    font-family: "Helvetica", 'Arial Narrow', Arial, sans-serif;
    font-size: 61px;
    color: #ffffff; /* Example: Make Dorry blue */
    text-shadow: 0px 0px 0px rgb(0, 0, 0, 1); /* Example: Add a different shadow */
}

.shop{
    font-family: "Helvetica Neue", 'Arial Narrow', Arial, sans-serif;

    color: #ffffff;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: -20px;

}

.top-text span{
    display: block;
    color: #ffffff;
    font-family: 'Helvetica Neue';

}
