/*
Theme Name: LoanDaddy
Theme URI: https://loandaddy.com
Author: YourName
Author URI: https://loandaddy.com
Description: A simple landing page WordPress theme for LoanDaddy
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: loandaddy
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(to right, #b721ff, #ff7a00);
    color: white;
    padding: 20px 0;
}

.site-title {
    font-size: 28px;
    font-weight: bold;
    padding-left: 20px;
}

.site-title a {
    color: white;
    text-decoration: none;
}

/* Main content */
.main-content {
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
	align-items: start;
}

.left-section {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.sec-logo {
    width: 70%;
    margin-bottom: 30px;
}

.description {
    color: #333;
    margin-bottom: 20px;
    max-width: 450px;
    line-height: 1.6;
}

.right-section {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
/*     background: linear-gradient(to right, #b721ff, #ff7a00); */
    border-radius: 20px;
    padding: 20px;
    max-width: 450px;
}

.user-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Action buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.right-action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    justify-content: center;
    width: 100%;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    text-align: center;
    min-width: 150px;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(to right, #b721ff, #ff7a00);
	transition: all 0.3s ease;
}

.right-action-buttons .btn {
    background: linear-gradient(to right, #9c27b0, #ff7043);
	color: white;
	border: none;
    min-width: 200px;
    padding: 12px 20px;
}

.btn-primary:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

/* Recognition sections */
.recognition-section {
    text-align: center;
    padding: 40px 0;
}

.section-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.flags-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.flag {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 20px;
}

.copyright {
    color: #666;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .left-section, .right-section {
        width: 100%;
        text-align: center;
    }

    .sec-logo {
        margin: 0 auto 30px;
		width: 100%;
    }

    .description {
        margin: 0 auto 20px;
    }

    .right-action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .flags-container {
        gap: 10px;
    }

    .flag {
        width: 60px;
        height: 60px;
    }
}