/* RESET I OSNOVNI STILOVI */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #E8E8E8;
    background-color: #713E5A;
    opacity: 0;
    animation: fadeIn 0.8s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* INTER FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ANIMACIJE */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInSlow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* HEADER SA LOGOTIPOM */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo img {
    max-height: 40px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #E8E8E8;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.site-header {
    padding: 8px 0;
    border-bottom: 2px solid #DE8F6E;
    background-color: rgba(124, 144, 160, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

body.scrolled .site-header {
    background-color: rgba(124, 144, 160, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #E8E8E8;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #DE8F6E;
    transition: width 0.3s ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: #DE8F6E;
}

/* TIPOGRAFIJA */
h1, h2, h3 {
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: #B8D94C;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: #B8D94C;
    font-weight: 500;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #DE8F6E;
}

h2.centered-title {
    display: block;
    text-align: center;
}

h2.centered-title:after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #E8E8E8;
    font-weight: 300;
    line-height: 1.7;
}

/* HERO SEKCIJA (INDEX) */
.hero {
    position: relative;
    padding: 150px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #B8D94C;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #DE8F6E;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* DUGME */
.btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: transparent;
    color: #E8E8E8;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1.5px;
    border: 2px solid #DE8F6E;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.btn-bold {
    font-weight: 700;
    letter-spacing: 2px;
}

.btn:hover {
    background-color: #DE8F6E;
    color: #713E5A;
    border-color: #DE8F6E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 143, 110, 0.3);
}

.btn:active {
    transform: translateY(0);
}

/* SEKCIJA SA KARAKTERISTIKAMA (INDEX) - IZMENJENO */
.features {
    padding: 80px 0;
    background-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: stretch;
}

.feature-card {
    padding: 40px 25px 35px 25px;
    background-color: rgba(124, 144, 160, 0.1);
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(222, 143, 110, 0.3);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    min-height: 420px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: #DE8F6E;
    background-color: rgba(124, 144, 160, 0.15);
}

.feature-icon {
    text-align: center;
    margin-bottom: 25px;
}

.feature-icon img {
    max-width: 90px;
    height: auto;
    display: inline-block;
}

.feature-card h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #DE8F6E;
    position: relative;
    padding-bottom: 15px;
    width: 100%;
    font-weight: 500;
}

.feature-card h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #DE8F6E;
    transition: width 0.3s ease;
}

.feature-card:hover h2:after {
    width: 100px;
}

.feature-card p {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #E8E8E8;
    margin-bottom: 0;
    max-width: 280px;
}

/* SEKCIJA PORUKA (INDEX) */
.message-section {
    padding: 100px 0;
    background-color: rgba(113, 62, 90, 0.8);
    backdrop-filter: blur(3px);
}

.message-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.message-text {
    text-align: left;
}

.message-text h2 {
    color: #B8D94C;
    font-size: 2.5rem;
    margin-bottom: 30px;
    display: block;
}

.message-text h2:after {
    background-color: #DE8F6E;
    left: 0;
    transform: none;
    width: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.message-paragraph {
    font-size: 1.1rem;
    color: #E8E8E8;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.message-image {
    text-align: center;
}

.message-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.book-credit {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #DE8F6E;
    text-align: left;
}

.book-credit p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #E8E8E8;
}

.book-credit strong {
    color: #DE8F6E;
    font-weight: 600;
}

/* ABOUT SEKCIJA (INDEX) */
.about-section {
    padding: 100px 0;
    background-color: transparent;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    color: #B8D94C;
    font-size: 2.5rem;
    margin-bottom: 50px;
    display: block;
}

.about-text {
    text-align: left;
    margin-bottom: 50px;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.15rem;
    color: #E8E8E8;
    line-height: 1.8;
}

.about-button {
    text-align: center;
    margin-top: 20px;
}

.about-button .btn {
    padding: 14px 60px;
    font-size: 1.1rem;
}

/* FOOTER */
.site-footer {
    padding: 16px 0;
    background-color: rgba(124, 144, 160, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #E8E8E8;
    border-top: 2px solid #DE8F6E;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
}

.footer-nav a {
    color: #E8E8E8;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
}

.footer-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #DE8F6E;
    transition: width 0.3s ease;
}

.footer-nav a:hover:after {
    width: 100%;
}

.footer-nav a:hover {
    color: #DE8F6E;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    display: inline-block;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #E8E8E8;
    font-weight: 300;
}

/* ============================================ */
/* HERO SEKCIJA - NOVA (ZA INDEX) */
/* ============================================ */

.book-hero {
    position: relative;
    padding: 60px 0 80px 0;
    background-size: cover;
    background-position: center;
    min-height: 700px;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.book-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.book-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-heading {
    text-align: center;
    margin-bottom: 20px;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #B8D94C;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.hero-subheading {
    text-align: center;
    margin-bottom: 50px;
}

.hero-subtitle-text {
    font-size: 1.2rem;
    color: #DE8F6E;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.book-cover {
    flex: 0 0 350px;
    height: 500px;
    background-color: rgba(124, 144, 160, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #DE8F6E;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.book-cover img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.book-cover img:hover {
    transform: scale(1.02);
}

.book-details-box {
    flex: 0 0 500px;
    height: 500px;
    background-color: rgba(124, 144, 160, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #DE8F6E;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.book-detail-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(222, 143, 110, 0.3);
}

.book-detail-item:first-of-type {
    margin-top: 0;
}

.book-detail-item:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.detail-label {
    width: 110px;
    font-weight: 600;
    color: #DE8F6E;
    font-size: 1rem;
    letter-spacing: 1px;
}

.detail-value {
    flex: 1;
    font-weight: 400;
    color: #E8E8E8;
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 15px;
}

.category-line {
    display: block;
    line-height: 1.4;
}

.book-buy-button {
    margin-top: auto;
    text-align: center;
    padding-top: 10px;
}

.btn-book {
    padding: 8px 35px;
    font-size: 0.95rem;
    background-color: transparent;
    color: #E8E8E8;
    border: 2px solid #DE8F6E;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-block;
}

.btn-book:hover {
    background-color: #DE8F6E;
    color: #713E5A;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(222, 143, 110, 0.3);
}

/* ============================================ */
/* ABOUT BOOK SECTION - SA BOXEVIMA (IZMENJENO) */
/* ============================================ */

.about-book-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}

.about-book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-book-section h2 {
    color: #B8D94C;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-book-box {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 30px 40px;
    background-color: rgba(124, 144, 160, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(222, 143, 110, 0.3);
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-book-box:hover {
    border-color: #DE8F6E;
    background-color: rgba(124, 144, 160, 0.9);
}

.about-book-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2C3E2E;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-book-box p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    font-size: 1.3rem;
    color: #DE8F6E;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    border-top: 1px solid rgba(222, 143, 110, 0.3);
    border-bottom: 1px solid rgba(222, 143, 110, 0.3);
    padding: 20px 0;
    margin-top: 20px;
}

.special-box {
    background-color: rgba(113, 62, 90, 0.85);
    border-left: 4px solid #DE8F6E;
}

.box-intro {
    font-size: 1.2rem;
    color: #DE8F6E;
    font-weight: 500;
    margin-bottom: 15px;
}

.final-box {
    border: 2px solid #DE8F6E;
    background-color: rgba(124, 144, 160, 0.9);
}

.closing-text {
    font-size: 1.15rem;
    font-style: italic;
    border-top: 1px solid rgba(222, 143, 110, 0.3);
    padding-top: 20px;
    margin-top: 20px;
}

.final-line {
    font-size: 1.4rem;
    color: #DE8F6E;
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
}

/* ============================================ */
/* AUTHOR SECTION - SA SLIKOM I TEKSTOM */
/* ============================================ */

.author-section {
    padding: 80px 0;
    background-color: transparent;
    position: relative;
}

.author-section h2 {
    color: #B8D94C;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.author-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.author-image {
    flex: 0 0 280px;
    position: relative;
}

.author-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(222, 143, 110, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.author-image img:hover {
    transform: scale(1.02);
    border-color: #DE8F6E;
}

.author-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.author-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E8E8E8;
    font-weight: 300;
    margin: 0;
}

.author-paragraph:first-of-type {
    margin-top: 0;
}

.author-paragraph:last-of-type {
    margin-bottom: 0;
}

/* ============================================ */
/* SECTION DIVIDER - TANKA LINIJA (VIDLJIVIJA) */
/* ============================================ */

.section-divider {
    width: 80%;
    max-width: 600px;
    height: 0;
    border-top: 2px solid #DE8F6E;
    margin: 30px auto 40px;
    opacity: 1;
}

/* ============================================ */
/* TALK TO US SECTION */
/* ============================================ */

.talk-section {
    padding: 60px 0 100px;
    background-color: transparent;
}

.talk-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(124, 144, 160, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(222, 143, 110, 0.3);
    border-radius: 30px;
    padding: 50px 60px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.talk-box:hover {
    border-color: #DE8F6E;
    box-shadow: 0 15px 40px rgba(222, 143, 110, 0.15);
    background-color: rgba(124, 144, 160, 0.12);
}

.talk-box h2 {
    color: #B8D94C;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.talk-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.talk-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #E8E8E8;
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 600px;
}

.btn-talk {
    padding: 14px 50px;
    font-size: 1.1rem;
    background-color: transparent;
    color: #E8E8E8;
    border: 2px solid #DE8F6E;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-block;
}

.btn-talk:hover {
    background-color: #DE8F6E;
    color: #713E5A;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(222, 143, 110, 0.3);
}

/* ============================================ */
/* HOVER EFEKTI */
/* ============================================ */

.book-cover img:hover,
.author-image img:hover,
.btn:hover,
.btn-book:hover,
.btn-talk:hover {
    transition: all 0.3s ease;
}

/* ============================================ */
/* CONTACT PAGE STYLES */
/* ============================================ */

.contact-hero {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.contact-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.contact-hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #B8D94C;
    text-shadow: 0 2px 15px rgba(0,0,0,0.7);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.contact-hero-subtitle {
    font-size: 1.6rem;
    color: #DE8F6E;
    margin-bottom: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: 300;
}

.contact-section {
    padding: 60px 0 100px;
    background-color: transparent;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content h2 {
    color: #B8D94C;
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
}

.contact-content h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.contact-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #E8E8E8;
    font-weight: 300;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 0 15px;
}

.contact-success {
    background-color: rgba(242, 243, 174, 0.15);
    border: 1px solid #F2F3AE;
    color: #E8E8E8;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
}

.contact-errors {
    background-color: rgba(222, 143, 110, 0.15);
    border: 1px solid #DE8F6E;
    color: #E8E8E8;
    padding: 20px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.contact-errors ul {
    margin: 0;
    padding-left: 20px;
}

.contact-errors li {
    color: #E8E8E8;
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-form-container {
    background-color: rgba(124, 144, 160, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(222, 143, 110, 0.3);
    border-radius: 30px;
    padding: 40px 50px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container:hover {
    border-color: #DE8F6E;
    box-shadow: 0 15px 40px rgba(222, 143, 110, 0.15);
}

.contact-form {
    width: 100%;
}

.form-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.form-label {
    width: 100px;
    font-weight: 500;
    color: #DE8F6E;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding-top: 12px;
}

.form-input,
.form-textarea {
    flex: 1;
    background-color: rgba(124, 144, 160, 0.1);
    border: 1px solid rgba(222, 143, 110, 0.3);
    border-radius: 16px;
    padding: 12px 18px;
    color: #E8E8E8;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #DE8F6E;
    background-color: rgba(124, 144, 160, 0.15);
    box-shadow: 0 0 0 3px rgba(222, 143, 110, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-button {
    text-align: center;
    margin-top: 30px;
}

.btn-contact {
    padding: 14px 50px;
    font-size: 1.1rem;
    background-color: transparent;
    color: #E8E8E8;
    border: 2px solid #DE8F6E;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-block;
}

.btn-contact:hover {
    background-color: #DE8F6E;
    color: #713E5A;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(222, 143, 110, 0.3);
}

/* ============================================ */
/* RESPONZIVNOST ZA MOBILNE UREDJAJE */
/* ============================================ */

@media (max-width: 1200px) {
    .hero-content-wrapper {
        gap: 40px;
    }
    
    .book-cover {
        flex: 0 0 300px;
        height: 450px;
    }
    
    .book-details-box {
        flex: 0 0 450px;
        height: 450px;
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .book-cover {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        height: 400px;
    }
    
    .book-details-box {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        height: auto;
        min-height: 450px;
    }
    
    .book-buy-button {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        max-width: 350px;
        min-height: 420px;
        padding: 40px 25px 35px 25px;
    }
    
    .feature-icon img {
        max-width: 90px;
    }
    
    .feature-card h2 {
        font-size: 1.4rem;
    }
    
    .message-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .message-text {
        text-align: center;
    }
    
    .book-credit {
        text-align: center;
    }
    
    .message-image {
        order: -1;
    }
    
    .message-image img {
        max-width: 80%;
    }
    
    .author-content {
        gap: 40px;
    }
    
    .author-image {
        flex: 0 0 240px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #713E5A;
        border-bottom: 2px solid #DE8F6E;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 99;
    }
    
    .main-nav.active {
        max-height: 300px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .main-nav li {
        width: 100%;
        text-align: center;
    }
    
    .main-nav a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        color: #E8E8E8;
        border-bottom: 1px solid rgba(222, 143, 110, 0.2);
    }
    
    .main-nav li:last-child a {
        border-bottom: none;
    }
    
    .main-nav a:after {
        display: none;
    }
    
    .site-header {
        background-color: #713E5A;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    body.scrolled .site-header {
        background-color: #713E5A;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    body {
        background-color: #5A2E48;
    }
    
    .feature-card {
        background-color: rgba(124, 144, 160, 0.2);
        border: 1px solid rgba(222, 143, 110, 0.5);
    }
    
    .about-book-box {
        background-color: rgba(124, 144, 160, 0.85);
    }
    
    .talk-box {
        background-color: rgba(124, 144, 160, 0.18);
    }
    
    .contact-form-container {
        background-color: rgba(124, 144, 160, 0.18);
    }
    
    .message-section {
        background-color: rgba(113, 62, 90, 0.95);
    }
    
    .special-box {
        background-color: rgba(113, 62, 90, 0.85);
    }
    
    .book-details-box,
    .book-cover {
        background-color: rgba(124, 144, 160, 0.2);
    }
    
    .footer-nav a {
        color: #DE8F6E;
    }
    
    .footer-nav a:hover {
        color: #E8E8E8;
    }
    
    .footer-nav ul {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-main-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-text {
        font-size: 1rem;
    }
    
    .hero-subheading {
        margin-bottom: 30px;
    }
    
    .book-cover {
        max-width: 280px;
        height: 380px;
        padding: 20px;
    }
    
    .book-details-box {
        padding: 25px;
        min-height: 400px;
    }
    
    .book-detail-item {
        margin-bottom: 12px;
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-label {
        width: 100%;
    }
    
    .detail-value {
        padding-left: 0;
    }
    
    .btn-book {
        padding: 7px 30px;
        font-size: 0.9rem;
    }
    
    .about-book-section {
        padding: 60px 0;
    }
    
    .about-book-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .about-book-box {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .about-book-box p {
        font-size: 1rem;
    }
    
    .highlight-text {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    .final-line {
        font-size: 1.2rem;
    }
    
    .author-section {
        padding: 60px 0;
    }
    
    .author-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .author-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .author-image {
        flex: 0 0 auto;
        max-width: 280px;
        width: 100%;
    }
    
    .author-text {
        width: 100%;
        text-align: left;
    }
    
    .author-paragraph {
        font-size: 1rem;
    }
    
    .talk-box {
        padding: 40px 30px;
    }
    
    .talk-box h2 {
        font-size: 2rem;
    }
    
    .talk-text {
        font-size: 1.1rem;
    }
    
    .btn-talk {
        padding: 12px 40px;
        font-size: 1rem;
    }
    
    .section-divider {
        width: 90%;
        margin: 30px auto 40px;
    }
    
    .header-container {
        flex-direction: row;
        gap: 10px;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        max-width: 450px;
        min-height: auto;
        padding: 40px 30px 35px 30px;
    }
    
    .hero {
        padding: 100px 0;
        min-height: 450px;
        background-attachment: scroll;
    }
    
    .message-section {
        padding: 70px 0;
    }
    
    .message-text h2 {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 70px 0;
    }
    
    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .contact-hero {
        padding: 70px 0;
        min-height: 300px;
    }
    
    .contact-hero h1 {
        font-size: 3rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.4rem;
    }
    
    .contact-section {
        padding: 50px 0 80px;
    }
    
    .contact-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .contact-intro {
        font-size: 1.05rem;
        margin-bottom: 40px;
    }
    
    .contact-form-container {
        padding: 30px 25px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-label {
        width: 100%;
        padding-top: 0;
        padding-bottom: 8px;
    }
    
    .form-input,
    .form-textarea {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 5px 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 10px 30px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .about-button .btn {
        padding: 12px 40px;
    }
    
    .feature-card {
        padding: 35px 20px 30px 20px;
        border-radius: 25px;
    }
    
    .feature-icon img {
        max-width: 80px;
    }
    
    .feature-card h2 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .message-image img {
        max-width: 100%;
    }
    
    .footer-nav ul {
        gap: 15px;
    }
    
    .site-footer {
        padding: 12px 0;
    }
    
    .book-cover {
        max-width: 250px;
        height: 350px;
    }
    
    .book-details-box {
        padding: 20px;
        min-height: 380px;
    }
    
    .author-image {
        max-width: 240px;
    }
    
    .talk-box {
        padding: 30px 20px;
    }
    
    .talk-box h2 {
        font-size: 1.8rem;
    }
    
    .talk-text {
        font-size: 1rem;
    }
    
    .contact-hero {
        padding: 60px 0;
        min-height: 250px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-intro {
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 25px 20px;
        border-radius: 25px;
    }
    
    .btn-contact {
        padding: 12px 40px;
        font-size: 1rem;
    }
}

/* ============================================ */
/* HERO SEKCIJA: LEVO KNJIGA + BOX, DESNO PROMO BOX */
/* ============================================ */

.book-hero {
    position: relative;
    padding: 60px 0 80px 0;
    background-size: cover;
    background-position: center;
    min-height: 650px;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.book-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.book-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
}

.book-cover {
    flex: 0 0 250px;
    height: 350px;
    background-color: rgba(124, 144, 160, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #DE8F6E;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.book-cover img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.book-cover img:hover {
    transform: scale(1.02);
}

.book-details-box {
    flex: 1;
    background-color: rgba(124, 144, 160, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #DE8F6E;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.book-detail-item {
    display: flex;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(222, 143, 110, 0.3);
}

.book-detail-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-label {
    width: 100px;
    font-weight: 600;
    color: #DE8F6E;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.detail-value {
    flex: 1;
    font-weight: 400;
    color: #E8E8E8;
    font-size: 0.85rem;
    line-height: 1.4;
    padding-left: 10px;
}

.category-line {
    display: block;
    line-height: 1.2;
}

.hero-right {
    flex: 1;
    min-width: 300px;
}

.promo-box {
    background-color: rgba(124, 144, 160, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid #DE8F6E;
    border-radius: 30px;
    padding: 35px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(222, 143, 110, 0.2);
    border-color: #DE8F6E;
}

.promo-title {
    font-size: 2rem;
    font-weight: 700;
    color: #B8D94C;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.promo-description {
    font-size: 1rem;
    color: #E8E8E8;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

.sold-count {
    font-size: 1rem;
    color: #DE8F6E;
    font-weight: 500;
    margin-bottom: 25px;
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(222, 143, 110, 0.15);
    border-radius: 30px;
}

.promo-pricing {
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.5rem;
    color: rgba(232, 232, 232, 0.5);
    text-decoration: line-through;
    margin-right: 15px;
}

.new-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #DE8F6E;
}

.save-badge {
    display: inline-block;
    background-color: #DE8F6E;
    color: #713E5A;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 5px 12px;
    border-radius: 30px;
    margin-left: 15px;
}

.btn-promo {
    display: inline-block;
    padding: 14px 50px;
    font-size: 1.2rem;
    background-color: #DE8F6E;
    color: #713E5A;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background-color: #7C90A0;
    color: #713E5A;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(222, 143, 110, 0.4);
}

@media (max-width: 1000px) {
    .book-hero-container {
        flex-direction: column;
    }
    
    .hero-left {
        width: 100%;
        justify-content: center;
    }
    
    .hero-right {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 700px) {
    .hero-left {
        flex-direction: column;
    }
    
    .book-cover {
        flex: 0 0 auto;
        width: 200px;
        height: 280px;
    }
    
    .book-details-box {
        width: 100%;
    }
    
    .promo-title {
        font-size: 1.6rem;
    }
    
    .new-price {
        font-size: 1.8rem;
    }
    
    .btn-promo {
        padding: 12px 40px;
        font-size: 1rem;
    }
}

/* ============================================ */
/* HERO SEKCIJA - LEVI I DESNI BOX ISTE VISINE */
/* ============================================ */

.book-hero {
    position: relative;
    padding: 60px 0 80px 0;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.book-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.book-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 2;
    min-width: 450px;
    display: flex;
}

.book-combined-box {
    display: flex;
    gap: 40px;
    background-color: rgba(124, 144, 160, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #DE8F6E;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 100%;
}

.book-combined-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.book-cover-img {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover-img img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.book-cover-img img:hover {
    transform: scale(1.02);
}

.book-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.book-detail-item {
    display: flex;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(222, 143, 110, 0.2);
}

.book-detail-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-label {
    width: 110px;
    font-weight: 600;
    color: #DE8F6E;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.detail-value {
    flex: 1;
    font-weight: 400;
    color: #E8E8E8;
    font-size: 0.95rem;
    line-height: 1.4;
    padding-left: 15px;
}

.category-line {
    display: block;
    line-height: 1.3;
}

.hero-right {
    flex: 1.2;
    min-width: 320px;
    display: flex;
}

.promo-box {
    background-color: rgba(124, 144, 160, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid #DE8F6E;
    border-radius: 25px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(222, 143, 110, 0.15);
}

.promo-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #B8D94C;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.promo-underline {
    width: 60px;
    height: 2px;
    background-color: #DE8F6E;
    margin: 0 auto 25px auto;
}

.promo-description p {
    font-size: 0.9rem;
    color: #E8E8E8;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 300;
}

.sold-count {
    font-size: 0.9rem;
    color: #DE8F6E;
    font-weight: 500;
    margin-bottom: 25px;
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(222, 143, 110, 0.15);
    border-radius: 30px;
}

.promo-pricing {
    margin-bottom: 15px;
}

.old-price {
    font-size: 1.3rem;
    color: rgba(232, 232, 232, 0.5);
    text-decoration: line-through;
    margin-right: 15px;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    color: #DE8F6E;
}

.promo-save {
    margin-bottom: 25px;
}

.save-badge {
    display: inline-block;
    background-color: rgba(222, 143, 110, 0.2);
    color: #DE8F6E;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 5px 15px;
    border-radius: 30px;
}

.promo-button {
    margin-top: 5px;
}

.btn-promo {
    display: inline-block;
    padding: 12px 45px;
    font-size: 1rem;
    background-color: #DE8F6E;
    color: #713E5A;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.btn-promo:hover {
    background-color: #7C90A0;
    color: #713E5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(222, 143, 110, 0.4);
}

@media (max-width: 1000px) {
    .book-hero-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-left {
        min-width: auto;
        width: 100%;
    }
    
    .hero-right {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 700px) {
    .book-combined-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .book-cover-img {
        flex: 0 0 auto;
        margin-bottom: 20px;
    }
    
    .book-cover-img img {
        max-width: 220px;
    }
    
    .book-details {
        padding-left: 0;
        width: 100%;
    }
    
    .book-detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .detail-value {
        padding-left: 0;
    }
    
    .promo-box {
        padding: 25px 20px;
    }
    
    .promo-title {
        font-size: 1.4rem;
    }
    
    .new-price {
        font-size: 1.6rem;
    }
    
    .btn-promo {
        padding: 10px 35px;
        font-size: 0.9rem;
    }
}

/* UKLANJA SVE LINIJE ISPOD SVIH h2 U PROMO BOX-U */
.promo-box h2::after {
    content: none !important;
    display: none !important;
}
/* ============================================ */
/* POPRAVKE ZA THE HUMMING ANXIETY - DODATO NA KRAJ */
/* ============================================ */

/* 1. BOJA TEKSTA U PLAVIM BOXEVIMA (FEATURE CARDS) */
.feature-card p,
.book-detail-item .detail-value,
.book-credit p,
.author-paragraph,
.talk-text,
.contact-intro,
.form-input,
.form-textarea,
.promo-description p {
    color: #E8E8E8 !important;
}

/* 2. ABOUT BOOK SEKCJA - FIXED POZADINA I OVERLAY */
.about-book-section {
    background-attachment: fixed !important;
}

.about-book-overlay {
    background-color: rgba(0, 0, 0, 0.4) !important;
}

/* 3. DUGME BUY NOW STIL (CENTRIRANO I U JEDNOM REDU) */
.btn-buy {
    display: inline-block !important;
    padding: 14px 60px !important;
    background-color: #DE8F6E !important;
    color: #713E5A !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 40px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    letter-spacing: 1px !important;
    border: none !important;
    cursor: pointer !important;
}

.btn-buy:hover {
    background-color: #7C90A0 !important;
    color: #713E5A !important;
    transform: translateY(-2px) !important;
}

/* 4. UKLANJANJE HORIZONTALNE LINIJE IZNAD TALK SEKCIJE */
.talk-section {
    margin-top: 0 !important;
    padding-top: 60px !important;
}

/* 5. CENTRIRANJE DUGMADI U MESSAGE I ABOUT BOOK SEKCIJI */
.message-text .btn-buy,
.about-book-section .btn-buy {
    display: inline-block !important;
    margin: 20px auto 0 auto !important;
}

/* 6. HERO POZADINA - OSIGURAVANJE DA SE VIDI */
.book-hero {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.book-hero-overlay {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

/* 7. HORIZONTALNA LINIJA - VIDLJIVA */
.section-divider {
    width: 80% !important;
    max-width: 600px !important;
    height: 0 !important;
    border-top: 2px solid #DE8F6E !important;
    margin: 40px auto !important;
    opacity: 1 !important;
}
/* ABOUT BOOK - SVE BELO */
.about-book-box p,
.about-book-box .highlight-text,
.about-book-box .box-intro,
.about-book-box .closing-text,
.about-book-box .final-line,
.special-box p,
.final-box p {
    color: #E8E8E8 !important;
}
/* KONTAKT FORMA - VIDLJIVA INPUT POLJA */
.contact-form-container {
    background-color: rgba(124, 144, 160, 0.85) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    border: 1px solid rgba(222, 143, 110, 0.3) !important;
    border-radius: 20px !important;
    padding: 40px 50px !important;
}

/* POLJA ZA UNOS - VIDLJIVA (SVETLIJA) */
.form-input,
.form-textarea {
    background-color: rgba(255, 255, 255, 0.1) !important;  /* Svetlija pozadina */
    border: 2px solid rgba(222, 143, 110, 0.5) !important;  /* Deblji i vidljiviji obrub */
    color: #E8E8E8 !important;
    border-radius: 16px !important;
    padding: 14px 18px !important;
    font-size: 1rem !important;
}

.form-input:focus,
.form-textarea:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: #DE8F6E !important;
    box-shadow: 0 0 0 3px rgba(222, 143, 110, 0.3) !important;
    outline: none !important;
}

/* LABELE */
.form-label {
    color: #DE8F6E !important;
    font-weight: 500 !important;
}

/* DUGME */
.btn-contact {
    background-color: transparent !important;
    color: #E8E8E8 !important;
    border: 2px solid #DE8F6E !important;
    border-radius: 40px !important;
    padding: 14px 50px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    transition: all 0.3s ease !important;
}

.btn-contact:hover {
    background-color: #DE8F6E !important;
    color: #713E5A !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(222, 143, 110, 0.3) !important;
}
/* HERO - VEĆA SLIKA KNJIGE */
.book-cover-img {
    flex: 0 0 340px !important;  /* Povećano sa 280px na 340px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover-img img {
    width: 100%;
    max-width: 340px !important;  /* Povećano sa 280px na 340px */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.book-cover-img img:hover {
    transform: scale(1.03);
}

/* PRILAGODI VISINU BOX-A DA PRATI SLIKU */
.book-combined-box {
    display: flex;
    gap: 40px;
    background-color: rgba(124, 144, 160, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #DE8F6E;
    border-radius: 20px;
    padding: 35px 40px;  /* Malo veći padding */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 100%;
    align-items: center;  /* Centriranje po visini */
}

/* PRILAGODI RESPONZIVNOST */
@media (max-width: 1000px) {
    .book-cover-img {
        flex: 0 0 280px !important;
    }
    
    .book-cover-img img {
        max-width: 280px !important;
    }
}

@media (max-width: 700px) {
    .book-cover-img {
        flex: 0 0 220px !important;
    }
    
    .book-cover-img img {
        max-width: 220px !important;
    }
    
    .book-combined-box {
        padding: 25px !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .book-cover-img {
        flex: 0 0 180px !important;
    }
    
    .book-cover-img img {
        max-width: 180px !important;
    }
}
/* BOOK DETAILS - NOVI IZGLED (JEDAN ISPOD DRUGOG) */
.book-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    gap: 12px;  /* Razmak između stavki */
}

.book-detail-item {
    display: flex;
    flex-direction: column;  /* Sada su jedan ispod drugog */
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #DE8F6E;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.detail-value {
    font-weight: 400;
    color: #E8E8E8;
    font-size: 1.1rem;
    line-height: 1.3;
    padding-left: 0;
}

/* KATEGORIJE - SPECIJALNO */
.category-line {
    display: inline;
    line-height: 1.3;
}

/* TANKI RAZDELNICI IZMEDJU STAVKI */
.book-detail-item:not(:last-child) {
    border-bottom: 1px solid rgba(222, 143, 110, 0.15);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

/* PRVI ITEM - TITLE IME KNJIGE VEĆE */
.book-detail-item:first-child .detail-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: #B8D94C;
    letter-spacing: -0.02em;
}

/* RESPONZIVNOST ZA MOBILE */
@media (max-width: 700px) {
    .book-details {
        padding-left: 0;
        width: 100%;
        gap: 10px;
    }
    
    .book-detail-item:not(:last-child) {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .detail-label {
        font-size: 0.7rem;
    }
    
    .detail-value {
        font-size: 1rem;
    }
    
    .book-detail-item:first-child .detail-value {
        font-size: 1.2rem;
    }
}
