* {
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
}

a {
    text-decoration: none !important;
}

.nav-bar {
    overflow: hidden;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 70px;               /* Feste Höhe – passt zu top: 70px im Mobile-Menü */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 10px grey;
    box-sizing: border-box;     /* Damit padding in width/height einberechnet wird */
    z-index: 1000;
}

.home-button {
    margin: 0;
}

.home-button img {
    margin: 0;
    padding: 0;
    height: 60px;
}

.menue {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.sectionlinks a {
    display: inline;
    color: #000;
    text-align: center;
    align-items: center;
    padding: 10px 16px;
    text-decoration: none;
    font-family: 'bangers';
    letter-spacing: 1px;
}

/* Links färben beim Hover */
.sectionlinks a:hover {
    color: red !important; /* Rot */
    transition: all 0.3s ease;
}

.icons a {
    position: relative;
    display: inline-flex;
    color: #000;
    text-align: center;
    align-items: center;
    padding: 10px 16px;
    text-decoration: none;
}

.icons a::after {
    content: attr(aria-label); /* Nimmt automatisch "Instagram" oder "Facebook" aus dem aria-label */
    position: absolute;
    bottom: -10px;             /* Unter dem Icon */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    padding: 1px 2px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;      /* Damit der Tooltip nicht den Hover stört */
    z-index: 10;
}

/* Beim Hover: Tooltip einblenden */
.icons a:hover::after,
.icons a:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Icons färben beim Hover */
.icons a:hover ion-icon {
    color: #E4405F; /* Instagram-Farbe */
    transition: all 0.3s ease;
}

.icons a:nth-child(2):hover ion-icon {  /* Facebook-Icon */
    color: #1877F2; /* Facebook-Blau */
}

.icons a:nth-child(3):hover ion-icon {  /* Intern-Icon */
    color: green; /* Grün */
}

ion-icon {
    font-size: 25px;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-right: 10px;
}

.hamburger span {
    width: 100%;
    height: 4px;
    background: black;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Menü standardmäßig horizontal */
.menue {
    display: flex;
    align-items: center;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .grid {
        --num-cols: 2;
        --row-height: 240px;
    }
}

@media screen and (max-width: 640px) {
    .grid {
        --num-cols: 1;
        --row-height: 280px;
    }
}


/* Responsive Breakpoint: ab 1500px wird Abstand der Menue-Links kleiner */
@media (max-width: 1150px) {
    .sectionlinks a {
    display: inline;
    color: #000;
    text-align: center;
    align-items: center;
    padding: 10px 8px;
    text-decoration: none;
    font-family: 'bangers';
    letter-spacing: 1px;
    }

    .icons a {
        display: inline;
        color: #000;
        text-align: center;
        vertical-align: baseline;
        padding: 10px 8px;
        text-decoration: none;
    }
}

/* Responsive Breakpoint: ab 900px wird es zum Hamburger-Menü */
@media (max-width: 900px) {
    .hamburger {
        display: flex; /* jetzt sichtbar */
    }

    .menue {
        position: fixed;
        top: 70px;
        left: -100%; /* versteckt */
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.4s ease;
        padding-top: 40px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .menue.active {
        left: 0; /* einblenden */
    }

    .sectionlinks {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }

    .sectionlinks a {
        padding: 20px;
        font-size: 1.5rem;
        display: block;
    }

    .icons a {
        padding: 20px;
        font-size: 2rem;
    }

    ion-icon {
        font-size: 40px;
    }
}

/* Animation für Hamburger → X beim Öffnen */
.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);
}

/* Hero Section*/
#hero {
    height: 100vh;
}

#hero img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

section {
    height: auto;
}

.section-title {
    padding-top: 120px;
    padding-bottom: 35px;
    font-family: 'bangers';
    font-size: 50px;
    text-align: center;
    letter-spacing: 4px;
}


/* Über üs – Zwei-Spalten-Layout */
.ueber-container {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* Zwei gleich breite Spalten */
    gap: 50px;                        /* Abstand zwischen den Spalten */
    max-width: 1200px;
    margin: 0 auto;                   /* Zentriert den Container */
    padding: 0 30px;                  /* Seitlicher Abstand */
}

.ueber-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ueber-column h2 {
    font-family: 'Bangers', cursive;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: red;
    margin-bottom: 20px;
    text-align: left;
}

.ueber-column p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: justify;
}

.ueber-column p:last-child {
    margin-bottom: 0;
}

.ueber-image {
    margin: 0 0 10px 0;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Responsive: Auf kleinen Bildschirmen untereinander */
@media (max-width: 900px) {
    .ueber-container {
        grid-template-columns: 1fr;   /* Nur eine Spalte */
        gap: 40px;
        padding: 0 20px;
    }
    
    .ueber-column h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .ueber-column p {
        text-align: center;
    }

}

@media (max-width: 550px) {
    .ueber-column h2 {
        font-size: 1.8rem;
    }
    
    .ueber-column p {
        font-size: 1rem;
    }
}

/* Tour-Sektion Styling */
.tour-intro {
    font-size: 1.3rem;
    margin: 20px 0 50px;
    font-family: 'Bangers', cursive;
    text-align: center;
    letter-spacing: 1.5px;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.tour-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.tour-date {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: red;
    margin-bottom: 10px;
}

.tour-event {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #000;
}

/* Mobile Anpassung */
@media (max-width: 600px) {
    .tour-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .tour-date {
        font-size: 1.6rem;
    }
    
    .tour-event {
        font-size: 1.2rem;
    }
}


/* Mitglieder Tabs */
[data-tab-content] {
    display: none;
}

.active[data-tab-content] {
    display: block;
}

.tabs {
    font-family: 'bangers';
    display: flex;
    flex-wrap: wrap;              
    justify-content: center;      
    gap: 20px;                     
    list-style-type: none;
    margin-bottom: 50px;
    padding: 0;
}

.tab {
    cursor: pointer;
    width: 90px;
    padding: 10px;
    border: 2px solid red;
    border-radius: 40px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 0 0 auto;                /* Verhindert unnötiges Strecken */
}

.tab.active {
    color: white;
    background-color: red;
}

.tab:hover {
    color: white;
    background-color: red;
}


/* Einfaches responsives Mitglieder-Grid */
.mitglieder-intro {
    font-size: 1.3rem;
    margin: 20px 0 50px;
    font-family: 'Bangers', cursive;
    letter-spacing: 1.5px;
    text-align: center;
}

.mitglieder-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);   /* Fix 5 Spalten auf großen Screens */
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    justify-items: center;
}

.mitglieder-card {
    background: white;
    border-radius: 20px;
    padding: 30px 10px 0;   /* Mehr Padding oben/unten für mehr Höhe */
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    
    /* Höher als breit: Breite begrenzen, Höhe flexibel aber mindestens höher */
    width: 100%;
    max-width: 240px;                  /* Begrenzt die Breite */
    aspect-ratio: 3 / 3.5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;       /* Inhalt oben ausrichten */
}

.mitglieder-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 0 auto 25px;               /* Mehr Abstand unten */
}

.jung-img {
    display: block;
    margin: 0 auto;
    width: 60%;
    max-width: 1000px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.mitglieder-name {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin: 0 0 12px;
    color: #000;
}

.mitglieder-funktion {
    font-size: 1.25rem;
    font-weight: bold;
    color: red;
    margin: 0 0 15px;
    line-height: 1.4;
}

.mitglieder-email {
    display: block;
    color: #000;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: auto;                  /* Schiebt die E-Mail nach unten */
    padding: 10px 15px;
    border: 2px solid red;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.mitglieder-email:hover {
    background: red;
    color: white;
}

/* Responsive Anpassungen */
@media (max-width: 1400px) {
    .mitglieder-grid {
        grid-template-columns: repeat(4, 1fr);   /* 4 Spalten bei etwas kleinerem Screen */
    }
}

@media (max-width: 1100px) {
    .mitglieder-grid {
        grid-template-columns: repeat(3, 1fr);   /* 3 Spalten auf Tablet */
    }
    .mitglieder-card {
        max-width: 260px;
        padding: 35px 15px;
    }
}

@media (max-width: 800px) {
    .mitglieder-grid {
        grid-template-columns: repeat(2, 1fr);   /* 2 Spalten auf kleinem Tablet */
        gap: 40px;
        padding: 0 20px;
    }

    .jung-img {
        width: 100%;
    }
}

@media (max-width: 550px) {
    .mitglieder-grid {
        grid-template-columns: 1fr;              /* 1 Spalte auf Mobile */
        gap: 50px;
        padding: 0 15px;
    }
    
    .mitglieder-img {
        width: 160px;
        height: 160px;
    }
    
    .mitglieder-name {
        font-size: 1.8rem;
    }
}

/* Vorstand-Sektion – angepasst für 5 nebeneinander + höher als breit */
.vorstand-intro {
    font-size: 1.3rem;
    margin: 20px 0 50px;
    font-family: 'Bangers', cursive;
    letter-spacing: 1.5px;
    text-align: center;
}

.vorstand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);   /* Fix 5 Spalten auf großen Screens */
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    justify-items: center;
}

.vorstand-card {
    background: white;
    border-radius: 20px;
    padding: 20px 10px 20px;   /* Mehr Padding oben/unten für mehr Höhe */
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 240px;                  /* Begrenzt die Breite */
    aspect-ratio: 3 / 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;       /* Inhalt oben ausrichten */
}

.vorstand-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 0 auto 25px;               /* Mehr Abstand unten */
}

.vorstand-name {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin: 0 0 12px;
    color: #000;
}

.vorstand-funktion {
    font-size: 1.25rem;
    font-weight: bold;
    color: red;
    margin: 0 0 15px;
    line-height: 1.4;
}

.vorstand-email {
    display: block;
    color: #000;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: auto;                  /* Schiebt die E-Mail nach unten */
    padding: 10px 15px;
    border: 2px solid red;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.vorstand-email:hover {
    background: red;
    color: white;
}

/* Responsive Anpassungen */
@media (max-width: 1400px) {
    .vorstand-grid {
        grid-template-columns: repeat(4, 1fr);   /* 4 Spalten bei etwas kleinerem Screen */
    }
}

@media (max-width: 1100px) {
    .vorstand-grid {
        grid-template-columns: repeat(3, 1fr);   /* 3 Spalten auf Tablet */
    }
    .vorstand-card {
        max-width: 260px;
        padding: 35px 15px;
    }
}

@media (max-width: 800px) {
    .vorstand-grid {
        grid-template-columns: repeat(2, 1fr);   /* 2 Spalten auf kleinem Tablet */
        gap: 40px;
        padding: 0 20px;
    }
}

@media (max-width: 550px) {
    .vorstand-grid {
        grid-template-columns: 1fr;              /* 1 Spalte auf Mobile */
        gap: 50px;
        padding: 0 15px;
    }
    
    .vorstand-img {
        width: 160px;
        height: 160px;
    }
    
    .vorstand-name {
        font-size: 1.8rem;
    }
}

/* Üses Dehei – Zwei-Spalten-Layout */
.dehei-container {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* Zwei gleich breite Spalten */
    gap: 50px;                        /* Abstand zwischen den Spalten */
    max-width: 1200px;
    margin: 0 auto;                   /* Zentriert den Container */
    padding: 0 30px;                  /* Seitlicher Abstand */
}

.dehei-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.dehei-column h2 {
    font-family: 'Bangers', cursive;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: red;
    margin-bottom: 20px;
    text-align: left;
}

.dehei-column p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: justify;
}

.dehei-column p:last-child {
    margin-bottom: 0;
}


figure {
    position: relative; /* Wichtig, damit das überlagerte Bild relativ dazu positioniert wird */
    display: inline-block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.dehei-image {
    position: relative; /* Wichtig, damit das überlagerte Bild relativ dazu positioniert wird */
    display: inline-block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.overlay-image {
  position: absolute; /* Macht das Bild absolut zur Figur positionierbar */
  top: 20px; /* Abstand von oben */
  left: 20px; /* Abstand vom linken Rand */
  width: 150px; /* Größe des kleinen Bildes */
  border-radius: 50%;
}

.overlay-image:hover {
    transform: scale(1.03);
}

/* Responsive: Auf kleinen Bildschirmen untereinander */
@media (max-width: 900px) {
    .dehei-container {
        grid-template-columns: 1fr;   /* Nur eine Spalte */
        gap: 40px;
        padding: 0 20px;
    }
    
    .dehei-column h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .dehei-column p {
        text-align: center;
    }

}

@media (max-width: 550px) {
    .dehei-column h2 {
        font-size: 1.8rem;
    }
    
    .dehei-column p {
        font-size: 1rem;
    }
}


/* Einfaches responsives link-Grid */
.freunde-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);   /* 4 Spalten auf großen Bildschirmen */
    gap: 40px 20px;                          /* Abstand zwischen den Kacheln */
    padding: 40px 20px;
    justify-items: center;                   /* Zentriert jede Kachel horizontal */
    max-width: 1300px;
    margin: 0 auto;                          /* Zentriert das Grid auf der Seite */
}

.freunde {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.freunde-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.freunde-img:hover {
    transform: scale(1.03);
}

.freunde-name {
    margin-top: 15px;
    font-family: 'Bangers', cursive;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #000;
}

/* Responsive Anpassungen */
@media (max-width: 1200px) {
    .freunde-grid {
        grid-template-columns: repeat(3, 1fr);   /* 3 Spalten auf Tablet */
    }
    .freunde-img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 900px) {
    .freunde-grid {
        grid-template-columns: repeat(2, 1fr);   /* 2 Spalten auf kleinen Tablets/Mobile */
        gap: 30px 20px;
        padding: 30px 15px;
    }
    .freunde-img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 550px) {
    .freunde-grid {
        grid-template-columns: 1fr;              /* 1 Spalte auf Smartphones */
        gap: 40px;
    }
    .freunde-img {
        width: 200px;
        height: 200px;
    }
    .freunde-name {
        font-size: 1.6rem;
    }
}

/* Kontakt-Section */
.kontakt-intro {
    font-size: 1.3rem;
    margin: 20px 0 50px;
    font-family: 'Bangers', cursive;
    letter-spacing: 1.5px;
    text-align: center;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);   /* Fix 2 Spalten auf großen Screens */
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 0 30px;
    justify-items: center;
}

.kontakt-card {
    background: white;
    border-radius: 20px;
    padding: 20px 10px 20px;   /* Mehr Padding oben/unten für mehr Höhe */
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    
    /* Höher als breit: Breite begrenzen, Höhe flexibel aber mindestens höher */
    width: 100%;
    max-width: 240px;                  /* Begrenzt die Breite */
    aspect-ratio: 3 / 4.2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;       /* Inhalt oben ausrichten */
}

.kontakt-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 0 auto 25px;               /* Mehr Abstand unten */
}

.kontakt-name {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin: 0 0 12px;
    color: #000;
}

.kontakt-funktion {
    font-size: 1.25rem;
    font-weight: bold;
    color: red;
    margin: 0 0 15px;
    line-height: 1.4;
}

.kontakt-email {
    display: block;
    color: #000;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: auto;                  /* Schiebt die E-Mail nach unten */
    padding: 10px 15px;
    border: 2px solid red;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.kontakt-email:hover {
    background: red;
    color: white;
}

/* Responsive Anpassungen */
@media (max-width: 1400px) {
    .kontakt-grid {
        grid-template-columns: repeat(2, 1fr);   /* 4 Spalten bei etwas kleinerem Screen */
    }
}

@media (max-width: 1100px) {
    .kontakt-grid {
        grid-template-columns: repeat(2, 1fr);   /* 3 Spalten auf Tablet */
    }
    .kontakt-card {
        max-width: 260px;
        padding: 35px 15px;
    }
}

@media (max-width: 800px) {
    .kontakt-grid {
        grid-template-columns: repeat(2, 1fr);   /* 2 Spalten auf kleinem Tablet */
        gap: 40px;
        padding: 0 20px;
    }
}

@media (max-width: 550px) {
    .kontakt-grid {
        grid-template-columns: 1fr;              /* 1 Spalte auf Mobile */
        gap: 50px;
        padding: 0 15px;
    }
    
    .kontakt-img {
        width: 160px;
        height: 160px;
    }
    
    .kontakt-name {
        font-size: 1.8rem;
    }
}

/* Footer */
.site-footer {
    background: white;                 
    color: black;
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 20px;
    box-shadow: 0 0 10px grey;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    align-items: center;
}

.footer-logo img {
    height: 100px;
}

.footer-links h4,
.footer-social h4,
.footer-contact h4 {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: red;
}

.social-icons {
    margin-top: 10px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icons a {
    color: black;
    transition: all 0.3s ease;
}

.social-icons ion-icon {
    font-size: 40px;
}

.social-icons a:hover ion-icon {
    transform: scale(1.2);
}

.social-icons a:nth-child(1):hover ion-icon { color: #E4405F; } /* Instagram */
.social-icons a:nth-child(2):hover ion-icon { color: #1877F2; } /* Facebook */

.footer-contact p {
    line-height: 1.8;
    font-size: 1.1rem;
}

.footer-contact a {
    color: black;
}

.footer-contact a:hover {
    color: red;
}

.footer-bottom {
    text-align: center;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 30px;
    }
}

@media (max-width: 700px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    .social-icons {
        justify-content: center;
    }
}






