/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    background-color: #f8f8f8;
    color: #333;
}

nav {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li:first-child {
    margin-left: 40px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1.2em;
    transition: color 0.3s ease;
    border-radius: 5px;
}

nav ul li a:hover {
    color: red;
    text-decoration: none;
    background: linear-gradient(to right, red, red) bottom / 100% 3px no-repeat;
}

/* Header Styles */
.landing-page {
    background: url('/images/guitar.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin-left: 20px; /* Adjust the left margin for alignment */
}

.hero-content .hero-text {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero-content button {
    padding: 12px 24px;
    font-size: 1.2em;
    background-color: #e57373;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-content button:hover {
    background-color: #d32f2f;
}

/* Sections Styles */
.for-artist {
    background-color: #a99090;
    padding: 80px 0;
    text-align: center;
}

.for-artist h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.for-artist p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.for-artist button {
    padding: 15px 30px;
    font-size: 1.2em;
    background-color: #e57373;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.for-artist button:hover {
    background-color: #d32f2f;
}

.pricing-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 80px;
    padding: 20px;
}

.pricing-box {
    width: 30%;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pricing-box h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.rating {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.box-button {
    background-color: #f44336;
    color: white;
    padding: 12px 24px;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.box-button:hover {
    background-color: #d32f2f;
}

.features-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin-top: 30px;
}

.features-list li {
    font-size: 1.2em;
    margin-bottom: 10px;
    position: relative;
}

.checkmark {
    width: 16px;
    height: 16px;
    display: inline-block;
    background-image: url('checkmark.png'); /* Replace with your checkmark image */
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 10px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-box {
        width: 45%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .pricing-box {
        width: 100%;
        margin-bottom: 30px;
    }

    .hero-content {
        margin-left: 10px;
        margin-right: 10px;
    }
}
.register-section {
    background-color: brown;
    padding: 50px 0;
    text-align: center;
    color: white;
}

#register-section h1 {
    margin-bottom: 40px;
    font-size: 2.5em;
}

#register-section h1 span{
    color: #060100;
}
.box-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.box {
    background-color: black;
    color: white;
    padding: 20px;
    width: 400px;
    height: 400px;
    border-radius: 10px;
    transition: transform 0.3s;
    text-align: center;
    position: relative;
}

.box:hover {
    transform: scale(1.05);
}

.box h2 {
    font-size: 1.5em;
    margin-top: 20px; /* Increased top margin for image space */
    margin-bottom: 10px;
}

.box p {
    font-size: 1.2em;
}

.box img.icon-top {
    width: 70px;
    height: 70px;
    margin-bottom: 10px; /* Space between image and heading */
    border-radius: 50%;
    /* background-color: white; Optional: to highlight the image */
    padding: 5px; /* Optional: for padding around the image */
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
#search-artist {
    background-color: #fff;
    padding: 20px 20px;
    text-align: center;
}

#search-artist h1 {
    font-size: 3em;
    margin-bottom: 30px;
}

.search-box {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-box select, .search-box input[type="text"] {
    padding: 15px;
    margin-right: 10px;
    font-size: 1.2em;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: calc(50% - 10px);
}

.search-box button.search-button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 50px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
}

.search-box button.search-button:hover {
    background-color: #ff6666;
}

/* Featured Artists Section */
.featured-artists {
    text-align: center;
    padding: 20px 20px;
}

.featured-artists h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.featured-artists h3 {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.featured-artists p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* Discover More Section */
.discover-more {
    text-align: center;
    padding: 10px 10px;
}

.discover-button {
    background-color: red;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
}

.discover-button:hover {
    background-color: #ff6666;
}
/* Login Section Styles */
#login-section {
    background-color: #4c2b2b; /* Dark red background */
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Hide overflow for smoother animations */
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
}

.container {
    z-index: 1;
    max-width: 800px; /* Increased width for a larger box */
    margin: 0 auto;
}

.login-content {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    padding: 60px; /* Increased padding for larger content */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Soft shadow */
    transform: translateY(-50px); /* Initial translate for animation */
    opacity: 0; /* Hide initially for animation */
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.login-content.active {
    transform: translateY(0);
    opacity: 1;
}

.login-form {
    max-width: 500px; /* Increased width for the form */
    margin: 0 auto;
}

.login-form h1 {
    font-size: 3em; /* Larger font size for heading */
    margin-bottom: 40px; /* Increased margin bottom */
    color: #333;
    font-weight: bold;
}

.input-group {
    margin-bottom: 30px; /* Increased margin bottom */
    text-align: left; /* Align labels to the left */
}

.input-group label {
    display: block;
    margin-bottom: 15px; /* Increased margin bottom */
    font-size: 1.4em; /* Larger font size for labels */
    color: #333;
    font-weight: bold;
}

.input-group input {
    width: 100%;
    padding: 20px; /* Increased padding */
    font-size: 1.2em; /* Larger font size for inputs */
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #ff4b2b;
    outline: none;
}

.password-input {
    position: relative;
}

.password-input input {
    width: calc(100% - 40px);
    padding: 20px; /* Increased padding */
    font-size: 1.2em; /* Larger font size for inputs */
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.password-input input:focus {
    border-color: #ff4b2b;
    outline: none;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
}

.remember-me {
    margin-bottom: 30px; /* Increased margin bottom */
    font-size: 1.3em; /* Larger font size for checkbox */
    color: #333;
}

.remember-me input[type="checkbox"] {
    margin-right: 15px; /* Increased margin right */
}

.login-btn {
    background-color: #ff4b2b;
    color: white;
    border: none;
    padding: 20px 50px; /* Increased padding */
    font-size: 1.4em; /* Larger font size for button */
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #ff416c;
}

.links {
    margin-top: 30px; /* Increased margin top */
    font-size: 1.3em; /* Larger font size for links */
    color: #333; /* Dark gray color for links */
}

.links a {
    color: #ff4b2b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #ff416c;
}
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0; /* Light gray background */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Login Section Styles */
.login-section {
    background-color: #4c2b2b; /* Dark red background */
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Hide overflow for smoother animations */
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
}

.container {
    z-index: 1;
    max-width: 800px; /* Increased width for a larger box */
    margin: 0 auto;
}

.login-content {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    padding: 60px; /* Increased padding for larger content */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Soft shadow */
    transform: translateY(-50px); /* Initial translate for animation */
    opacity: 0; /* Hide initially for animation */
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.login-content.active {
    transform: translateY(0);
    opacity: 1;
}

.login-form {
    max-width: 500px; /* Increased width for the form */
    margin: 0 auto;
}

.login-form h1 {
    font-size: 3em; /* Larger font size for heading */
    margin-bottom: 40px; /* Increased margin bottom */
    color: #333;
    font-weight: bold;
}

.input-group {
    margin-bottom: 30px; /* Increased margin bottom */
    text-align: left; /* Align labels to the left */
}

.input-group label {
    display: block;
    margin-bottom: 15px; /* Increased margin bottom */
    font-size: 1.4em; /* Larger font size for labels */
    color: #333;
    font-weight: bold;
}

.input-group input {
    width: 100%;
    padding: 20px; /* Increased padding */
    font-size: 1.2em; /* Larger font size for inputs */
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #ff4b2b;
    outline: none;
}

.password-input {
    position: relative;
}

.password-input input {
    width: calc(100% - 40px);
    padding: 20px; /* Increased padding */
    font-size: 1.2em; /* Larger font size for inputs */
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.password-input input:focus {
    border-color: #ff4b2b;
    outline: none;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
}

.remember-me {
    margin-bottom: 30px; /* Increased margin bottom */
    font-size: 1.3em; /* Larger font size for checkbox */
    color: #333;
}

.remember-me input[type="checkbox"] {
    margin-right: 15px; /* Increased margin right */
}

.login-btn {
    background-color: #ff4b2b;
    color: white;
    border: none;
    padding: 20px 50px; /* Increased padding */
    font-size: 1.4em; /* Larger font size for button */
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #ff416c;
}

.links {
    margin-top: 30px; /* Increased margin top */
    font-size: 1.3em; /* Larger font size for links */
    color: #333; /* Dark gray color for links */
}

.links a {
    color: #ff4b2b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #ff416c;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
   
    .hero-content {
        margin: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .hero-content p {
        font-size: 1.2em;
    }
    
    .hero-content button {
        padding: 10px 20px;
        font-size: 1em;
    }
    
    .for-artist h2 {
        font-size: 2em;
    }
    
    .for-artist p {
        font-size: 1em;
        margin-bottom: 20px;
    }
    
    .for-artist button {
        padding: 12px 24px;
        font-size: 1em;
    }
    
    .pricing-section {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-box {
        width: 90%;
        margin-bottom: 30px;
    }
    
    .pricing-box h2 {
        font-size: 1.8em;
    }
    
    .features-list li {
        font-size: 1em;
    }
    
    .box-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .box {
        width: 90%;
        height: auto;
        padding: 15px;
        text-align: center;
    }
    
    .box h2 {
        font-size: 1.2em;
        margin-top: 10px;
        margin-bottom: 5px;
    }
    
    .box p {
        font-size: 0.9em;
    }
    
    .search-box select, .search-box input[type="text"] {
        padding: 12px;
        font-size: 1em;
        width: calc(100% - 70px);
    }
    
    .search-box button.search-button {
        padding: 10px 30px;
        font-size: 1em;
    }
    
    .featured-artists h1 {
        font-size: 2.5em;
        margin-bottom: 10px;
    }
    
    .featured-artists h3 {
        font-size: 1.3em;
        margin-bottom: 20px;
    }
    
    .featured-artists p {
        font-size: 0.9em;
        margin-bottom: 30px;
    }
    
    .discover-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    
    .login-content {
        padding: 40px;
    }
    
    .login-content h1 {
        font-size: 2.5em;
        margin-bottom: 30px;
    }
    
    .input-group label {
        font-size: 1.2em;
    }
    
    .input-group input {
        padding: 15px;
        font-size: 1em;
    }
    
    .password-input input {
        width: calc(100% - 50px);
        padding: 15px;
        font-size: 1em;
    }
    
    .remember-me {
        font-size: 1.1em;
    }
    
    .login-btn {
        padding: 15px 40px;
        font-size: 1.2em;
    }
    
    .links {
        font-size: 1.1em;
    }
}

/* Modal styles Register Section*/
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.register-form h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.register-form .input-group {
    margin-bottom: 1rem;
    text-align: left;
}

.register-form .input-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.register-form .input-group input {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.register-form .register-btn {
    background-color: #ff6f61;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    width: 100%;
    border-radius: 5px;
}

.register-form .register-btn:hover {
    background-color: #ff5733;
}
