/* Global Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(0deg, #FEB19C, #FA4717); /* Orange gradient background */
    color: white;
    line-height: 1.6;
    min-height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column; /* Allows for vertical alignment of sections */
}

header {
    display: flex;
    align-items: center;
    padding: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

header .logo {
    margin-right: 15px;
}

header .logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.logotext {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 80px;
}

.logotext h2 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.logotext p {
    font-size: 16px;
    font-weight: bolder;
    margin: -10px 0 0 2px;
    text-align: left;
    padding: 0;
}

nav {
    margin-left: auto; /* Pushes the nav to the right */
    font-size: 12px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center; /* Aligns nav items vertically */
}

nav ul li {
    margin: 0 50px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li img {
    height: 100%; /* Matches the height of the nav bar */
    max-height: 50px; /* Set max height to avoid oversized images */
    width: auto; /* Adjust width automatically to maintain aspect ratio */
}

/* Social Links Section */
.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center vertically */
    flex-grow: 1; /* Take the remaining space between header and footer */
}

.social-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none; /* Remove underline from link */
    color: white; /* White text */
    transition: transform 0.3s, box-shadow 0.3s; /* Add hover effects */
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent background */
}

.social-item:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Add shadow effect */
}

.social-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.social-text h3 {
    font-size: 24px;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.social-text p {
    font-size: 14px;
    margin: 5px 0 0 0;
}

footer {
    background-color: #FA4717;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logotext h2 {
        font-size: 28px;
    }

    nav ul li {
        margin: 0 20px;
    }

    .center-text h1 {
        font-size: 36px;
    }

    .social-item {
        flex-direction: column;
        align-items: center;
    }

    .social-icon {
        margin-bottom: 10px;
    }
}
