*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poiret One';
}

:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
main{
    height: 100vh;
    min-height: min-content;
}
#header nav#w1{
    background: rgba(255, 255, 255, 0.6) !important;
}
#header nav#w0{
    background: rgba(255, 255, 255, 0.6) !important;
}
h1, h2, h3 {
    margin-bottom: 20px;
    color: var(--primary);
    font-family: 'Dela Gothic One';
}

h2 {
    text-align: center;
    font-size: 2.1rem !important;
    margin-bottom: 50px !important;
    position: relative;
    font-family: 'Dela Gothic One';
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

main > .container {
    margin: 0;
    max-width: 100vw;
}


footer {
    background: var(--dark) !important;
    color: white;
    padding: 50px 0 20px;
}
.navbar-brand{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.5rem;
    padding-bottom: 11px;

}
.navbar-expand-md .navbar-nav .nav-link{
    font-family: 'Poiret One';
    font-weight: bold;
    padding-bottom: 3px !important;
    font-size: 14pt;

}

.navbar-brand i{
    color: #3c3c3c !important;
}
.navbar-brand h4{
    color: #3c3c3c !important;
    font-family: 'Dela Gothic One';
    font-weight: bolder;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 30px;
    }
}

.alert {
    margin-bottom: 15px !important;
    border-radius: 5px;
    width: auto;
}

.alert-dismissible {
    padding-right: 3rem;
}

.footer-column ul{
    padding-left: 0 !important;
}

.linee{
    width: 100%;
    height: 2px;
    border-radius: 2px;
    margin: 20px 0;
    background-color: #4d4d4d;
}