/* 
  DeploydStudio Global Styles 
  Centralized stylesheet for custom animations and non-Tailwind utilities.
*/

:root {
    --bg-color: #FDFCF8;
    --dark-color: #0F0F0F;
    --accent-color: #FF4D00;
    --soft-color: #E5E5E5;
}

body {
    background-color: var(--bg-color);
    color: var(--dark-color);
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background-image: url('data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22 opacity=%220.04%22/%3E%3C/svg%3E');
}

.text-outline {
    -webkit-text-stroke: 1px rgba(0,0,0,0.2);
    color: transparent;
}

.reveal-img {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-img:hover {
    clip-path: inset(5% 5% 5% 5%);
}

/* Custom Banner Styles */
.autopilot-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.autopilot-banner a {
    color: var(--accent-color);
    transition: all 0.3s;
    margin-left: 4px;
}

.autopilot-banner a:hover {
    color: white;
    text-decoration: underline;
}

/* Adjusting footer for banner */
footer {
    padding-bottom: 60px !important;
}
