/* Custom styles for for our first site */
:root {
    --primary-color: #3273dc;
    --secondary-color: #00d1b2;
}

/* Smooth transitions */
.card, .box, .button {
    transition: all 0.3s ease;
}

/* Custom hover effects */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Image aspect ratios */
.image.is-square img {
    object-fit: cover;
}

/* Custom spacing */
.section {
    padding: 3rem 1.5rem;
}

/* Sticky footer */
html, body {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
}

.section {
    flex: 1;
}

.drag-box {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px dashed #dbdbdb;
    border-radius: 12px;
}

.drag-box.is-primary {
    border-color: #00d1b2;
    background-color: #f0fffd !important;
}

.drag-cta {
    justify-content: center;
    padding: 1.5rem;
}

.file-input {
    display: none;
}

.file-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.hero-cover {
    background-image: 
        linear-gradient(to bottom right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35)),
        url('/static/images/hero-cover.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
}

.hero-cover .title,
.hero-cover .subtitle,
.hero-cover p {
    color: #fff !important;
}

.hero-cover .box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 12px;
}
