/* Fonts and Reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', sans-serif;
}

body {
	background-color: #f4f4f4;
	color: #333;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 80px; /* You can increase or decrease as needed */
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #000; /* You can change this to match your theme */
}




/* ====================
   Navigation
   ==================== */

.top-bar {
    background-color: #f9f9f9;
    color: #333;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    padding: 5px 30px;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar .contact-info span {
    margin-right: 20px;
}

.top-bar .social-icons a {
    color: #555;
    margin-left: 10px;
    text-decoration: none;
}

.top-bar .social-icons a:hover {
    color: #000;
}



.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	position: relative;
}

.nav .logo {
	font-size: 20px;
	font-weight: bold;
	color: #ff5722;
}

/* Nav links */
.nav nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nav nav a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.2s;
}

.nav nav a:hover {
	color: #ff5722;
}

.nav .btn {
	background-color: #ff5722;
	color: white;
	padding: 8px 16px;
	border-radius: 5px;
}

/* Hamburger icon */
.menu-toggle {
	display: none;
	font-size: 26px;
	cursor: pointer;
	color: #ff5722;
}

/* ====================
   Main Section
   ==================== */
.main-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 60px 40px;
	gap: 20px;
}

.info-section {
	flex: 1 1 50%;
	max-width: 600px;
}

.info-section h1 {
	font-size: 36px;
	margin-bottom: 20px;
}

.info-section p {
	font-size: 16px;
	line-height: 1.6;
}

/* ====================
   Login Form Section
   ==================== */
.login-section {
	flex: 1 1 40%;
	max-width: 400px;
}

.form-box {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-box h2 {
	margin-bottom: 20px;
}

.form-box label {
	display: block;
	margin: 10px 0 5px;
	font-weight: 500;
}

.form-box input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-bottom: 15px;
	font-size: 14px;
}

.login-btn {
	width: 100%;
	background-color: #ff5722;
	color: white;
	border: none;
	padding: 12px;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s;
}

.login-btn:hover {
	background-color: #e04b1f;
}

.signup-btn {
	width: 100%;
	background-color: #eee;
	color: #333;
	border: none;
	padding: 12px;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 10px;
}

/* ====================
   Footer
   ==================== */
footer {
	text-align: center;
	margin: 20px 0;
}

footer a {
	color: #ff5722;
	text-decoration: none;
	font-weight: 500;
}

/* ====================
   Responsive Styles
   ==================== */
@media (max-width: 768px) {
	.main-content {
		flex-direction: column;
		padding: 20px;
	}

	.info-section,
	.login-section {
		max-width: 100%;
	}

	/* Show hamburger */
	.menu-toggle {
		display: block;
	}

	/* Hide nav links initially */
	.nav nav {
		display: none;
		flex-direction: column;
		width: 100%;
		background-color: #fff;
		position: absolute;
		top: 60px;
		left: 0;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		padding: 10px 0;
		z-index: 10;
	}

	/* Show nav links when active */
	.nav nav.active {
		display: flex;
	}

	.nav nav a {
		padding: 10px 20px;
		border-top: 1px solid #eee;
		width: 100%;
	}

	
}


/* ====================
   Exhibitor Portal Layout Enhancements
   ==================== */

/* Sidebar base styling */
.sidebar {
	background-color: #fff;
	min-height: 100vh;
	border-right: 1px solid #ddd;
  }
  
  .sidebar h6 {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 15px;
  }
  
  .sidebar .nav-link {
	color: #333;
	font-size: 14px;
	padding: 8px 12px;
	transition: background-color 0.2s, color 0.2s;
  }
  
  .sidebar .nav-link:hover {
	background-color: #f0f0f0;
	color: #ff5722;
  }
  
  .sidebar .nav-link.active {
	font-weight: bold;
	background-color: #ffe9e0;
	color: #ff5722;
  }
  
  /* Form section spacing */
  .form-section {
	background: #fff;
	padding: 2rem;
  }
  
  /* Alert box for success message */
  .alert-success {
	font-size: 14px;
  }
  
  /* Responsive Sidebar Toggle for Mobile */
  @media (max-width: 768px) {
	.sidebar {
	  position: absolute;
	  z-index: 1000;
	  width: 75%;
	  left: 0;
	  top: 0;
	  height: 100%;
	  background-color: #fff;
	  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
	  display: none;
	}
  
	.sidebar.active {
	  display: block;
	}
  
	.form-section {
	  padding: 1.5rem;
	}
  
	.btn-toggle-sidebar {
	  display: block;
	  margin: 1rem;
	}
  }
  
  @media (min-width: 769px) {
	.btn-toggle-sidebar {
	  display: none;
	}
  }