/* Copyright Page Specific Styles */

/* Main Wrapper */
.main-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    max-width: 100%;
    background-color: white;
    min-height: auto;
    padding: 70px 20px 30px; /* Updated top padding to match main CSS */
    box-sizing: border-box;
}

/* Copyright Container */
.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0 50px;
    box-sizing: border-box;
}

/* Copyright Header */
.copyright-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px; /* Add padding to account for fixed navbar */
}

.copyright-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #283848;
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.copyright-divider {
    width: 80px;
    height: 4px;
    background-color: #d9a442;
    margin: 0 auto;
}

/* Copyright Content */
.copyright-content {
    padding: 20px 0;
}

.copyright-section {
    margin-bottom: 40px;
    padding: 0 15px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 20px;
}

.copyright-section:hover {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding-left: 20px;
    border-bottom: 1px solid #d9a442;
}

.copyright-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #283848;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.copyright-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #283848;
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.copyright-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: color 0.3s ease;
}

.copyright-section:hover p {
    color: #333;
}

/* Contact Information Section */
.contact-info {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #d9a442;
    transition: all 0.3s ease;
}

.contact-info:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-left: 5px solid #d9a442;
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details i {
    margin-right: 10px;
    color: #d9a442;
}

/* Effective Date Section */
.effective-date {
    text-align: center;
    font-style: italic;
    margin-top: 40px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    border-left: 3px solid #d9a442;
    transition: all 0.3s ease;
}

.effective-date:hover {
    background-color: #f0f0f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #d9a442;
}

.effective-date p {
    font-size: 14px;
    color: #777;
}

/* Animation Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textFocus {
    0% {
        filter: blur(12px);
        opacity: 0;
    }
    100% {
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes colorChange {
    0% {
        color: #283848;
    }
    50% {
        color: #d9a442;
    }
    100% {
        color: #283848;
    }
}

@keyframes borderPulse {
    0% {
        border-color: transparent;
    }
    50% {
        border-color: #d9a442;
    }
    100% {
        border-color: transparent;
    }
}

/* Apply animations to elements */
.animated-text {
    display: inline-block;
    position: relative;
    animation: textFocus 1s ease-out forwards;
}

.text-animation {
    position: relative;
}

.text-animation::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d9a442;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
    animation: borderPulse 3s infinite;
}

.text-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.copyright-section:hover h3 {
    animation: colorChange 2s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .copyright-container {
        padding: 80px 0 40px;
    }

    .copyright-header h1 {
        font-size: 32px;
    }

    .copyright-section h2 {
        font-size: 22px;
    }

    .copyright-section h3 {
        font-size: 18px;
    }

    .copyright-section p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .copyright-container {
        padding: 60px 0 30px;
    }

    .copyright-header h1 {
        font-size: 28px;
    }

    .copyright-section {
        padding: 0 10px;
    }

    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-wrapper {
        padding: 60px 15px 20px;
    }

    .copyright-container {
        padding: 40px 0 20px;
    }

    .copyright-header h1 {
        font-size: 24px;
    }

    .copyright-section h2 {
        font-size: 20px;
    }

    .copyright-section h3 {
        font-size: 16px;
    }

    .copyright-section p {
        font-size: 14px;
        line-height: 1.5;
    }

    .copyright-section ul {
        margin-left: 10px;
        padding-left: 10px;
    }

    .contact-info {
        padding: 15px;
        margin-top: 30px;
    }

    .contact-details p {
        font-size: 14px;
        word-break: break-word;
    }

    .contact-details i {
        width: 20px;
        display: inline-block;
    }

    .effective-date {
        margin-top: 30px;
        padding: 10px;
    }

    .effective-date p {
        font-size: 12px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .copyright-header h1 {
        font-size: 22px;
    }

    .copyright-section h2 {
        font-size: 18px;
    }

    .copyright-section h3 {
        font-size: 15px;
    }

    .copyright-section p {
        font-size: 13px;
    }

    .contact-details p {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .effective-date {
        padding: 8px;
    }

    .effective-date p {
        font-size: 11px;
    }
}

/* Additional Animation Classes for Mobile */
@media (max-width: 768px) {
    .animated-text {
        animation-duration: 0.8s;
    }

    .text-animation::after {
        animation-duration: 2s;
    }
}
