@import url('./common.css');

/* Section Styling */
.hero-section {
    display: flex;
    /* Enable flexbox for alignment */
    flex-direction: column;
    /* Stack elements vertically */
    justify-content: center;
    /* Center elements vertically */
    align-items: center;
    /* Center elements horizontally */
    height: 100vh;
    /* Full viewport height */
    background-color: #d3d3d3;
    /* Set background color to gray */
    text-align: center;
    /* Center-align the text */
    margin: 0;
    /* Remove any default margin */
}

/* Styling for H1 */ß
h1 {
    font-size: 3rem;
    /* Make the heading big */
    font-weight: bold;
    /* Optional: Make it bold */
    margin-bottom: 20px;
    /* Add some space below the heading */
}

/* Styling for Paragraph */
p {
    font-size: 1rem;
    /* Adjust paragraph font size */
    margin-bottom: 30px;
    /* Add some space below the paragraph */
}

/* Buttons Styling */
.buttons {
    display: flex;
    /* Enable flexbox for buttons */
    flex-wrap: wrap;
    /* Allow wrapping if needed */
    justify-content: center;
    /* Center buttons horizontally */
    gap: 15px;
    /* Space between buttons */
}

.buttons a {
    padding: 10px 20px;
    /* Add padding to buttons */
    background-color: var(--tertiary-color);
    /* Darker blue on hover */
    color: var(--primary-color);
    /* Button text color */
    text-decoration: none;
    /* Remove underline */
    border: 2px solid var(--primary-color);
    /* Add a border to the buttons */
    font-size: 1rem;
    /* Adjust font size */
    transition: background-color 0.3s ease;
    /* Smooth hover effect */
}

/* Hover Effect for Buttons */
.buttons a:hover {
    background-color: var(--tertiary-color);
    /* Darker blue on hover */
}

.section-above-line {
    border: 0;
    height: 2px;
    width: 72px;
    border-radius: 5px;
    background: var(--primary-color);
    margin-bottom: 20px;
    /* Adjust this to increase or decrease space below the hr */
    margin-top: 0;
    /* Optional: Set this to control space above the hr */
}

.section-decoration {
    margin: 50px;
    /* Adjust vertical spacing between sections */
    padding: 20px;
    /* Optional: Add padding inside each section */
}

hr {
    border: 0;
    height: 2px;
    border-radius: 5px;
    background: var(--primary-color);
    margin: 40px 0;
}

.foot-above-horizontal-line {
    margin: 30px 7%;
    /* Adjust vertical spacing between sections */
}

h2 {
    font-weight: 900;
    /* Sets the boldness to maximum */
    font-size: 1.5em;
    margin-bottom: 20px;
}

/* Footer Section Styling */
.footer {
    display: flex;
    /* Use flexbox for alignment */
    justify-content: center;
    /* Center horizontally */
    align-items: flex-start;
    /* Align columns to the top */
    gap: 20%;
    /* Add space between columns */
    text-align: center;
    /* Center text within columns */
    padding: 20px;
}

.footer-column {
    text-align: right;
    /* Aligns everything in the column to the right by default */
}

.footer .footer-column h3 {
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.footer .footer-column ul {
    list-style: none;
    /* Optional: Remove bullets from the list */
    padding: 0;
    /* Removes default padding */
}

.footer .footer-column li {
    text-align: right;
    /* Aligns the list items to the right explicitly */
    font-size: 0.9rem;
}

.footer .footer-column a {
    text-decoration: none;
    color: #333;
}

.social-icons {
    display: flex;
    /* Use Flexbox for alignment */
    justify-content: center;
    /* Center the icons horizontally */
    gap: 20px;
    /* Add space between the icons */
    margin-top: 20px;
    /* Optional: Add space above the icons section */
}

.social-icons a img {
    width: 20px;
    /* Adjust the size of the icons */
    height: 20px;
    /* Maintain consistency in icon dimensions */
}

/* Copyright Text Styling */
.copyright {
    text-align: center;
    /* Center align the text */
    margin-top: 30px;
    /* Add space above */
    margin-bottom: 20px;
    /* Add space above */
    font-size: 1.25rem;
    /* Adjust font size */
}