/* === Base Styles === */
body {
	margin: 0;/* Removes default spacing */
	font-family: 'Poppins', sans-serif; /* Sets modern font */
	background-color: #f5f5f5;/* Light gray background */
	color: #333;/* Dark gray text */
		}

p {
	line-height: 1.6;/* Improves readability */
	font-size: 17px;/* Comfortable text size */
		}

/* === Navigation Bar === */
nav {
	background: #000;/* Black navbar */
	color: white;/* White text */
	display: flex;/* Flex layout for horizontal alignment */
	justify-content: space-between;/* Space between logo and links */
	align-items: center;/* Vertically center items */
	padding: 12px 25px;/* Inner spacing */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);/* Subtle shadow */
	position: sticky;/* Sticks to top on scroll */
	top: 0;
	z-index: 1000;/* Keeps nav above other elements */
		}

nav img.logo {
	width: 300px;
	height: 45px;
	object-fit: cover; /* Keeps logo proportionate */
		}
	
nav img.logo2 {
	width: 48px;
	height: 30px;
	object-fit: cover; /* Keeps logo proportionate */
		}

.nav-links {
	display: flex; /* Horizontal nav links */
	gap: 20px; /* Space between links */
	transition: all 0.3s ease; /* Smooth animation */
		}

.nav-item {
	text-align: center;
	position: relative;/* For animated underline */
		}

.nav-links a {
	color: white;
	text-decoration: none;
	font-size: 17px;
	font-weight: 600;
	padding: 10px 16px;
	border-radius: 10px;
	transition: all 0.3s ease;
	display:inline-block; /* full width */
	width: 90%;    /* stretch across container */
	background: rgba(255, 255, 255, 0.05);/* Transparent background */
	box-sizing: border-box;
		}

  .nav-links a:hover {
  color: #00bfff;
  background: rgba(255, 255, 255, 0.15);
  }
.nav-item hr {
  border: none;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #00bfff, #ff0080);
  border-radius: 2px;
  margin: 4px auto 0;
  transition: width 0.4s ease;
}

.nav-item:hover hr {
  width: 100%;
}

/* Menu Icon for Mobile */
.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 10px;
  transition: background 0.3s;
}

.menu-icon:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 15px;
    background: #111;
    width: 90%;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-item hr {
    margin: 2px auto;
    color:white;
  }

  .menu-icon {
    display: block;
  }
}

/* Sections */
section {
  padding: 25px;
  max-width: 800px;
  margin: 25px auto;
  background: linear-gradient(135deg, #ffffff, #f0faff);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
	
	section:hover {
	transform: scale(1.02);
	box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
	transition: all 0.3s ease;
	}
	
	


footer {
background: linear-gradient(90deg, #000, #111);
color: white;
text-align: center;
padding: 4px 1px; /* Increased padding to make footer taller */
}



.tagline {
font-size: 20px;
font-weight: 700;
color: #FF6F3C; /* Vibrant orange */
text-align: center;
margin-top: 10px;
}


 #welcome-container {
 max-width: 800px;
 margin: 40px auto 20px;
 text-align: center;
 opacity: 0;
 animation: fadeIn 1.2s ease forwards;
 animation-delay: 0.5s;
 }
 
 #welcome-text {
 font-size: 22px;
 font-weight: 500;
 color: #333;
 font-family: 'Poppins', sans-serif;
 white-space: pre-wrap;
 }
 
 .name {
 font-weight: 700;
 color: #00bfff;
 }
 
 .emoji {
 font-size: 24px;
 }
 
 /* Fade-in animation */
 @keyframes fadeIn {
 to {
 opacity: 1;
 }
 }
 
#connect {
  padding: 15px;
  max-width: 800px;
  margin: 25px auto;
  background: linear-gradient(135deg, #ffffff, #e6f7ff);
  border-radius: 15px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.connect-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(90deg, #ff0080, #00bfff);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connect-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 191, 255, 0.3);
}
 
 #connect h2 {
 position: relative;
 display: inline-block;
 padding-bottom: 8px;
 }
 
 #connect h2::after {
 content: "";
 position: absolute;
 left: 0;
 bottom: 0;
 width: 100%;
 height: 3px;
 background-color: #ff6600; /* Orange underline */
 border-radius: 2px;
 }
 
 #connect:hover {
 transform: scale(1.02);
 box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
 transition: all 0.3s ease;
 }
 
 
 #journal, #values, #audience {
 padding: 25px;
 max-width: 800px;
 margin: 25px auto;
 background: linear-gradient(135deg, #ffffff, #f0faff);
 border-radius: 15px;
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 transition: all 0.3s ease;
 }
 
 #journal:hover, #values:hover, #audience:hover {
 transform: scale(1.02);
 box-shadow: 0 6px 20px rgba(0, 191, 255, 0.3);
 }
 
 #values ul {
 list-style: none;
 padding-left: 0;
 }
 
 #values li {
 margin-bottom: 10px;
 font-size: 17px;
 }
 
 
 #brand-info {
 padding: 25px;
 max-width: 800px;
 margin: 25px auto;
 background: linear-gradient(135deg, #ffffff, #f0faff);
 border-radius: 15px;
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 transition: all 0.3s ease;
 text-align: center;
 }
 
 #brand-info:hover {
 transform: scale(1.02);
 box-shadow: 0 6px 20px rgba(0, 191, 255, 0.3);
 }
 
 #home {
 padding: 25px;
 max-width: 800px;
 margin: 25px auto;
 background: linear-gradient(135deg, #ffffff, #f0faff);
 border-radius: 15px;
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 text-align: center;
 transition: all 0.3s ease;
 }
 
 #home:hover {
 transform: scale(1.02);
 box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
 }
 
 
 #journal::before {
 position: absolute;
 top: 15px;
 right: 20px;
 font-size: 40px;
 }
 
 
 #books::before {
 position: absolute;
 top: 15px;
 right: 20px;
 font-size: 36px;
 }
 
 #books {
 text-align: center;
 }
 
 #mobile {
 text-align: center;
 }
 
#journal {
  position: relative;
  text-align: center;
  padding: 25px;
  max-width: 800px;
  margin: 25px auto;
  background: linear-gradient(135deg, #ffffff, #f0faff);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

h2 {
  font-size: 24px;
  color: #222;
  margin-bottom: 10px;
  text-align: center;
}