/*
Theme Name: Minimal Design M3
Author: Aumar
Description: A minimalist material design theme
Version: 1.0
*/

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f5f5f5;
}

/* Top App Bar with Elevation */
.app-bar {
  background-color: #1a73e8;
  color: white;
  padding: 16px;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.hamburger {
  cursor: pointer;
  font-size: 28px;
  margin-right: 20px;
}

.brand {
  font-size: 24px;
  font-weight: 500;
  flex-grow: 1;
}

/* Tabbed Links with Elevation */
.tabs {
  display: flex;
  gap: 12px;
}

.tabs a {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.2s;
}

.tabs a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* Main Content */
.main-content {
  max-width: 900px;
  margin: 80px auto 0;
  padding: 20px;
  text-align: center;
}

/* Search Box */
.search-box {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.search-box input {
  width: 60%;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

.search-box button {
  margin-left: 10px;
  padding: 10px 20px;
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, box-shadow 0.3s;
}

.search-box button:hover {
  background-color: #1669c1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Floating Action Menu with Elevation */
.fab {
  position: fixed;
  top: 80px;
  left: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 100;
  animation: fadeIn 0.3s ease;
}

.fab a {
  text-decoration: none;
  color: #1a73e8;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.fab a:hover {
  background-color: #e3f2fd;
  transform: translateX(4px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.logo {
  height: 32px;
  margin-right: 12px;
  vertical-align: middle;
}
