/* PADIR Brand Colors */
:root {
    --primary-teal: #5b9a9e;
    --primary-navy: #3a4a5c;
    --primary-beige: #9a8878;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
}

/* Body Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text-dark);
}

/* Logo Styling */
.logo-container {
    animation: fadeInDown 1s ease-in-out;
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* Text Colors */
.text-primary-custom {
    color: var(--primary-teal) !important;
}

.text-secondary-custom {
    color: var(--primary-beige) !important;
}

/* Headings */
h1, h2 {
    animation: fadeInUp 1s ease-in-out;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-teal);
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-navy);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Email Form */
.email-form {
    animation: fadeInUp 1.5s ease-in-out;
}

.btn-primary-custom {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.form-control {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.2rem rgba(91, 154, 158, 0.25);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 180px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
