body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
    min-height: 100vh; /* Stellt sicher, dass der Inhalt mindestens die Höhe des Viewports hat */
    padding-bottom: 60px; /* Platz für den Footer, Höhe des Footers schätzen */
}

header {
    background-color: #4CAF50;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between; /* Logo links, Navigation rechts */
    padding: 20px 30px; /* Vergrößerter Header für Desktop-Ansicht */
    position: relative;
}

.logo {
    
    position: relative; /* Ermöglicht das Verschieben des Logos bei Hover */
}

.logo-image {
    width: 150px; /* Anfangsgröße des Logos */
    height: auto;
    transition: transform 0.3s ease;
    position: relative; /* Ermöglicht Verschiebung */
    transform-origin: top left; /* Startpunkt der Transformation auf die obere linke Ecke setzen */
}


.logo-image:hover {
    transform: scale(2.25); /* Verdoppelt die Größe bei Hover */
   
}


nav {
    
    text-align: right; /* Stellt sicher, dass die Navigationselemente rechts ausgerichtet sind */
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 15px;
}

.nav-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
    margin-right: 15px;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-menu li a:hover {
    background-color: #45a049;
}

main {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="password"],
form input[type="email"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

form button {
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #45a049;
}

.meditation-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.meditation-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px;
    padding: 15px;
    width: calc(33% - 20px);
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
        text-align: center; /* Zentriert den gesamten Inhalt innerhalb des Div-Elements */

}

.meditation-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.meditation-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px; /* Schätze die Höhe des Footers oder benutze die tatsächliche Höhe */
}
.foot-left a {
   color: orange;
   margin-left: 20px;

}


        /* Stil für das Inhaltsverzeichnis */
        #inhaltsverzeichnis {
            background-color: #f4f4f4;
            padding: 10px;
            margin-bottom: 20px;
        }

        #inhaltsverzeichnis ul {
            list-style-type: none;
            padding: 0;
        }

        #inhaltsverzeichnis li {
            margin-bottom: 5px;
        }

        #inhaltsverzeichnis a {
            text-decoration: none;
            color: #007BFF;
        }

        #inhaltsverzeichnis a:hover {
            text-decoration: underline;
        }

        /* Stil für die Abschnitte */
        section {
            margin-bottom: 20px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
   



/* ---------------------------------- ACCOUNT-Seite ----------------------------------------------------------------*/

.account-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.account-info {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.account-info h2 {
    margin-top: 0;
    color: #4CAF50;
}

.account-info p {
    font-size: 1.1em;
    color: #333;
}

.account-actions {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.account-actions h2 {
    margin-top: 0;
    color: #4CAF50;
}

.account-actions ul {
    list-style-type: none;
    padding: 0;
}

.account-actions li {
    margin-bottom: 10px;
}

.action-button {
    display: block;
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.action-button:hover {
    background-color: #45a049;
}




/* ---------------------------------- ///ACCOUNT-Seite ------------------------------------------------------------ */



/* ---------------------------------- ADMIN-Seiten------------------------------------------------------------ */



.admin-container {
    padding: 20px;
    margin: 20px auto;
    max-width: 95%; /* Angepasst für mobile Geräte */
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Tabellenstil für die Admin-Seiten */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th, .admin-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.admin-table th {
    background-color: #4CAF50;
    color: white;
}

.admin-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.admin-table tr:hover {
    background-color: #ddd;
}


.admin-options {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.admin-options li {
    margin-bottom: 10px;
}

.admin-options a {
    text-decoration: none;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2em;
}

.admin-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.admin-button:hover {
    background-color: #45a049;
}





/* ---------------------------------- ///ADMIN-Seite ------------------------------------------------------------ */



/* ---------------------------------- BUTTONS------------------------------------------------------------ */


.buttonfrage {


font-size: 20px;
    padding: 10px 20px;
    background-color: green;
    color: white;
    font-weight: 750;
    border-radius: 15px;
    transition: background-color 0.3s ease; /* Hinzufügen einer weichen Übergangsanimation */
}

.buttonfrage:hover {
font-size: 24px;
      padding: 10px 20px;
    background-color: black;
    color: white;
    font-weight: 750;
    border-radius: 15px;
    border: 2px solid green;
}

.checkout-btn {
    display: inline-block; /* Sorgt dafür, dass der Link als Block behandelt wird, sodass er zentriert wird */
    margin-top: 20px; /* Fügt Abstand über dem Link hinzu */
    padding: 10px 20px; /* Fügt Innenabstand hinzu */
    background-color: #007bff; /* Beispiel-Hintergrundfarbe */
    color: #fff; /* Textfarbe */
    text-decoration: none; /* Entfernt Unterstreichung */
    border-radius: 5px; /* Abgerundete Ecken */
}

.checkout-btn:hover {
	
	 background-color: black; /* Beispiel-Hintergrundfarbe */
    color: white; /* Textfarbe */
	border-color: #007bff;
}




/* Allgemeine Button-Stile für Konsistenz */
.button-bereits-gekauft,
.button-in-den-warenkorb {
    display: inline-block;
    margin: 10px auto;
    padding: 10px 20px; /* Gleiches Padding für beide Buttons */
    width: 190px; /* Feste Breite für beide Buttons */
    text-align: center;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

/* Spezifische Stile für "Bereits gekauft"-Button */
.button-bereits-gekauft {
    background-color: orange;
    color: white;
    cursor: not-allowed; /* Zeigt an, dass der Button nicht klickbar ist */
}

/* Spezifische Stile für "In den Warenkorb"-Button */
.button-in-den-warenkorb {
    background-color: green;
    color: white;
}

.button-in-den-warenkorb:hover {
    background-color: darkgreen;
}


/* Button-Stile für Artikel, die bereits im Warenkorb sind */
.button-im-warenkorb {
    display: inline-block;
    margin: 10px auto;
    background-color: #e4ee11;
    color: black;
    padding: 10px 20px;
    width: 190px; /* Feste Breite, um die Konsistenz mit anderen Buttons zu gewährleisten */
    text-align: center;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: not-allowed; /* Zeigt an, dass der Button nicht klickbar ist */
}

.button-im-warenkorb:hover {
    background-color: gold; /* Optionaler Hover-Effekt für visuelles Feedback */
}






/* ---------------------------------- Warenkorb///------------------------------------------------------------ */



.cart-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cart-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cart-item-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.cart-item-title {
    font-weight: bold;
    color: #333;
}

.cart-item-price {
    font-weight: bold;
    color: #4CAF50;
}
.cart-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 15px; /* Abstand zwischen den Buttons */
}

.cart-button {
    flex-grow: 1; /* Macht die Buttons gleich groß */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    text-align: center; /* Zentriert den Text in den Buttons */
}

.cancel-button {
     width: 220px;
    background-color: #f44336;
    color: #fff;
}

.cancel-button:hover {
    background-color: #e53935;
}


.paypal-button {
    width: 220px;
    background-color: #3b7bbf;
    color: #fff;
}

.paypal-button:hover {
    background-color: #336699;
}

.creditcard-button {
    width: 220px;
    background-color: #4CAF50;
    color: #fff;
}

.creditcard-button:hover {
    background-color: #45a049;
}



/* ---------------------------------- ///WARENKORB///------------------------------------------------------------ */










/* ---------------------------------- Meine Switches///------------------------------------------------------------ */
.library-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.library-title {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.library-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.library-item {
    width: 180px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.meditation-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.meditation-title {
    font-size: 1.1em;
    color: #4CAF50;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.meditation-description {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px;
}

.meditation-selector {
    margin-bottom: 20px;
}

.meditation-dropdown {
    padding: 10px;
    font-size: 1.2em;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 400px;
}

.audio-player {
    margin-top: 20px;
}

audio {
    width: 100%;
    outline: none;
}






/* ---------------------------------- ///Meine Switches///------------------------------------------------------------ */










/* ---------------------------------- ///BUTTONS///------------------------------------------------------------ */


.cart-count {
    font-weight:650;
    color: white; /* Farbe der Artikelanzahl ändern, z.B. auf rot */
    font-size: 0.9em; /* Kleinere Schriftgröße, um die hochgestellte Zahl proportional darzustellen */
    vertical-align: super; /* Sorgt dafür, dass die Zahl hochgestellt wird */
}




.shop-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}



.shop-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px;
    padding: 15px;
    width: calc(33% - 20px);
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Bild in normaler Größe */
.shop-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease; /* Animation hinzufügen */
    transform-origin: center center; /* Ursprung der Skalierung */
}

/* Vergrößerungsklasse - Standardmäßig */
.shop-item img.enlarged {
    transform: scale(1.75); /* Standardmäßige Vergrößerung */
    position: relative; /* Keine absolute Positionierung */
    z-index: 10;
}


/* Anpassung für Desktop-Ansicht */
@media only screen and (min-width: 769px) {
    .shop-item img.enlarged {
        transform: scale(2); /* Weniger Vergrößerung in der Desktop-Ansicht */
        position: relative; /* Normale Positionierung */
        z-index: 10;
        margin: 0 auto; /* Zentrierung falls nötig */
    }
}




/* ---------------------------------------------MOBILE---------------------------------------------------------------------------   */


@media only screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
	
	

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: black;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        display: block;
        margin: 0;
    }

    .nav-menu li a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid #45a049;
    }

    footer {
        padding: 10px 0;
        font-size: 14px;
    }

    .meditation-item {
        width: calc(50% - 20px);
    }
	
	.foot-left a {
   color: orange;
   margin-left: 20px;

}


.shop-item {
        width: 100%; /* Volle Breite auf mobilen Geräten */
        margin: 10px 0; /* Abstand zwischen den Elementen */
    }
    
    .shop-item img {
        width: 100%; /* Bild passt sich der Breite des Containers an */
        height: auto; /* Verhältnis beibehalten */
    }
    
    .shop-lis {
        flex-direction: column; /* Anordnung der Elemente vertikal */
        align-items: center; /* Zentriere die Elemente */
    }
    
    .shop-list h2 {
        word-wrap: break-word; /* Zeilenumbruch für lange Titel */
        margin: 0 auto; /* Zentriert den Titel */
        max-width: 90%; /* Begrenzte Breite, um Überlaufen zu verhindern */
    }

  .cart-actions {
        flex-direction: column; /* Buttons untereinander anordnen */
        gap: 10px; /* Etwas Abstand zwischen den Buttons */
    }

    .cart-button {
        width: 100%; /* Volle Breite auf mobilen Geräten */
        margin-bottom: 10px; /* Abstand zwischen den Buttons */
    }



}

@media only screen and (max-width: 480px) {
    .meditation-item {
        width: 100%;
    }

    nav ul li {
        display: block;
        margin: 5px 0;
    }

    footer {
        padding: 8px 0;
        font-size: 12px;
    }
	
	.foot-left a {
   color: orange;
   margin-left: 20px;

}
}
