/* Reset + Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #777 #0a0a0a;

}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

.menu-bar {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background-color: transparent;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
    text-decoration: none;
  color: #ffffff;

  
  
  /* <- added to shift right */
}

.logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes dark logos white-looking */
}

.logo span {
  font-size: 20px;
  font-weight: 600;
}


/* Menu Actions */
.menu-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.login-btn,
.blaze-btn {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}

.login-btn {
  background: #ffffff;
  color: #222;
}

.login-btn:hover {
  background: #f5f5f5;
  transform: scale(1.05);
}

.blaze-btn {
  background-color: #ffe066;
  color: #222;
  box-shadow: 0 2px 6px rgba(255, 224, 102, 0.4);
}

.blaze-btn:hover {
  background-color: #fff176;
  transform: scale(1.05);
}
.menu-actions {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

/* Content Layout */
.content {
  padding-top: 120px;
  padding-left: 40px;
  padding-right: 60px;
  padding-bottom: 100px;
  width: 100%;
  text-align: left;
}

/* Flex wrapper */
.content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

/* Text section */
.text-section {
  flex: 1;
  max-width: 600px;
}

.text-section h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #ffffff;
}

.text-section p {
  font-size: 18px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 20px;
}

/* Image section */
.image-section {
  flex-shrink: 0;
}

.side-image {
  width: 500px;
  height: auto;
  border-radius: 12px;
  /* Option 1: White overlay filter */
  filter: brightness(0) invert(1);
  
  /* Option 2: Alternative - use this instead of the above if you want a softer white effect */
  /* filter: brightness(2) contrast(1.2) saturate(0); */
  
  /* Option 3: For a white background behind the image */
  /* background-color: #ffffff;
  padding: 20px; */
}

/* Alternative approach - White tinted overlay */
.side-image-overlay {
  position: relative;
  display: inline-block;
}

.side-image-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  mix-blend-mode: overlay;
  border-radius: 12px;
  pointer-events: none;
}

/* If you want white border around image */
.side-image-border {
  border: 4px solid #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Scrollable Text Area */
.scroll-content {
  margin-top: 30px;
}

/* Custom Scrollbar - Webkit */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #555, #777);
  border-radius: 10px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.6);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #777, #999);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .side-image {
    width: 100%;
    max-width: 500px;
    align-self: center;
  }
}

@media (max-width: 768px) {
  .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .text-section h1 {
    font-size: 32px;
  }
  
  .text-section p {
    font-size: 16px;
  }
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Make it white-style if original is dark */
}


p {
  user-select: none;           /* Disable text selection */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  background-color: #121212;
  color: #cccccc;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

p:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.85);
  color: #ffffff;
  z-index: 2;
}
