/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-image: url('brotabg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
}

/* Logo styling */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: calc(20vh + 50px);
}

.main-logo {
    max-width: 240px;
    height: auto;
}

/* Footer styling */
footer {
    background-color: #EEECEC;
    padding: 20px 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tagline-image {
    max-width: 200px;
    height: auto;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #444531;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #CBBCA1;
}

/* Fade-in animation */
.fade-in {
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .main-logo {
        max-width: 160px;
    }

    .tagline-image {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 120px;
    }

    .tagline-image {
        max-width: 120px;
    }
} 