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

body {
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVBAR ===== */
nav {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    height: 110px;
}

.epstimi {
    display: flex;
    align-items: center;
    justify-content: center;
}

.epstimi img {
    height: 60px;
    width: 60px;
    transition: transform 0.3s ease;
}

.epstimi img:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
}

.logo.hidden {
    opacity: 0;
    pointer-events: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.lingua {
    height: 110px;
    width: 110px;
    transition: transform 0.3s ease;
}

.lingua:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s, transform 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: #f0e68c;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #f0e68c;
    transition: width 0.3s, left 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger.active {
    position: fixed;
    top: 35px;
    right: 20px;
    z-index: 5000;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #8B4513 0%, #654321 100%);
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    transition: right 0.4s ease;
    z-index: 1000;
    padding: 80px 0 20px 0;
}

.sidebar.active {
    right: 0;
}

.sidebar .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    display: flex;
}

.sidebar .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(240, 230, 140, 0.2);
}

.sidebar .nav-links a {
    display: block;
    padding: 1.2rem 2rem;
    width: 100%;
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.sidebar .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== HERO SECTION ===== */
.hero {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
    padding: 40px 20px;
}

.container {
    text-align: center;
    padding: 40px 20px;
}

h1 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    margin-bottom: 10px;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.2;
    color: #8C5A2E;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(140, 90, 46, 0.2);
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    color: #8C5A2E;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #8C5A2E;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    width: 180px;
    height: 55px;
    padding: 0 20px;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(140, 90, 46, 0.3);
}

.cta-button:hover {
    background-color: #6d5636;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(140, 90, 46, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.button-text {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    display:flex;
    flex-wrap: nowrap;
}

.arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

/* ===== INTRO SECTION ===== */
.container2 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.container2 h1 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-align: center;
    margin: 40px 0 20px 0;
    color: #000;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
    padding: 0 15px;
}

.container2 p {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    text-align: center;
    margin: 0 auto 40px auto;
    max-width: 900px;
    padding: 0 20px;
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.highlight {
    color: #8C5A2E;
    position: relative;
}

/* ===== BOXES SECTION ===== */
.boxes-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto 80px auto;
    max-width: 1400px;
    padding: 0 20px;
}

.box {
    background: linear-gradient(135deg, #FFFFFF 0%, #f9f9f9 100%);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 400px;
    min-height: 320px;
    border: 2px solid transparent;
}

.box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(140, 90, 46, 0.2);
    border-color: #8C5A2E;
}

.box img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.box:hover img {
    transform: scale(1.1) rotate(5deg);
}

.box h3 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
    width: 100%;
    transition: color 0.3s ease;
}

.box:hover h3 {
    color: #8C5A2E;
}

.box p {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

/* ===== AGENDA SECTION ===== */
.agenda {
    width: 85%;
    margin: auto;
    padding: 60px 0;
}

.agenda h2 {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: #8C5A2E;
    transform: translateX(-50%);
}

.event {
    width: 50%;
    padding: 25px 30px;
    position: relative;
    min-height: 160px;
    display: flex;
    align-items: center;
}

.event.left {
    left: 0;
}

.event.right {
    left: 50%;
}

.content {
    background: linear-gradient(135deg, #F7F3ED 0%, #f5f0e8 100%);
    border-radius: 16px;
    padding: 35px 40px;
    width: 400px;
    box-shadow: 0 8px 25px rgba(140, 90, 46, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(140, 90, 46, 0.25);
    border-color: #8C5A2E;
}

.event.left .content {
    margin-left: auto;
}

.event.right .content {
    margin-right: auto;
    text-align: right;
}

.time {
    font-family: 'Cormorant Garamond', serif;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: row-reverse;
    font-size: 18px;
    font-weight: 500;
    color: #8C5A2E;
}

.icon-user {
    width: 20px;
    height: 20px;
}

.content h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 10px;
    margin-top: 12px;
    text-align: right;
    transition: color 0.3s ease;
}

.content:hover h3 {
    color: #8C5A2E;
}

.desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    text-align: left;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}
a{
    text-decoration: none;;
}

.event::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #8C5A2E;
    border-radius: 50%;
    transform: translateY(-50%);
    border: 3px solid #f5f0e8;
    transition: all 0.3s ease;
}

.event:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 15px rgba(140, 90, 46, 0.5);
}

.event.left::before {
    right: -10px;
}

.event.right::before {
    left: -10px;
}

/* ===== FUN SECTION ===== */
:root {
    --bg: #EDE4D5;
    --gold: #D4A03A;
    --card: #ffffff;
    --black: #000000;
}

.container3 {
    max-width: 100%;
    margin: auto;
    padding: 80px 20px;
    background: var(--bg);
    color: var(--black);
}

.hero2 {
    text-align: center;
    margin-bottom: 80px;
}

.hero2 h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
}

.hero2 h1 span {
    color: var(--gold);
}

.hero2 p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    line-height: 1.5;
    margin-top: 30px;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cards2 {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.card2 {
    background: linear-gradient(135deg, var(--card) 0%, #f9f9f9 100%);
    width: 100%;
    max-width: 584px;
    min-height: 500px;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.card2:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 160, 58, 0.25);
    border-color: var(--gold);
}

.card2-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.card2-header img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.card2:hover .card2-header img {
    transform: scale(1.1) rotate(10deg);
}

.card2 h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.card2:hover h2 {
    color: var(--gold);
}

.card2 p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.75rem);
    line-height: 1.6;
    margin: 40px 0;
    font-weight: 400;
}

.btn2 {
    width: 204px;
    height: 55px;
    background: var(--gold);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 160, 58, 0.3);
    text-decoration: none;
}

.btn2 a {
    text-decoration: none;
}

.btn2:hover {
    background: #c89030;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 160, 58, 0.4);
}

.btn2:active {
    transform: translateY(-1px);
}

.btn2 span {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.btn2 img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.btn2:hover img {
    transform: translateX(5px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and small laptops */
@media (max-width: 1024px) {
    nav {
        height: 100px;
        padding: 1rem 1.5rem;
    }
    
    .boxes-container {
        gap: 25px;
    }
    
    .box {
        width: calc(50% - 15px);
    }
}

/* Tablets */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
        height: 90px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .lingua {
        display: none;
    }
    
    .epstimi img {
        height: 50px;
        width: 50px;
    }

    .hero {
        min-height: 400px;
        padding: 30px 15px;
    }

    h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .brand-name {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .tagline {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
    
    .boxes-container {
        gap: 20px;
    }
    
    .box {
        width: 100%;
        max-width: 500px;
        padding: 30px 25px;
    }

    /* Timeline mobile */
    .timeline::before {
        left: 30px;
    }

    .event {
        width: 100%;
        left: 0 !important;
        padding-left: 70px;
        padding-top: 25px;
        margin-bottom: 30px;
    }

    .content {
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .event::before {
        left: 23px !important;
        top: 30px;
        transform: none !important;
    }

    .content h3 {
        font-size: 20px;
        text-align: left;
    }

    .time {
        font-size: 16px;
        text-align: left;
        flex-direction: row;
    }

    .desc {
        font-size: 16px;
    }

    .agenda h2 {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 40px;
    }

    .cards2 {
        gap: 30px;
    }

    .card2 {
        padding: 40px 30px;
        min-height: auto;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    nav {
        padding: 0.8rem 1rem;
        height: 80px;
    }

    .epstimi img {
        height: 45px;
        width: 45px;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
    }
    
    .hamburger.active {
        top: 25px;
        right: 15px;
    }

    .sidebar {
        width: 250px;
    }

    .sidebar .nav-links a {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }

    .hero {
        min-height: 350px;
        padding: 25px 10px;
    }

    .container {
        padding: 30px 15px;
    }

    h1 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 15px;
    }

    .brand-name {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .tagline {
        font-size: clamp(1rem, 5vw, 1.25rem);
        margin-bottom: 25px;
    }

    .cta-button {
        width: 160px;
        height: 50px;
    }

    .container2 {
        padding: 40px 15px;
    }

    .boxes-container {
        padding: 0 15px;
        margin-bottom: 60px;
    }

    .box {
        padding: 25px 20px;
        min-height: 280px;
    }

    .box img {
        width: 60px;
        height: 60px;
    }

    .agenda {
        width: 90%;
        padding: 40px 0;
    }

    .event {
        padding-left: 60px;
        margin-bottom: 25px;
    }

    .event::before {
        left: 18px !important;
    }

    .timeline::before {
        left: 25px;
    }

    .content {
        padding: 18px 20px;
    }

    .content h3 {
        font-size: 18px;
        margin-top: 8px;
    }

    .time {
        font-size: 14px;
    }

    .icon-user {
        width: 18px;
        height: 18px;
    }

    .desc {
        font-size: 14px;
    }

    .container3 {
        padding: 60px 15px;
    }

    .hero2 {
        margin-bottom: 50px;
    }

    .hero2 p {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-top: 20px;
    }

    .card2 {
        padding: 35px 25px;
    }

    .card2-header {
        gap: 15px;
        margin-bottom: 25px;
    }

    .card2-header img {
        width: 50px;
        height: 50px;
    }

    .card2 h2 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .card2 p {
        font-size: clamp(0.95rem, 4vw, 1.25rem);
        margin: 30px 0;
    }

    .btn2 {
        width: 180px;
        height: 50px;
    }
}

/* Large desktops */
@media (min-width: 1200px) {
    .boxes-container {
        gap: 40px;
    }

    .box {
        width: calc(33.333% - 27px);
        max-width: none;
    }
}






/* ===== FOOTER ===== */

.madi {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    min-height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
}

footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

footer > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Lingua Section - Left */
.lingua-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.header-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    min-height: 100px;
}

#LS {
    height: 70px;
    width: 70px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

#LS:hover {
    transform: scale(1.05);
}

#lmhm {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.1;
    font-size: 24px;
    letter-spacing: 1px;
    margin: 0;
}

#lmhm p {
    margin: 0;
    color: #f0e68c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lingua-section > p {
    font-size: 25px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 100%;
}

/* About Section - Center */
#esc {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-height: auto;
}

#About {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 1px;
    margin: 0;
    color: #f0e68c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#esc > p {
    font-size: 25px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 100%;
}

/* Contact Section - Right */
.contact-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-end;
    text-align: right;
}

#Contact {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 1px;
    margin: 0;
    color: #f0e68c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    padding: 0;
    margin: 0;
}

.contact-section ul li {
    font-weight: 300;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.contact-section ul li:hover {
    color: #f0e68c;
}

#logos {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.icons img {
    height: 45px;
    width: 45px;
    transition: all 0.3s ease;
    display: block;
    filter: brightness(0.95);
}

.icons {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    cursor: pointer;
}

.icons:hover img {
    transform: scale(1.15) rotate(5deg);
    filter: brightness(1.1);
}

.separator {
    width: calc(100% - 80px);
    max-width: 1400px;
    margin: 0 auto 30px auto;
    opacity: 0.3;
    display: block;
}

#ltaht-ga3 {
    text-align: center;
    padding: 25px 40px 20px 40px;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    font-weight: 300;
    border-top: 1px solid rgba(240, 230, 140, 0.1);
    padding-top: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tablet Landscape */
@media (max-width: 1200px) {
    footer {
        gap: 40px;
    }
    
    #lmhm {
        font-size: 22px;
    }
    
    #About,
    #Contact {
        font-size: 26px;
    }
    
    .lingua-section > p,
    #esc > p,
    .contact-section ul {
        font-size: 17px;
    }
}

/* Tablet Portrait */
@media (max-width: 900px) {
    .madi {
        padding: 50px 30px;
    }
    
    footer {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .lingua-section,
    #esc,
    .contact-section {
        align-items: center;
        text-align: center;
    }
    
    .header-section {
        justify-content: center;
    }
    
    .contact-section ul {
        text-align: center;
        align-items: center;
    }
    
    #logos {
        justify-content: center;
    }
    
    .separator {
        width: calc(100% - 60px);
    }
    
    #ltaht-ga3 {
        padding: 25px 30px 20px 30px;
    }
}

/* Mobile Large */
@media (max-width: 600px) {
    .madi {
        padding: 40px 20px;
    }
    
    #LS {
        height: 60px;
        width: 60px;
    }
    
    #lmhm {
        font-size: 20px;
    }
    
    #About,
    #Contact {
        font-size: 24px;
    }
    
    .lingua-section > p,
    #esc > p,
    .contact-section ul {
        font-size: 16px;
    }
    
    .icons img {
        height: 40px;
        width: 40px;
    }
    
    #logos {
        gap: 15px;
    }
    
    .separator {
        width: calc(100% - 40px);
    }
    
    #ltaht-ga3 {
        padding: 20px 20px 15px 20px;
        font-size: 14px;
    }
    
    footer {
        gap: 40px;
    }
    
    .header-section {
        min-height: 70px;
    }
}

/* Mobile Small */
@media (max-width: 400px) {
    .madi {
        padding: 30px 15px;
    }
    
    #LS {
        height: 50px;
        width: 50px;
    }
    
    #lmhm {
        font-size: 18px;
    }
    
    #About,
    #Contact {
        font-size: 22px;
    }
    
    .lingua-section > p,
    #esc > p,
    .contact-section ul {
        font-size: 14px;
    }
    
    .icons img {
        height: 35px;
        width: 35px;
    }
    
    #logos {
        gap: 12px;
    }
    
    footer {
        gap: 35px;
    }
    
    .header-section {
        gap: 15px;
    }
    
    #ltaht-ga3 {
        font-size: 13px;
        padding: 15px 15px 10px 15px;
    }
}