/* ==========================
   Hero Section 
========================== */
.hero-section {
    background: linear-gradient(to right, #ffafcc, #ffc3a0);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    transition: background 0.3s ease;
}

.hero-section:hover {
    background: linear-gradient(to right, #ffc3a0, #ffafcc);
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #555;
}

.hero-section p {
    font-family: "Just Another Hand", cursive;
    font-size: 40px;
    margin-bottom: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.less-hero {
    padding: 50px 0; /* Reduce padding */
    text-align: center;
    background-color: #f4a261;
}

.btn {
    display: inline-block;
    background: #6c5b7b;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

.btn:hover {
    background: #f4a261;
    transform: scale(1.05);
}

/* ==========================
   Navigation Bar 
========================== */
.navbar {
    background: #333;
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
}

.logo {
    font-family: "Just Another Hand";
    font-size: 45px;
    color: #f4a261;
    text-decoration: none;
    line-height: 1;
}

.logo:hover {
    color: #ffafcc;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f4a261;
}

/* Sidebar menu styling */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Initially hidden */
    width: 250px;
    height: 100vh; /* Ensure it takes full height */
    background-color: #333;
    color: white;
    padding-top: 60px;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    
    display: flex;
    flex-direction: column; /* Make it column layout */
}


.sidebar-profile {
    display: flex;
    align-items: center;
    padding: 15px;
    border-top: 1px solid #444;
    margin-top: auto; /* Push it to the bottom */
}


.sidebar a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.sidebar a:hover {
    background-color: #444;
    color: #f4a261;
}

/* Profile Section at Bottom */

.profile-info {
    color: white;
    display: flex;
    flex-direction: column;
}

.sidebar-profile .profile-info p {
    color: white !important;
}


.auth-link,
.logout-btn {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 5px;
}

/* Footer */

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: 20px;
}

footer a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover{
    color: #f4a261;
}

/* Form stuff */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ffafcc;
    outline: none;
    box-shadow: 0px 0px 6px rgba(255, 87, 34, 0.3);
}

.contact-form button {
    margin-top: 20px;
    display: inline-block;
    background: #6c5b7b;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

.contact-form button:hover {
    background: #f4a261;
    transform: scale(1.05);
}

/* Individual checkbox item */
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #6c5b7b;
}
