/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #2a9d8f, #264653); /* Teal gradient */
    color: #f1f1f1; /* Lighter text for better contrast */
    line-height: 1.8; /* Increased line height for readability */
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    padding: 30px;
    background: linear-gradient(to top, #264653, #2a9d8f); /* Teal fade */
    color: #ffffff;
    border-bottom: 3px solid #f4a300; /* Updated orange color in the border */
}

header h1 {
    font-size: 3rem; /* Larger font size */
    font-weight: 700; /* Bold weight for header */
    margin-bottom: 15px;
}

header p {
    font-size: 1.5rem;
}

/* Welcome Section */
#welcome h2 {
    font-size: 4rem; /* Larger font size */
    font-weight: 700; /* Bold weight for emphasis */
    text-align: center;
    color: #ffffff; /* White color for better contrast */
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.7), 0 0 30px rgba(255, 165, 0, 0.7); /* Glowing orange text shadow */
    background: linear-gradient(to right, #f4a300, #40e0d0); /* Gradient text color */
    -webkit-background-clip: text; /* Clip the gradient to the text */
    background-clip: text;
    animation: shine 2s infinite alternate, bounce 1.5s ease-in-out infinite; /* Added shine animation for extra effect */
    margin-bottom: 20px;
}

#welcome p {
    text-align: center; /* Center text under Welcome */
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.7);
    margin-top: 10px;
}

/* Sections */
section {
    margin: 30px auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1); /* Subtle transparent white background */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
    max-width: 1000px;
    transition: background 0.3s ease-in-out; /* Smooth background transition */
}

section:hover {
    background: rgba(36, 49, 55, 0.7); /* Darker teal shade on hover for better readability */
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #40e0d0;
    font-weight: 700;
}

section p {
    font-size: 1.2rem;
    line-height: 1.6; /* Improved line spacing for better readability */
    color: #f1f1f1;
    margin-bottom: 20px; /* Added padding under the paragraph */
}

/* List Items in Columns */
ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid layout */
    gap: 20px; /* Spacing between items */
    list-style-type: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px; /* Limit the width for proper centering */
}

ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1); /* Subtle transparent background */
    color: #f4a300; /* Orange text color */
    font-size: 1.3rem;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border for clarity */
    transition: background 0.3s ease, transform 0.3s ease;
    min-height: 100px; /* Ensures items remain visually uniform */
}

ul li:hover {
    background: rgba(255, 255, 255, 0.2); /* Slightly darker hover effect */
    transform: scale(1.05); /* Zoom effect on hover */
}

/* Host Styling */
.host {
    margin-bottom: 40px; /* Increased spacing between host sections */
    padding: 20px;
    background: rgba(255, 255, 255, 0.1); /* Subtle transparent background */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border to differentiate sections */
}

.host h3 {
    font-size: 1.8rem;
    color: #f4a300; /* Orange for host names */
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px; /* Added spacing below host names */
}

.host p {
    text-align: center;
    font-size: 1.2rem;
    color: #f1f1f1;
    line-height: 1.6;
}

/* CTA Section */
.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 1.2rem;
    color: #fff;
    background: #f4a300; /* Updated button background color */
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Button Hover */
.cta-btn:hover {
    background: #40e0d0;
    color: #000;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    font-size: 2.5rem;
    color: #f4a300; /* Orange color for icons */
    transition: color 0.3s ease, transform 0.3s ease, border 0.3s ease;
    text-decoration: none;
    border-radius: 50%; /* Make icons circular */
    padding: 15px;
    border: 3px solid transparent; /* Start with a transparent border */
}

/* Hover Effects for Social Icons */
.social-icons a:hover {
    color: #ffffff; /* Hover color change */
    transform: scale(1.1); /* Slight zoom effect on hover */
    border-color: #f4a300; /* Orange border on hover */
    background-color: rgba(255, 255, 255, 0.1); /* Light background color on hover */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    ul {
        grid-template-columns: 1fr; /* Stack list items on small screens */
    }

    #welcome h2 {
        font-size: 3rem; /* Slightly smaller text on mobile */
    }
}
/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(to bottom, #2a9d8f, #264653); /* Teal fade */
    margin-top: 30px;
    border-top: 3px solid #40e0d0;
    font-size: 1rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically if necessary */
}
