/* Golden Gate Media - Policies Style CSS */
/* Consistent with slides framework but cleaner for policies */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #000;
    color: #00ff00;
    line-height: 1.6;
    font-size: 14px;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #000;
    border: 2px solid #00ff00;
    border-radius: 8px;
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    animation: slideInUp 0.6s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.5);
}

@keyframes slideInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 28px;
    text-align: center;
    color: #00ff00;
    text-shadow: 0 0 15px #00ff41;
    font-family: 'Orbitron', monospace;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    animation: pulse 3s ease-in-out infinite;
    transition: color 0.3s ease;
}

h1:hover {
    color: #00ff41;
    text-shadow: 0 0 20px #00ff41;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.nav {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #00ff00;
    box-shadow: 0 2px 0 rgba(0, 255, 0, 0.3);
}

.nav a {
    color: #00ff00;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
    text-shadow: 0 0 5px #00ff41;
}

.nav a:hover {
    background-color: #00ff00;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    text-shadow: none;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: #00ff00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 5px #00ff41;
}

.nav a:hover::after {
    width: 100%;
}

.content {
    margin: 20px 0;
}

.section {
    margin: 30px 0;
    padding: 25px;
    border-left: 4px solid #00ff00;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease-out;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.1);
}

.section:hover {
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    border-left-color: #00ff41;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

h2 {
    font-size: 20px;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff41;
    font-family: 'Orbitron', monospace;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 16px;
    color: #00ff41;
    text-shadow: 0 0 8px #00ff41;
    font-family: 'Orbitron', monospace;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

p {
    margin-bottom: 15px;
    color: #00ff00;
    line-height: 1.7;
}

ul {
    list-style-type: none;
    margin: 15px 0;
    padding-left: 0;
}

li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    transition: all 0.3s ease;
    color: #00ff00;
}

li:hover {
    transform: translateX(5px);
    color: #00ff41;
    text-shadow: 0 0 5px #00ff41;
}

li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ff00;
    font-size: 10px;
    top: 3px;
    text-shadow: 0 0 3px #00ff41;
}

.highlight {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 20px;
    border-left: 4px solid #30249c;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    animation: glow 2s ease-in-out infinite alternate;
}

.highlight:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(48, 36, 156, 0.2);
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(48, 36, 156, 0.1); }
    to { box-shadow: 0 0 20px rgba(48, 36, 156, 0.3); }
}

.contact-info {
    background: linear-gradient(135deg, #e8f2ff 0%, #f0f8ff 100%);
    padding: 25px;
    border: 2px solid #30249c;
    margin: 25px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: bounceIn 0.8s ease-out;
}

.contact-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(48, 36, 156, 0.2);
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f2ff 100%);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    color: #666;
    font-size: 12px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer a {
    color: #30249c;
    text-decoration: none;
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.footer a:hover {
    color: #4a3c8c;
    transform: translateY(-1px);
}

.footer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    background-color: #30249c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer a:hover::after {
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

th {
    background: linear-gradient(135deg, #30249c 0%, #4a3c8c 100%);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

tr:hover {
    background-color: #f8f9ff;
}

a {
    color: #30249c;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #4a3c8c;
    text-decoration: underline;
}

strong {
    color: #30249c;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .nav a {
        margin: 0 10px;
        font-size: 11px;
    }
    
    .section {
        padding: 20px;
    }
}





