VibeCoderzVibeCoderz
Telegram
All Prompts
Architectural Studio Footer with Animated Glow preview
footerresponsiveanimatedinteractivecss

Architectural Studio Footer with Animated Glow

Адаптивный футер для студии архитектуры с анимацией свечения. Включает навигацию, соцсети, юр. ссылки. Идеален для премиум-сайтов.

Prompt

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Footer - Verd Architecture</title>
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link
    href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap"
    rel="stylesheet">
  <script src="https://code.iconify.design/3/3.1.0/iconify.min.js"></script>
  <style>
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale
    }

    body {
      font-family: var(--font-body);
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center
    }

    a {
      color: inherit;
      text-decoration: none
    }

    img {
      max-width: 100%;
      display: block
    }

    :root {
      --color-bg: #0F0F0E;
      --color-bg-elevated: #1A1917;
      --color-bg-card: #22211E;
      --color-surface: #2C2B27;
      --color-copper: #C17F59;
      --color-copper-light: #D4A07A;
      --color-copper-bright: #E8B894;
      --color-terracotta: #C4704E;
      --color-gold: #C9A96E;
      --color-gold-light: #DFC08A;
      --color-sage: #8A9A7B;
      --color-cream: #F5F0EB;
      --color-cream-muted: #D9D2CA;
      --color-text: #F5F0EB;
      --color-text-muted: #9C9789;
      --color-text-subtle: #6B675E;
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'Inter', system-ui, -apple-system, sans-serif;
      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    }

    .container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 3rem)
    }

    /* Cursor glow — contained inside section */
    .section-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      background: radial-gradient(circle, rgba(193, 127, 89, 0.06) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      transition: opacity 0.3s;
      will-change: left, top;
      opacity: 0;
    }

    .footer:hover .section-glow {
      opacity: 1
    }

    /* Footer */
    .footer {
      padding: clamp(4rem, 8vw, 6rem) 0 2rem;
      background: var(--color-bg-elevated);
      border-top: 1px solid rgba(193, 127, 89, 0.08);
      position: relative;
      overflow: hidden;
    }

    /* Noise texture — scoped to footer */
    .footer::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
      background-repeat: repeat;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: clamp(2rem, 4vw, 4rem);
      margin-bottom: 4rem;
    }

    .footer-brand {
      max-width: 320px;
    }

    .footer-logo {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      background: linear-gradient(135deg, var(--color-cream), var(--color-copper-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1.25rem;
    }

    .footer-brand p {
      font-size: 0.85rem;
      line-height: 1.7;
      color: var(--color-text-muted);
    }

    .footer-social {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      border: 1px solid rgba(193, 127, 89, 0.15);
      color: var(--color-text-muted);
      font-size: 1.1rem;
      transition: all 0.3s;
    }

    .footer-social a:hover {
      border-color: var(--color-copper);
      color: var(--color-copper-light);
      background: rgba(193, 127, 89, 0.08);
    }

    .footer-column h4 {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-copper);
      margin-bottom: 1.5rem;
    }

    .footer-column ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.85rem
    }

    .footer-column a {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      transition: color 0.3s;
    }

    .footer-column a:hover {
      color: var(--color-cream)
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(193, 127, 89, 0.08);
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p {
      font-size: 0.78rem;
      color: var(--color-text-subtle);
    }

    .footer-bottom-links {
      display: flex;
      gap: 2rem
    }

    .footer-bottom-links a {
      font-size: 0.78rem;
      color: var(--color-text-subtle);
      transition: color 0.3s;
    }

    .footer-bottom-links a:hover {
      color: var(--color-cream)
    }

    /* Stagger variant: soft fade (footer) */
    .stagger-soft>* {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .stagger-soft.visible>*:nth-child(1) {
      transition-delay: 0s
    }

    .stagger-soft.visible>*:nth-child(2) {
      transition-delay: 0.1s
    }

    .stagger-soft.visible>*:nth-child(3) {
      transition-delay: 0.2s
    }

    .stagger-soft.visible>*:nth-child(4) {
      transition-delay: 0.3s
    }

    .stagger-soft.visible>* {
      opacity: 1;
      transform: translateY(0)
    }

    @media(max-width:1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:768px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
      }
    }
  </style>
</head>

<body>

  <footer class="footer" id="footerSection">
    <div class="section-glow" id="footerGlow"></div>
    <div class="container">
      <div class="footer-grid stagger-soft">
        <div class="footer-brand reveal-child">
          <div class="footer-logo">VERD STUDIO</div>
          <p>Award-winning sustainable architecture studio creating spaces that harmonize human living with the natural
            world. Based in Portland, designing globally.</p>
          <div class="footer-social">
            <a href="#" aria-label="Instagram"><span class="iconify" data-icon="solar:gallery-bold"></span></a>
            <a href="#" aria-label="LinkedIn"><span class="iconify" data-icon="solar:case-round-bold"></span></a>
            <a href="#" aria-label="Pinterest"><span class="iconify" data-icon="solar:pin-bold"></span></a>
            <a href="#" aria-label="Twitter"><span class="iconify" data-icon="solar:chat-round-bold"></span></a>
          </div>
        </div>
        <div class="footer-column reveal-child">
          <h4>Studio</h4>
          <ul>
            <li><a href="#">About Us</a></li>
            <li><a href="#">Our Team</a></li>
            <li><a href="#">Careers</a></li>
            <li><a href="#">Press</a></li>
          </ul>
        </div>
        <div class="footer-column reveal-child">
          <h4>Services</h4>
          <ul>
            <li><a href="#">Architecture</a></li>
            <li><a href="#">Interior Design</a></li>
            <li><a href="#">Landscape</a></li>
            <li><a href="#">Consulting</a></li>
          </ul>
        </div>
        <div class="footer-column reveal-child">
          <h4>Connect</h4>
          <ul>
            <li><a href="#">hello@verdstudio.com</a></li>
            <li><a href="#">+1 (503) 555-0142</a></li>
            <li><a href="#">Portland, Oregon</a></li>
            <li><a href="#">Schedule a Visit</a></li>
          </ul>
        </div>
      </div>
      <div class="footer-bottom">
        <p>
          <script>
            document.write(new Date().getFullYear())
          </script> VERD Studio. All rights reserved.
        </p>
        <div class="footer-bottom-links">
          <a href="#">Privacy Policy</a>
          <a href="#">Terms of Service</a>
          <a href="#">Accessibility</a>
        </div>
      </div>
    </div>
  </footer>

  <script>
    (function(){
'use strict';
const obs = new IntersectionObserver(entries => {
entries.forEach(e => { if (e.isIntersecting) { e.target.classList.add('visible'); obs.unobserve(e.target); } });
}, { threshold: 0.08, rootMargin: '0px 0px -40px 0px' });
document.querySelectorAll('.stagger-soft').forEach(el => obs.observe(el));

/* Cursor Glow */
const section=document.getElementById('footerSection');
const glow=document.getElementById('footerGlow');
if(window.matchMedia('(pointer:fine)').matches){
let mouseX=0,mouseY=0,glowX=0,glowY=0;
section.addEventListener('mousemove',e=>{
  const rect=section.getBoundingClientRect();
  mouseX=e.clientX-rect.left;
  mouseY=e.clientY-rect.top;
});
function animateGlow(){
  glowX+=(mouseX-glowX)*0.08;
  glowY+=(mouseY-glowY)*0.08;
  glow.style.left=glowX+'px';
  glow.style.top=glowY+'px';
  requestAnimationFrame(animateGlow);
}
animateGlow();
}
})();
  </script>
</body>

</html>
All Prompts