/* Layout and Structure */

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.align-right {
    text-align: right;
}

/* Main Wrappers */
.outer-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--dark-bg);
}

.outer-wrapper-index {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: url("../Images/indexBgColor.jpg") no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.outer-wrapper-index::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.2);
    z-index: 0;
}

.outer-wrapper-index > * {
    position: relative;
    z-index: 1;
}

.outer-wrapper-index > header {
    z-index: 1000;
}

.indexHeader {
    font-size: 5em;
    text-align: center;
    margin-top: 100px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#main {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 40px;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Utility Classes */
.centerCell {
    text-align: center;
}

.lastCell {
    text-align: right;
}

.preFooter {
    margin-top: 20px;
    text-align: center;
    color: var(--gray-text);
    font-size: 0.9em;
}

.mailingListHeader {
    margin-top: 1.5em;
    text-align: center;
    color: var(--gray-text);
    font-size: 1em;
}
