@import url('https://fonts.googleapis.com/css2?family=Ballet:opsz@16..72&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ballet:opsz@16..72&family=Pixelify+Sans:wght@400..700&display=swap');
:root {
  --pink-light: #f7c1e1;
  --pink-bold: #fa43c0;
  --text-color: #333;
  --blue-light:#abf2fae9;
  --blue-bold:#428affdd;
  --yellow-light: #fdf4a6;
  --yellow-bold: #ffea29;
  --font-fancy-title: 'Ballet', cursive;
  --font-pixel: "Pixelify Sans", sans-serif;
  --font-main: 'Arial', sans-serif;
  --font-size-base: 16px;
  --font-size-title: 60px;
  --line-height-base: 1.6;
  --spacing-unit: 1rem;
  --max-width: 1200px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

/* Body styles */
body {
  font-family: var(--font-fancy-title);
  line-height: var(--line-height-base);
  font-size: var(--font-size-title);
  color: var(--text-color);
  background-color: var(--pink-bold);
  min-height: 100vh; /* Full viewport height */
  min-width: 100vw;
  background-image: url('/assets/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin:0;
  display: flex;
  justify-content: center;    
  align-items: center;   
 
}

.parent-container{
    min-height:60vh;
    width:60%;
    background-color: var(--pink-light);
    border-radius: 20px 20px 0px 0px;
    
    display:flex;
    flex-direction: column;
     overflow:hidden;
  box-shadow: 8px 8px 0 var(--pink-bold), 
  inset 0 0 0 2px white;
  margin:20px;
}
.browser-bar{
        display: flex;
            align-items: center;
            background: linear-gradient(to right, var(--pink-light),rgb(251, 224, 229));
            padding: 8px 12px;
            border-bottom: 2px solid var(--pink-bold);
            gap: 10px;
            flex-wrap: wrap;
        min-height:15%;}

.browser-btns{
    display: flex;
            gap: 6px;
            flex-shrink: 0;

}
.browser-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 1px solid rgba(0,0,0,0.2);
        }
.btn-close { background: #ff5c5c; }
        .btn-min { background: #ffbe5c; }
        .btn-max { background: #5cff6e; }

.search-bar {
            flex: 1;
            min-width: 150px;
            background: white;
            border: 2px solid var(--pink-bold); /* Medium pink */
            border-radius: 12px;
            padding: 4px 12px;
            display: flex;
            align-items: center;
        }
.search-bar {
            flex: 1;
            min-width: 150px;
            background: white;
            border: 2px solid var(--pink-bold); /* Medium pink */
            border-radius: 12px;
            padding: 4px 12px;
            display: flex;
            align-items: center;
        }

.search-bar input {
            border: none;
            background: transparent;
            width: 100%;
            font-family: var(--font-pixel);
            color: var(--pink-bold); /* Deep pink text */
            outline: none;
            font-size: clamp(12px, 2vw, 16px);
        }

.search-bar::before {
            content: "🔍";
            margin-right: 6px;
            font-size: 12px;
        }
.browser-container {
          background-color: var(--pink-light);
          flex: 1; /* Takes remaining space */
          min-height: 85%; /* Minimum height guarantee */
          margin:1px;
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
        
        }
.nav-bar{
    background-color: var(--blue-light);
    min-width:20%;
    min-height:100%;
    display: flex;
    flex-direction: column;
    padding:10px;
    gap:10px;

}
.nav-btns {
          background-color: var(--blue-bold);
          min-height: 40%;
          display: flex;
          flex-direction: column;
          gap: 8px;
          padding: 10px;
          border-radius: 8px;
          box-shadow: inset 0 0 0 2px white, 
                      3px 3px 0 var(--blue-bold);
        }
.nav-btn {
    background-color: var(--yellow-light);

}
.nav-btn {
          background-color: var(--yellow-light);
          border: none;
          border-radius: 12px;
          padding: 8px;
          font-family: var(--font-pixel);
          font-size: 1rem;
          color: var(--pink-bold);
          cursor: pointer;
          position: relative;
          transition: all 0.2s;
          box-shadow: 0 4px 0 var(--yellow-bold),
                      inset 0 0 0 2px white;
          text-transform: uppercase;
          letter-spacing: 1px;
        }

        .nav-btn:hover {
          background-color: var(--yellow-bold);
          transform: translateY(-2px);
        }

        .nav-btn:active {
          transform: translateY(2px);
          box-shadow: 0 1px 0 var(--yellow-bold),
                      inset 0 0 0 2px white;
        }

.neocities-calendar {
          flex-grow: 1;
          background-color: var(--blue-bold);
          border-radius: 8px;
          padding: 10px;
          display: flex;
          justify-content: center;
          align-items: center;
          color: white;
          font-family: var(--font-pixel);
          box-shadow: inset 0 0 0 2px white, 
                      3px 3px 0 var(--blue-bold);
        }
.browser-content{
    padding:5px;
    flex-grow:1;
    min-height: 100%;
}