﻿    
/* General Styles */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    background-color: #F9E5C5; /* Light saffron background */
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
    font-size: 16px; /* Adjust the base font size as necessary */
    color: #333; /* Optional: Default text color */
    line-height: 1.6; /* Optional: Improves readability */
}


/* Hero Section */
.hero {
    position:fixed;
    top:90px;
    background-image: url('images/top.jpg');
    background-size: cover; /* Ensures the image covers the entire div */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat;
    height: 600px; /* Adjust as needed */
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Horizontally centers the content */
    text-align: center;
    color: white; /* Adjust text color for contrast */
}


/* Hero Content Styling */
.hero-content {
    background: rgba(0, 0, 0, 0.5); /* Adds a semi-transparent black background to the content */
    padding: 80px;
    border-radius: 10px;
}
/* Hero Section */


/* Registration Box Styling */
.registration-box {
    background-color: #FFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    margin-top: 30px;
}

    .registration-box h2 {
        color: #D35400;
        font-size: 1.8em;
        margin-bottom: 20px;
    }

.form-input {
    margin-bottom: 15px;
    padding: 8px;
    width: 90%;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
}

    .form-input::placeholder {
        color: #aaa;
    }

.register-btn {
    padding: 12px 30px;
    background-color: #FF6F61;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .register-btn:hover {
        background-color: #FF5733;
    }

/* Featured Profiles */
.featured-profiles {
    text-align: center;
    margin: 10px 0;
}

    .featured-profiles h2 {
        font-size: 2em;
        color: #D35400;
        margin-bottom: 20px;
    }

.profile-card {
    display: inline-block;
    background-color: #FFF;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}

    .profile-card img {
        width: 150px;
        height: 150px;
        border-radius: 5%;
        margin-bottom: 15px;
    }

    .profile-card h3 {
        font-size: 1.5em;
        color: #333;
    }

    .profile-card p {
        color: #777;
        font-size: 1.1em;
        margin: 5px 0;
    }

.profile-view-btn {
    background-color: #D35400;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

    .profile-view-btn:hover {
        background-color: #E67E22;
    }

.success-container {
    text-align: center;
    padding: 50px;
    background-color: #FFF5E1; /* Light saffron background */
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.success-message h2 {
    color: #333;
    font-size: 28px;
    font-family: 'Georgia', serif;
}

.success-message p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.success-actions {
    margin-top: 20px;
}

    .success-actions .btn {
        display: inline-block;
        padding: 10px 20px;
        background-color: #F7941D; /* Saffron color for buttons */
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 16px;
        margin: 0 10px;
    }

        .success-actions .btn:hover {
            background-color: #e67e22; /* Darker saffron on hover */
        }
/* Container */
.tabcontent {
    padding: 20px;
    display: none; /* Initially hidden */
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 600px; /* Width of the form */
    margin: 0 auto; /* Centered horizontally */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tab {
    max-width: 600px; /* Restrict to similar width as the form */
    margin: 0 auto; /* Center the tabs */
    overflow: hidden;
    background-color: #f1f1f1;
    display: flex; /* Use flexbox to arrange buttons side by side */
}

    .tab button {
        background-color: inherit;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
        flex: 1; /* Allow buttons to grow equally */
    }

        /* Tab button hover effect */
        .tab button:hover {
            background-color: #ddd;
        }

.tablinks.active {
    background-color: #ccc; /* Active tab styling */
}

/* Headings */
.tabcontent h3 {
    font-size: 20px;
    color: #007bff;
    margin: 0 0 20px; /* Simplified margin */
    text-align: center;
}

/* Labels */
.tabcontent label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
    font-weight: bold;
}

/* Textboxes and Dropdowns */
.tabcontent input[type="text"],
.tabcontent select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

    .tabcontent input[type="text"]:focus,
    .tabcontent select:focus {
        border-color: #007bff;
        outline: none;
    }

/* Button Styling */
.tabcontent input[type="submit"],
.tabcontent button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .tabcontent input[type="submit"]:hover,
    .tabcontent button:hover {
        background-color: #0056b3; /* Darker shade on hover */
    }

/* Responsive Design */
@media (max-width: 600px) {
    .tabcontent {
        padding: 15px;
    }

        .tabcontent input[type="text"],
        .tabcontent select {
            padding: 8px;
        }

        .tabcontent h3 {
            font-size: 18px; /* Slightly smaller on small screens */
        }
}

/* Error Message Styling */
.error {
    color: red;
    font-size: 12px;
}

.error-message {
    color: red;
    font-size: 12px;
}
p {
    color: #333333; /* Dark gray font color */
    font-size: 10px; /* Adjust font size as needed */
    line-height: 1.6; /* Line spacing for better readability */
   
}
/* Hero Section for Login Page */
.hero-login {
    position: relative;
    background-image: url('images/login-background.jpg'); /* Replace with your login page background image */
    background-size: cover; /* Ensures the image covers the entire div */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat;
    height: 600px; /* Reduced height for the login page */
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Horizontally centers the content */
    text-align: center;
    color: white; /* Adjust text color for contrast */
}

/* Hero Content Styling for Login Page */
.hero-login-content {
    background: rgba(0, 0, 0, 0.5); /* Adds a semi-transparent black background to the content */
    padding: 15px; /* Adjust padding as needed */
    border-radius: 8px; /* Adjust border-radius for rounded corners */
}

h1 {
    font-size: 2.0em; /* Adjust font size as needed */
    font-weight: bold;
    color: #ffffff; /* White color for contrast against the background */
    text-align: center; /* Center the text */
    margin-bottom: 10px; /* Adds some space below the h1 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Adds a subtle text shadow */
    letter-spacing: 0px; /* Adds a bit of spacing between letters */
}

/* Styling for H2 - Login Box Title */
h2 {
    font-size: 1.8em; /* Slightly smaller font for h2 */
    font-weight: normal;
    color: #ffffff; /* White color to match the design */
    text-align: center; /* Center the text inside the login box */
    margin-bottom: 20px; /* Adds space below the h2 title */
    text-transform: uppercase; /* Makes all letters uppercase */
    letter-spacing: 1.5px; /* Adds more spacing between letters for a cleaner look */
}

/* Container with rounded corners */
.rounded-container {
    width: 90%;
    padding: 20px;
    border: 2px solid #0073e6; /* Optional border color */
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow effect */
    background-color: #f9f9f9; /* Light background color */
    margin: 50px auto; /* Center the container */
    font-family: Arial, sans-serif;
    color: #333;
    text-align: center;
}

.heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #0073e6; /* Optional heading color */
    text-align: center; /* Center align the heading */
}

/* Style for the content inside the container */
.content {
    font-size: 14px;
    line-height: 1.6;
}

.error-highlight {
    border: 2px solid red;
/*}
.navbar {
    background-color: #F4C430;*/ /* Saffron color */
    /*overflow: hidden;
}*/

    /* Navbar list styling */
    /*.navbar ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
    }*/

        /* Navbar items styling */
        /*.navbar ul li {
            position: relative;*/ /* For positioning submenu */
        /*}

            .navbar ul li a {
                display: block;
                padding: 0px 15px;
                color: white;
                text-decoration: none;
                font-weight: 500;
            }

                .navbar ul li a:hover {
                    background-color: #e5b926;*/ /* Slightly darker saffron */
                /*}*/

            /* Submenu (hidden by default) */
            /*.navbar ul li ul {
                display: none;*/ /* Hidden initially */
                /*position: absolute;
                top: 100%;*/ /* Position it below the main menu item */
                /*left: 0;
                background-color: #F4C430;*/ /* Saffron color */
                /*list-style-type: none;
                padding: 0;
                margin: 0;
                min-width: 200px;
                z-index: 1000;
                border-radius: 4px;
            }*/

            /* Show submenu on hover */
            /*.navbar ul li:hover > ul {
                display: block;*/ /* Show submenu when hovering over the parent item */
            /*}*/

            /* Submenu items */
            /*.navbar ul li ul li {
                width: 100%;
            }

                .navbar ul li ul li a {
                    padding: 10px 20px;
                    color: white;
                    text-decoration: none;
                    display: block;
                }

                    .navbar ul li ul li a:hover {
                        background-color: #e5b926;*/ /* Slightly darker saffron for submenu items */
                    /*}*/
