@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:wght@400;700&display=swap');

/*************************************************************************/
/* ADMIN MENU */
/*************************************************************************/
.link_button {
		width: 100px !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 8px;;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    background: #4479BA;
    color: #FFF;
    padding: 1px 12px;
    text-decoration: none;
    margin: 10px;
}

.link_button:hover{
    background: white;
    color: #000000;
}

.AdminMenu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start; /* left align */
    margin-top: 10px;
    padding: 0px 0px;
    padding-left: 5px;
   /* border: 1px dashed yellow;*/
    width: 800px;
}
.AdminMenu button {
    margin-right: 8px;
}

/* Button container */
.menu-buttons {
  display: flex;
  flex-direction: row;
  gap: 1px;
  align-items: center;        /* Helps with vertical alignment */
  padding-left: 5px;
}

/* Button styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px;          /* Much tighter vertical padding */
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  border: 1px solid black;
  line-height: 1;           /* Very important for reducing height */
  min-height: 15px;           /* Optional: set a fixed comfortable height */
  white-space: nowrap;
}

.btn:hover {
  background-color: #0056b3;
}


p {
	margin: 0;
}
body {
	min-height: 100vh;
	display: flex;
  flex-direction: column;
  margin-top: 10px;
  font-family: 'Roboto', sans-serif;
  background:#3D3DD3; 
  color: #fff;
  text-align: center;
  line-height: 1.6;
}
/***********************************************/'
/* Dropzone Styles */
.dropzone {
    border: 3px dashed #ff0000;
    border-radius: 12px;
    color: #333;
    height: 100px;
    width: 300px;
    background-color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 5px auto;           /* centers it */
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.dropzone:hover {
    background-color: #ffff88 !important;
    border-color: #ff8800;
}

.dropzone.dragover {
    background-color: #88ff88 !important;
    border-color: #00cc00;
    color: #006600;
}
/*************************************************/






.debug * {
  border: 1px dashed yellow;
}
main {
  flex: 1;
}

footer {
	margin-top: auto;
  background: #3D3DD3;
  padding: 10px;
  font-size: 0.9rem;
}

/* Used In Header */  
.container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px; 
    width: 100%
    max-width: none;
    margin-left: 10px;           /* centered with some breathing room */
    padding: 10px;
    /*border: 1px dashed yellow;*/
}

.left {
    flex: 0 0 auto;
    width: 180px;
    text-align: left;
    padding-left: 10px;
}

.right {
    flex: 1;
    text-align: left;
    min-width: 0;                /* prevents text overflow issues */
}

/* Logo styling */
.left img {
    width: 160px;
    border: 4px solid #00ffcc;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(234, 234, 234, 0.6);
    display: block;
}
/* Main Page ITems */

.AboutMeOut{
	display: flex;
  justify-content: center;
  align-items: center;
}
.AboutMe{
	display: fixed;
	width: 50%;
	max-width: fit-content;
	padding: 10px;
	text-align: left;
  align-items: start !important;
  line-height: 2.6;
  font-weight: 600;
  font-size: 1.3em;
  text-wrap: wrap;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;      /* stack vertically on mobile */
        align-items: center;         /* center everything */
        gap: 20px;
        text-align: center;          /* center text on small screens */
    }
    
    .left {
        width: auto;
        text-align: center;
    }
    
    .right {
        text-align: center;
    }
    
    .right h1 {
        font-size: 2.5rem;           /* smaller heading on mobile */
    }
    
    .right p {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .left img {
        width: 140px;                /* slightly smaller logo on very small phones */
    }
    
    .right h1 {
        font-size: 2.2rem;
    }
}

h1 {
  color: #00ffcc;
  text-shadow: 0 0 15px #00ffcc;
  margin: 0;
}
.hero {
  padding: 10px 10px;
  position: relative;
}
.hero::before {
  content: '';
  position: inline;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 46, 0.75);
}
.hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
/****************************************************************
Buttons 
****************************************************************/
.btn {
  display: inline-block;
  margin: 20px 10px;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
}
.btn-primary {
  background: #00ff88;
  color: #000;
}
.btn-primary:hover {
  background: #ff00aa;
  color: white;
  transform: scale(1.1);
}
.btn.inactive {
  background: #888;
  color: #444;
  cursor: not-allowed;
  pointer-events: none; /* prevents clicks */
  opacity: 0.6;
  transform: none;
}
.btn.selected {
  background: white !important;
  color: #000000;
  cursor: not-allowed;
  pointer-events: none; /* prevents clicks */
  transform: none;
}
.btn-primary:hover:not(.inactive) {
  background: #ff00aa;
  color: white;
  transform: scale(1.1);
}
/****************************************************************
Buttons 
****************************************************************/


section {
  padding: 10px 10px;
}
.features {
  background: #1a1a4e;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #00ffcc;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background: #222;
  color: white;
}
.success { color: #00ff88; font-weight: bold; }
.error { color: #ff3366; font-weight: bold; }

/*************************************************************/
.LoginDiv {
    position: fixed;     /* stays in place even when scrolling */
    top: 10px;           /* distance from top */
    right: 10px;         /* distance from right */
    z-index: 9999;       /* sits above almost everything */

    /* optional styling */
    background: #fff;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    color: black;
    text-align: right;
}
.CraftImages {
    width: 220px;                  /* Slightly larger for better look */
    border: 6px solid #f8f8f8;
    border-radius: 8px;
    padding: 6px;
    background: #fff;
    box-shadow: 
        0 0 0 1px #ccc,
        0 4px 10px rgba(0,0,0,0.3);
    flex-shrink: 0;                /* Prevents image from shrinking */
}

.DataDiv {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;       /* Center on page */
    gap: 25px;
    max-width: 520px;              /* ? Key: Make all blocks same width */
    width: 100%;                   /* Makes it consistent */
    margin: 35px auto;             /* Centers + adds vertical spacing */
    padding: 15px 20px;
    box-sizing: border-box;
}

.DataDivData {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;                   /* Takes remaining space */
    max-width: 260px;              /* Prevents text from stretching too far */
}

.DataDivData strong {
    font-size: 1.15em;
    margin-bottom: 6px;
}

/* Optional: Remove the <BR> tags and use margin instead */

/*************************************************************************/

.ContentTitle{
	 font-size: 2.5rem;
	 color: #00FFCC;
	 padding: 10px;
};'

