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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #0d0d0d;
    color: #e8e8e8;
    line-height: 1.6;
}

/* Navigation minimaliste */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(13, 13, 13);
    padding: 20px 40px;
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;
}

.nav-container:after {
    content: "";
    display: table;
    clear: both;
}

.logo {
    font-size: 1.2rem;
    font-weight: 300;
    color: #df2410;
    float: left;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-links {
    float: right;
}

.nav-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 35px;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4a574;
}

.mobile-menu-btn {
    display: none;
    float: right;
    background: none;
    border: none;
    color: #d4a574;
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: 300;
}

/* Hero fullscreen */
.hero {
    height: 100vh;
    position: relative;
    display: table;
    width: 100%;
    background: #0d0d0d;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"%3E%3Crect fill="%230d0d0d" width="1200" height="800"/%3E%3Ctext x="600" y="400" text-anchor="middle" font-size="200" fill="%231a1a1a" font-family="Georgia"%3E✒️%3C/text%3E%3C/svg%3E') center/cover;
}

.hero-content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.hero-name {
    font-size: 5rem;
    font-weight: 200;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 10px;
    text-transform: uppercase;
    -webkit-animation: fadeInUp 1s ease-out;
    animation: fadeInUp 1s ease-out;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

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

.hero-tagline {
    font-size: 1.1rem;
    color: #d4a574;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    -webkit-animation: fadeInUp 1s ease-out 0.3s both;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    margin-left: -10px;
    font-size: 2rem;
    color: #555;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
    0%, 100% { -webkit-transform: translateY(0); }
    50% { -webkit-transform: translateY(10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

#livres {
    padding-top: 25px;
    text-align: center;
}

.books-showcase {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.book-item {
    display: table;
    width: 100%;
    margin-bottom: 80px;
    background: #2b2b2b;
    padding: 50px;
    -webkit-box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.book-item:after {
    content: "";
    display: table;
    clear: both;
}

.book-cover-container {
    width: 35%;
    float: left;
    padding-right: 50px;
}

.book-cover-img {
    width: 100%;
    height: auto;
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
}

.book-cover-img:hover {
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.book-details {
    width: 65%;
    float: left;
    text-align: left;
}

.book-number {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.book-title-main {
    font-size: 2.5rem;
    color: #d63909;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.book-meta {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-style: italic;
}

.book-description {
    font-family: Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin-bottom: 25px;
}

.book-status {
    display: inline-block;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.book-status img {
    width:25px;
    height:auto;
    vertical-align: middle;
}

.book-status.available {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #2e7d32;
    transition: ease-in-out 0.3s;
}

.book-status.available:hover {
    background: #2e7d32;
    color: #e8f5e9;
    border: 2px solid #e8f5e9;
}

.book-status.upcoming {
    background: #fff3e0;
    color: #e65100;
    border: 2px solid #e65100;
}

/* Livre à venir */
.book-item-upcoming {
    opacity: 0.9;
}

.upcoming-cover {
    background: #e8e0d5;
    padding: 60px 30px;
    text-align: center;
    min-height: 450px;
    display: table;
}

.upcoming-placeholder {
    display: table-cell;
    vertical-align: middle;
}

.upcoming-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    color: #d0c4b0;
}

.upcoming-text {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Full Width */
.about-fullwidth {
    display: table;
    width: 100%;
}

.about-image-side {
    width: 50%;
    float: left;
    height: 700px;
    background: none;
    position: relative;
    padding-top:100px;
}

.about-photo {
    width: 100%;
    height: 100%;
    display: table;
    text-align: center;
}

.about-photo-icon {
    display: table-cell;
    vertical-align: middle;
    font-size: 10rem;
    color: #2a2a2a;
}

.about-photo-icon img {
    width: 450px;
    height:auto;
    border:#d4a574 5px solid;
}

.about-content-side {
    width: 50%;
    float: left;
    padding: 100px 80px;
    background: #0d0d0d;
}

.about-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4a574;
    margin-bottom: 30px;
    font-weight: 300;
}

.about-title {
    font-size: 3rem;
    font-weight: 200;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.about-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #a0a0a0;
    margin-bottom: 25px;
    font-weight: 300;
}

.about-signature {
    margin: 50px auto;
    font-family: 'Brush Script MT', cursive;
    font-size: 2.5rem;
    color: #d4a574;
    text-align: center;
}

/* Stats minimal */
.stats-section {
    background: #0a0a0a;
    padding: 80px 40px;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.stats-grid:after {
    content: "";
    display: table;
    clear: both;
}

.stat-item {
    width: 33.33%;
    float: left;
    padding: 40px;
}

.stat-number {
    font-size: 4rem;
    color: #d4a574;
    font-weight: 200;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Contact minimal */
.contact-section {
    max-width: 700px;
    margin: 80px auto;
    background: #000000;
    padding: 60px 50px;
    text-align: center;
    -webkit-box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #a12620;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-grid:after {
    content: "";
    display: table;
    clear: both;
}

.contact-item {
    width: 100%;
    float: left;
    margin-right: 4%;
    padding: 30px;
    border: 2px solid #dbb781;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.contact-item:nth-child(2n) {
    margin-right: 0;
}

.contact-item:hover {
    border-color: #2c2c2c;
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-label {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.1rem;
    color: #c8c8c8;
}

.contact-value a {
    color: #c8c8c8;
    text-decoration: none;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: #666;
}

.contact-item-social {
    width: 100% !important;
    margin-right: 0 !important;
}

.social-links-grid {
    display: table;
    width: 100%;
    margin-top: 20px;
}

.social-links-grid:after {
    content: "";
    display: table;
    clear: both;
}

.social-link {
    width: 48%;
    float: left;
    margin-right: 4%;
    margin-bottom: 20px;
    padding: 20px;
    background: #0f0f0f;
    border: 2px solid #dabb8c;
    text-decoration: none;
    color: #2c2c2c;
    display: block;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.social-link:nth-child(2n) {
    margin-right: 0;
}

.social-link:hover {
    border-color: #2c2c2c;
    background: #242424;
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.social-icon {
    width: 32px;
    height: 32px;
    display: block;
    margin: 0 auto 10px;
    color: #c8c8c8;
}

.social-link:hover .social-icon {
    color: #000;
}

.social-link span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #c8c8c8;
}

.social-link:hover span {
    color: #000;
}

/* Footer minimal */
footer {
    background: #0a0a0a;
    color: #666;
    padding: 40px;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 300;
    border-top: 1px solid #2a2a2a;
}

footer p {
    margin-bottom: 10px;
}

/* Responsive */
@media only screen and (max-width: 1024px) {
    .portfolio-item {
        width: 100%;
        float: none;
    }

    .about-image-side,
    .about-content-side {
        width: 100%;
        float: none;
    }

    .about-image-side {
        height: 500px;
    }

    .about-content-side {
        padding: 60px 40px;
    }

    .stat-item {
        width: 100%;
        float: none;
    }
}

@media only screen and (max-width: 767px) {
    nav {
        padding: 15px 20px;
    }

    .about-photo-icon img {
        width:350px;
        margin-top: 0;
    }

    .about-image-side {
        padding-top:0;
    }

    .book-item {
        padding: 30px 20px;
    }
    
    .book-cover-container,
    .book-details {
        width: 100%;
        float: none;
        padding-right: 0;
    }

    .book-status {
        padding: 10px 15px;
    }
    
    .book-cover-container {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .book-cover-img {
        max-width: 300px;
    }
    
    .book-title-main {
        font-size: 2rem;
    }

    .salon-item {
        width: 100%;
        margin-right: 0;
    }   
    
    .upcoming-cover {
        min-height: 350px;
        padding: 40px 20px;
    }
    
    .upcoming-icon {
        font-size: 4rem;
    }

    .nav-links {
        display: none;
        float: none;
        width: 100%;
        margin-top: 0px;
        padding-top: 20px;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links a {
        display: block;
        margin: 15px 0;
        padding: 15px;
        background: #1a1a1a;
        text-align: center;
        border: 1px solid #2a2a2a;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-name {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .portfolio-image {
        height: 400px;
    }

    .portfolio-icon {
        font-size: 5rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 0.95rem;
        text-align: justify;
    }

    .about-content-side {
        padding: 60px 30px;
    }

    .contact-item {
        width: 100%;
        float: none;
        margin-right: 0;
    }

    .contact-value a {
        font-size:small;
    }

    .social-link {
        width: 100%;
        float: none;
        margin-right: 0;
    }

    .contact-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .contact-section,
    .stats-section {
        padding: 60px 20px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-name {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .logo {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .portfolio-image {
        height: 300px;
    }

    .about-content-side {
        padding: 40px 20px;
    }

    .contact-item {
        padding: 30px;
    }
}