/* Look and Book - Literary Modern Aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@300;400;600;700&family=Space+Mono:wght@400;700&family=Playfair+Display:wght@400;700;900&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
    --primary: #2C3E50;
    --secondary: #E8B84D;
    --accent: #C44536;
    --dark: #1A1A1A;
    --light: #F8F4EF;
    --cream: #FFF8E7;
    --sage: #8B9A7C;
    --terracotta: #D4735E;
    --navy: #1B3A52;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Work Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --font-serif: 'Crimson Pro', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.mono-text {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Header */
.navbar {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cream) !important;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--secondary) !important;
    transform: translateY(-2px);
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--light) !important;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--secondary) !important;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, #1B3A52 0%, #2C3E50 50%, #34495E 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, transparent 2px, transparent 40px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, transparent 2px, transparent 40px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    color: var(--cream);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-text {
    color: var(--light);
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-decorative {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 184, 77, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

/* Buttons */
.btn-custom {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-primary-custom {
    background: var(--secondary);
    color: var(--dark);
}

.btn-primary-custom:hover {
    background: #F5C963;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 184, 77, 0.4);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.btn-secondary-custom:hover {
    background: var(--cream);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: #D95848;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 69, 54, 0.4);
}

/* Featured Books Section */
.featured-books {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, var(--cream) 0%, var(--light) 100%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1" fill="rgba(0,0,0,0.03)"/></svg>');
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    color: var(--navy);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary);
}

.section-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--sage);
    margin-top: 2rem;
    font-size: 1.2rem;
}

.book-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.book-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--terracotta), var(--sage));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-card:hover::before {
    opacity: 1;
}

.book-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary);
}

.book-image-wrapper {
    height: 350px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
}

.book-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.book-card:hover .book-image {
    transform: scale(1.1);
}

.book-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.book-content {
    padding: 2rem;
}

.book-title {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.book-author {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--sage);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.book-description {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.book-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
}

/* Service Section */
.service-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, #243A4F 100%);
    position: relative;
    overflow: hidden;
}

.service-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 184, 77, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 184, 77, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.service-title {
    color: var(--cream);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--light);
    margin-bottom: 2rem;
}

.service-price {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--secondary);
    font-weight: 900;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: var(--light);
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Articles Section */
.articles-section {
    padding: 6rem 0;
    background: 
        linear-gradient(to bottom, var(--light) 0%, var(--cream) 100%);
    position: relative;
}

.article-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.article-image-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image {
    transform: scale(1.1) rotate(2deg);
}

.article-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.article-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--sage);
    margin-bottom: 1rem;
}

.article-title {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.article-excerpt {
    color: var(--dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    font-family: var(--font-mono);
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--secondary);
    gap: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-title {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-btn {
    background: var(--navy);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
    color: var(--light);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-text {
    color: var(--light);
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

.accept-btn {
    background: var(--secondary);
    color: var(--dark);
}

.accept-btn:hover {
    background: #F5C963;
    transform: translateY(-2px);
}

.decline-btn {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.decline-btn:hover {
    background: var(--light);
    color: var(--dark);
}

/* About Page */
.about-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 184, 77, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-title {
    color: var(--cream);
    margin-bottom: 2rem;
}

.about-text {
    color: var(--light);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-section {
    padding: 6rem 0;
    background: var(--cream);
}

.mission-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.4s ease;
    border-left: 5px solid var(--secondary);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent);
}

.mission-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.mission-title {
    color: var(--navy);
    margin-bottom: 1rem;
}

.mission-text {
    color: var(--dark);
}

/* Contact Page */
.contact-section {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, var(--light) 0%, var(--cream) 100%);
}

.contact-form-wrapper {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--light);
    border-radius: 15px;
    font-family: var(--font-serif);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(232, 184, 77, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
    border-radius: 30px;
    padding: 3rem;
    color: white;
    height: 100%;
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.contact-info-item i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-info-item h4 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.map-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Policy Pages */
.policy-section {
    padding: 6rem 0;
    background: var(--light);
}

.policy-content {
    background: white;
    border-radius: 25px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.policy-title {
    color: var(--navy);
    margin-bottom: 1rem;
    border-bottom: 4px solid var(--secondary);
    padding-bottom: 1rem;
}

.policy-content h3 {
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease;
}

.slide-in-right {
    animation: slideInRight 0.8s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-decorative {
        width: 200px;
        height: 200px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-5px);
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.loading:nth-child(1) { animation-delay: 0.1s; }
.loading:nth-child(2) { animation-delay: 0.2s; }
.loading:nth-child(3) { animation-delay: 0.3s; }
.loading:nth-child(4) { animation-delay: 0.4s; }



.navbar-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}
