
/*
Theme Name: HopeNails
Author: HopeNails
Description: Elegantes HopeNails Theme mit Banner, angepasster Navigation & Social Footer
Version: 1.5
License: GPL v2 or later
Text Domain: hopenails
*/

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(180deg, #fff6f8 0%, #f4cfd7 100%);
    color: #6b4a4a;
}

.hero-banner {
    width: 100%;
    height: 70vh;
    background: url('assets/banner.jpg') center / cover no-repeat;
}

/* Navigation */
.main-nav {
    background: linear-gradient(180deg, rgba(255,246,248,0.95), rgba(244,207,215,0.95));
    padding: 18px 0;
    border-bottom: 1px solid rgba(184,137,148,0.25);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #8a5c66;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 15px;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #b88994;
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Content */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #fbe9ee 0%, #f3c3cd 100%);
    padding: 50px 0 40px;
    text-align: center;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-icons i {
    font-size: 34px;
    color: #b88994;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-icons i:hover {
    color: #8a5c66;
    transform: translateY(-4px);
}
