/* Google Fonts - Art Deco inspired */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poiret+One&family=Lato:wght@300;400;500&display=swap');

/* Reset and base styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fdf6e8;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1a3a4a;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}

h2::before,
h2::after {
    content: '◆';
    color: #d4af37;
    margin: 0 15px;
    font-size: 0.6em;
    vertical-align: middle;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a3a4a;
    font-family: 'Playfair Display', serif;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

a {
    color: #e07a5f;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #c56a4f;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: linear-gradient(135deg, #1a3a4a 0%, #2d5a6b 100%);
    border-bottom: 3px solid #d4af37;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #fdf6e8;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Lato', sans-serif;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

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

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

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8b4b4 0%, #f5a997 25%, #81d4c2 75%, #5bc0a8 100%);
    display: flex;
    align-items: center;
    padding: 120px 2rem 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(212, 175, 55, 0.1) 50px,
            rgba(212, 175, 55, 0.1) 51px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(212, 175, 55, 0.1) 50px,
            rgba(212, 175, 55, 0.1) 51px
        );
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #fdf6e8, transparent);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: #1a3a4a;
}

.hero .subtitle {
    font-size: 1rem;
    color: #1a3a4a;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-family: 'Poiret One', cursive;
    font-size: 1.3rem;
}

.hero .tagline {
    font-size: 2.5rem;
    line-height: 1.4;
    color: #1a3a4a;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.hero .tagline strong {
    font-weight: 700;
    color: #8b4049;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 0;
    box-shadow: 10px 10px 0 #d4af37, 20px 20px 0 #1a3a4a;
    border: 4px solid #1a3a4a;
}

/* Art Deco Decorative Elements */
.deco-line {
    width: 100px;
    height: 3px;
    background: #d4af37;
    margin: 20px auto;
}

/* My Work section */
#work {
    background: #fdf6e8;
}

#work h2::before,
#work h2::after {
    content: '◆';
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.work-column {
    background: #fff;
    border-radius: 0;
    padding: 2rem;
    border: 2px solid #1a3a4a;
    position: relative;
    transition: all 0.3s ease;
}

.work-column::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid #d4af37;
    z-index: -1;
    transition: all 0.3s ease;
}

.work-column:hover::before {
    top: -12px;
    left: -12px;
}

.work-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.work-logo {
    flex-shrink: 0;
}

.work-logo img {
    width: 70px;
    height: 70px;
    border-radius: 0;
    object-fit: cover;
    border: 2px solid #d4af37;
}

.work-column h3 {
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
}

.work-header .work-description {
    margin-bottom: 0;
}

.work-description {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 1rem;
    font-style: italic;
}

.work-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.work-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.work-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.work-list a {
    color: #1a3a4a;
    font-size: 0.95rem;
    font-weight: 500;
}

.work-list a:hover {
    color: #e07a5f;
}

/* About section */
#about {
    background: linear-gradient(135deg, #81d4c2 0%, #5bc0a8 100%);
    position: relative;
}

#about::before {
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

#about h2 {
    color: #1a3a4a;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border: 2px solid #1a3a4a;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid #d4af37;
    z-index: -1;
}

.about-content p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-content a {
    font-weight: 500;
}

/* Book section */
#book {
    background: #fdf6e8;
}

.book-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.book-cover {
    position: relative;
}

.book-cover::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -15px;
    right: 15px;
    bottom: -15px;
    background: #d4af37;
    z-index: -1;
}

.book-cover img {
    width: 100%;
    border: 3px solid #1a3a4a;
    box-shadow: none;
}

blockquote {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border: 2px solid #1a3a4a;
    border-left: 6px solid #e07a5f;
    position: relative;
}

blockquote::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #d4af37;
    position: absolute;
    top: -10px;
    left: 15px;
    line-height: 1;
}

blockquote p {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    padding-left: 30px;
}

blockquote cite {
    font-size: 0.85rem;
    color: #718096;
    font-style: normal;
    font-weight: 500;
    padding-left: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #e07a5f;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.btn::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: -4px;
    bottom: -4px;
    background: #d4af37;
    z-index: -1;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #c56a4f;
    color: #fff;
    transform: translate(-2px, -2px);
}

.btn:hover::before {
    top: 6px;
    left: 6px;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.buy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.buy-links .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
}

/* Links grid */
#excerpts {
    background: linear-gradient(135deg, #f8b4b4 0%, #f5a997 100%);
}

#excerpts::before {
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.links-column {
    background: #fff;
    padding: 2rem;
    border: 2px solid #1a3a4a;
    position: relative;
}

.links-column::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid #d4af37;
    z-index: -1;
}

.links-column h3 {
    font-size: 1rem;
    color: #8b4049;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-family: 'Poiret One', cursive;
    font-size: 1.2rem;
}

.links-column ul {
    list-style: none;
}

.links-column li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.links-column li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.links-column li a {
    font-weight: 500;
    color: #1a3a4a;
}

.links-column li a:hover {
    color: #e07a5f;
}

/* Newsletter section */
#newsletter {
    background: linear-gradient(135deg, #1a3a4a 0%, #2d5a6b 100%);
    text-align: center;
    position: relative;
}

#newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

#newsletter h2 {
    color: #fdf6e8;
}

#newsletter h2::before,
#newsletter h2::after {
    color: #d4af37;
}

.newsletter-section {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-section p {
    font-size: 1.2rem;
    color: rgba(253, 246, 232, 0.9);
    margin-bottom: 2rem;
}

.newsletter-section .btn {
    background: #d4af37;
    color: #1a3a4a;
}

.newsletter-section .btn:hover {
    background: #c9a432;
}

/* Contact section */
#contact {
    background: #fdf6e8;
    text-align: center;
}

.contact-section {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section p {
    font-size: 1.1rem;
}

.contact-section a[href^="mailto"] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e07a5f;
    font-family: 'Playfair Display', serif;
}

.contact-section a[href^="mailto"]:hover {
    color: #c56a4f;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #1a3a4a;
    color: #fdf6e8;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #1a3a4a;
}

.social-links a:hover {
    background: #d4af37;
    color: #1a3a4a;
    transform: translateY(-3px);
}

/* Photos page */
.photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0;
    align-items: flex-start;
}

.photo-item {
    display: block;
    overflow: hidden;
    border: 3px solid #1a3a4a;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 0 0 auto;
    max-width: 200px;
    position: relative;
}

.photo-item::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: -4px;
    bottom: -4px;
    background: #d4af37;
    z-index: -1;
    transition: all 0.3s ease;
}

.photo-item:hover {
    transform: translate(-2px, -2px);
}

.photo-item:hover::before {
    top: 6px;
    left: 6px;
}

.photo-item img {
    width: 100%;
    height: auto;
    display: block;
}

.photos-download {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #d4af37;
    font-size: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 74, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 4px solid #d4af37;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #d4af37;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #fdf6e8;
}

@media (max-width: 768px) {
    .photo-item {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .photo-grid {
        justify-content: center;
    }

    .photo-item {
        max-width: 130px;
    }
}

/* Articles page */
.articles-page {
    padding-top: 100px;
    background: #fdf6e8;
}

.page-header {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a3a4a 0%, #2d5a6b 100%);
    margin-bottom: 0;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid #1a3a4a;
}

.page-header h1 {
    color: #fdf6e8;
    margin-bottom: 0.5rem;
    font-size: 3rem;
}

.page-header p {
    color: rgba(253, 246, 232, 0.8);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.articles-list {
    padding: 4rem 0;
}

.articles-list h2 {
    font-size: 1.5rem;
    color: #8b4049;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.articles-list h2::before,
.articles-list h2::after {
    display: none;
}

.articles-list h2:first-child {
    margin-top: 0;
}

.articles-list ul {
    list-style: none;
    margin-bottom: 2rem;
}

.articles-list li {
    padding: 1rem 1.5rem;
    background: #fff;
    border: 2px solid #1a3a4a;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.articles-list li::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: -4px;
    bottom: -4px;
    background: #d4af37;
    z-index: -1;
    transition: all 0.3s ease;
    opacity: 0;
}

.articles-list li:hover {
    transform: translate(-2px, -2px);
}

.articles-list li:hover::before {
    opacity: 1;
}

.articles-list li a {
    font-weight: 500;
    color: #1a3a4a;
}

.articles-list li a:hover {
    color: #e07a5f;
}

.articles-list .publication {
    color: #718096;
    font-size: 0.85rem;
    font-style: italic;
    margin-left: 0.75rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a3a4a 0%, #2d5a6b 100%);
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid #d4af37;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(253, 246, 232, 0.7);
    font-family: 'Poiret One', cursive;
    letter-spacing: 2px;
}

/* Responsive design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .hero-grid {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }

    .book-grid {
        grid-template-columns: 220px 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h2::before,
    h2::after {
        display: none;
    }

    .hero {
        padding: 100px 1.5rem 60px;
    }

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

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
        justify-content: center;
    }

    .hero-image img {
        max-width: 250px;
        box-shadow: 8px 8px 0 #d4af37;
    }

    .work-grid,
    .book-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }

    .book-grid {
        text-align: center;
    }

    .book-cover {
        max-width: 200px;
        margin: 0 auto;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .page-header {
        padding: 60px 0;
    }

    .articles-page {
        padding-top: 80px;
    }

    .about-content {
        padding: 2rem;
    }
}
