/*
* Template Name: The Tattooist
* Template Description: Tattoo Studio Template
* Template URI: http://demo.webisir.com/the-tattooist
* Version: 1.2.6
* Author: Webisir
* Author URI: http://themeforest.net/user/webisir
*/

/*--------------------------------------------------------------
    Custom CSS
----------------------------------------------------------------
*/


.coupon {
  border: 5px dashed #bbb;
  width: 80%;
  border-radius: 15px;
  margin: 0 auto;
  max-width: 600px;
}

.coupon-top {
  padding: 2px 20px 2px 0px;
  background-color: #f1f1f1;
  color: #000;
  border-radius: 10px 10px 0 0;
}

.coupon-top h3 {
  color: #000;
  text-align: center;
}

.coupon-container {
  padding: 2px 16px;
  background-color: #f1f1f1;
  color: #000;
}

.coupon-bottom {
  padding: 2px 16px;
  background-color: #f1f1f1;
  color: #000;
  border-radius: 0 0 10px 10px;
}

.coupon-promo {
  background: #ccc;
  padding: 3px;
}

.coupon-expire {
  color: red;
  border-radius: 0 0 10px 10px;
}

.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.side-menu a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover {
    color: #f1f1f1;
}

.side-menu .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#left-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: visible;
    transition: 0.5s;
    padding-top: 60px;
    background-image: url('/img/tribal-border.png');
    background-repeat: repeat-y;
    background-position: right;
}

#left-menu a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

#left-menu a:hover {
    color: #f1f1f1;
}

/* Initial state: hidden content */
#left-menu .menu-content {
    opacity: 0; /* Make content invisible initially */
    transition: opacity 2s ease; /* Smooth fade-in/out transition */
}

/* When the menu is active, show the content */
#left-menu.open .menu-content {
    opacity: 1; /* Fade in content */
}

#left-menu .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Faster fade-out transition */
#left-menu.closing .menu-content {
    transition: opacity 0.3s ease-out; /* Faster fade-out transition */
    opacity: 0; /* Fade out content rapidly */
}

#left-menu form {
    display: flex;
    flex-direction: column;
    padding: 10px;
    color: #fff;
}

#left-menu label {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align checkbox and label to the left */
    margin-bottom: 10px; /* Add some space below the label */
}

#left-menu form label {
    margin-top: 10px;
    font-size: 14px;
}

#left-menu form input[type="text"],
#left-menu form input[type="email"],
#left-menu form input[type="password"] {
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid #ccc;
    color: #000;
    width: 90%;
}

input[type="email"] {
    padding: 10px;
    width: 100%;
    font-family: 'Open Sans', Sans-Serif;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #cccccc;
    outline: none;
    -webkit-transition: border-color 0.2s;
    -moz-transition: border-color 0.2s;
    -ms-transition: border-color 0.2s;
    -o-transition: border-color 0.2s;
    transition: border-color 0.2s;
}

input[type="email"]:focus {
    border-color: #161616;
}

#left-menu form input[type="checkbox"] {
    margin-right: 5px;
}

#left-menu form button {
    background-color: #333;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#left-menu form button:hover {
    background-color: #555;
}

#left-menu #signup-link {
    color: #818181;
    text-decoration: none;
}

#left-menu #signup-link:hover {
    color: #f1f1f1;
}

#signup-link {
    display: block;
    text-align: center;
    width: 90%;
    text-decoration: none; /* Removes underline */
}

/* Additional styling for better appearance */
#left-menu div span {
    display: block;
    margin-top: 20px;
}

#login-form label {
    display: flex;
    align-items: center;
}

#login-form button {
    width: 90%; 
    box-sizing: border-box;
}

#forgot-password {
    text-align: left; /* Align text to the left */
}

#forgot-password a {
    font-size: 0.75em; /* Smaller font size */
    color: #818181; /* Adjust the color as needed */
    text-decoration: none; /* Remove underline */
    padding: 8px 5px; /* Adjust padding for better appearance */
}

#forgot-password a:hover {
    font-size: 0.75em; /* Smaller font size */
    color: #f1f1f1; /* Hover color */
    text-decoration: none; /* Remove underline */
}

/* Style for the sign-in/up button */
.sign-in-button {
    position: absolute;
    top: 20px;
    left: 20px;  /* Position the button on the left */
    background-color: #333;
    color: #fff;
    padding: 5px 10px;  /* Adjust padding to reduce height */
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;  /* Font size for the text */
    transition: background-color 0.3s;
    z-index: 1000;  /* Ensure it stays on top of other elements */
    display: block;
    width: 100px;  /* Set a fixed width */
    height: 80px;  /* Set a fixed height */
    text-align: center;  /* Center the text */
    line-height: 1.2;  /* Adjust line height */
    font-size: 0.8em;  /* Adjust font size */
}

/* Adjust hover color */
.sign-in-button:hover {
    background-color: #555;
}

/* Style for the user image inside the button */
.sign-in-button img {
    width: 50px;  /* Smaller width for the image */
    height: 50px; /* Smaller height for the image */
    display: block;
    margin: 0 auto 5px;  /* Center the image and add margin at the bottom */
    border-radius: 50%;  /* Make the image round */
}

/* Style for the text in the button */
.sign-in-button span {
    display: block;  /* Ensure text is block level for easier styling */
}

.sign-in-button .sign-in {
    font-weight: bold;  /* Bold for "Sign In" */
}

.sign-in-button .sign-up {
    font-weight: normal;  /* Normal weight for " / Up" */
}

/* Sign-Up Overlay Styling */
.overlay {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
}

.overlay p {
    color: #333;
    text-align: left;
}

.overlay-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.overlay-content input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
}

.overlay-content button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
}

.overlay .closebtn {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
}

/* Style for the form fields and the button */
#signup-overlay h2 {
    color: #000;
    padding-bottom: 0;
    margin-bottom: 0;
}

#signup-overlay small {
    color: #000;
}

#signup-overlay p {
    color: #000;
    margin-top: 10px;
    margin-bottom: 0;
}

#signup-overlay form small {
    color: #777; /* Adjust text color */
}

#signup-overlay form input[type="text"],
#signup-overlay form input[type="email"],
#signup-overlay form input[type="password"],
#signup-overlay form input[type="tel"],
#signup-overlay form input[type="date"],
#signup-overlay form textarea,
#signup-overlay form button {
    width: 100%;
    max-width: 500px; /* or any width you prefer */
    box-sizing: border-box;
    margin-top: 5px; /* Adjust as needed */
    margin-bottom: 15px; /* Ensure consistent spacing */
    padding: 10px; /* Adjust as needed for comfort */
    font-size: 16px;
    color: #444; /* Adjust text color */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#signup-overlay form button {
    background-color: #333; /* Adjust as needed */
    color: #fff;
    border: none;
    cursor: pointer;
}

#signup-overlay form button:hover {
    background-color: #444; /* Slightly darker on hover */
}

.close-signup-overlay {
    position: absolute;
    right: 20px; /* Adjust as necessary */
    top: 20px; /* Adjust as necessary */
    font-size: 36px; /* Match the font size from .closebtn */
    cursor: pointer;
    color: #818181; /* Adjust color to match your theme */
    transition: color 0.3s;
}

.close-signup-overlay:hover {
    color: #f1f1f1; /* Change color on hover */
}

/* Forgot Password Overlay */
#forgot-password-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

#forgot-password-overlay p {
    padding-top: 20px;
}

#forgot-password-overlay .overlay-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    text-align: center; /* Center the text content */
}

.close-forgot-password-overlay {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 36px;
    cursor: pointer;
    color: #818181;
    transition: color 0.3s;
}

.close-forgot-password-overlay:hover {
    color: #f1f1f1;
}

/* Add styles for text inside the forgot password overlay */
#forgot-password-overlay h2 {
    color: #000; /* Dark color for visibility */
    margin-bottom: 10px; /* Space below the header */
}

#forgot-password-overlay p {
    color: #333; /* Dark gray color for better contrast */
    margin-bottom: 0px; /* Space below the paragraph */
    padding-top: 20px; /* Padding above the paragraph */
    padding-left: 10px; /* Right padding for better alignment */
}

#forgot-password-overlay form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
    color: #444; /* Darker text color */
}

#forgot-password-overlay form button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background-color: #333; /* Button background color */
    color: #fff; /* Button text color */
    border: none;
    cursor: pointer;
}

#forgot-password-overlay form button:hover {
    background-color: #444; /* Darker button color on hover */
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* black opacity */
    pointer-events: none; /* Ensure the overlay doesn’t interfere with video interactions */
}

#tattoo .artist img {
    max-width: 400px;      /* Prevent oversizing (was reaching 710px) */
    width: 100%;           /* Keep responsiveness inside smaller columns */
    height: auto;          /* Maintain aspect ratio */
}
