diff --git a/Website/templates/base.html b/Website/templates/base.html index ac7c728..48b7b13 100644 --- a/Website/templates/base.html +++ b/Website/templates/base.html @@ -115,25 +115,33 @@ gap: 1rem; } + .brand { - display: inline-flex; + display: flex; align-items: center; - gap: 0.62rem; + gap: 1.2rem; font-family: "Merriweather", Georgia, serif; - font-size: 1.15rem; + font-size: 1.35rem; font-weight: 700; letter-spacing: 0.03em; color: var(--brand-strong); + background: linear-gradient(90deg, #f3f1ea 60%, #e0eadf 100%); + padding: 0.3rem 1.2rem 0.3rem 0.3rem; + border-radius: 18px; } .brand img { - width: 38px; - height: 38px; - border-radius: 10px; - object-fit: cover; - border: 1px solid #bccdc4; - box-shadow: 0 8px 16px rgba(19, 49, 54, 0.14); - background: #ffffff; + width: 72px; + height: 72px; + border-radius: 18px; + object-fit: contain; + border: 2px solid #e0eadf; + box-shadow: 0 8px 24px rgba(19, 49, 54, 0.10); + background: linear-gradient(135deg, #f8f5ee 0%, #e0eadf 100%); + transition: transform 0.2s; + } + .brand img:hover { + transform: scale(1.04) rotate(-2deg); } .nav-links { @@ -365,9 +373,9 @@