body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    overflow-x: hidden;
}

.sticky-nav {
    position: sticky;
    top: 0;
    background: rgba(15, 15, 15, 0.9);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ff4d4d;
}
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links li {
    margin-left: 2rem;
}
.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #ff4d4d;
}
.hamburger {
    display: none;
    color: #ff4d4d;
    font-size: 1.8rem;
    cursor: pointer;
}

.parallax {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background2.jpg') no-repeat center/cover fixed;
    filter: blur(5px);
    z-index: 0;
    transform: scale(1.2);
}
.parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.5);
    z-index: 1;
}
.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem 3rem;
}
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    margin-bottom: 1rem;
    color: #fff;
}
.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}
.cta {
    padding: 1rem 3rem;
    background: #ff4d4d;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
}
.cta.pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

#portfolio {
    padding: 6rem 2rem;
    background: #0f0f0f;
    text-align: center;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    color: #ff4d4d;
}
.tattoo-scroller {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 0 2rem;
    scrollbar-width: thin;
    scrollbar-color: #ff4d4d #333;
}
.tattoo-scroller::-webkit-scrollbar {
    height: 8px;
}
.tattoo-scroller::-webkit-scrollbar-thumb {
    background: #ff4d4d;
    border-radius: 4px;
}
.tattoo-scroller::-webkit-scrollbar-track {
    background: #333;
}
.tattoo-item {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}
.tattoo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.tattoo-item:hover img {
    transform: scale(1.1);
}

#books {
    padding: 6rem 0;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
    text-align: center;
}
#books::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('books-bg.jpg') no-repeat center/cover;
    opacity: 0.1;
    z-index: 0;
}
.book-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}
.book-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 311px;
    background: #1a1a1a;
    border-radius: 15px;
    padding: 1rem;
    transition: transform 0.3s;
}
.book-item:hover {
    transform: translateY(-10px);
}
.book-item img {
    width: 311px;
    height: 466px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.book-details {
    text-align: center;
    padding: 1rem 0;
}
.book-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.book-details p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}
.book-cta {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #ff4d4d;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: background 0.3s;
}
.book-cta:hover {
    background: #e63939;
}
.book-banner {
    max-width: 1200px;
    margin: 3rem auto 0;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}
.book-banner img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(70%);
    transition: filter 0.3s;
}
.book-banner:hover img {
    filter: brightness(85%);
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 2rem;
}
.banner-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ff4d4d;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
    animation: fadeIn 1.5s ease-in-out;
}
.banner-overlay p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin: 0.5rem 0;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    animation: fadeIn 2s ease-in-out;
}
.teaser-text {
    font-size: 1rem;
    color: #ff4d4d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeInUp 2.5s ease-in-out forwards;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

#about {
    padding: 6rem 2rem;
    background: #1a1a1a;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}
.author-photo {
    flex: 1;
}
.author-photo img {
    width: 100%;
    max-width: 350px;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
}
.about-text {
    flex: 1.5;
}
.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
}

#contact {
    padding: 6rem 2rem;
    background: #0f0f0f;
    text-align: center;
}

.contact-phone {
    display: block;
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.contact-phone strong {
    font-size: 1.5rem;
    color: #ff4d4d;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: #333;
    color: #e0e0e0;
}

.submit-btn {
    padding: 1rem;
    background: #ff4d4d;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #e63939;
}


#location {
    padding: 6rem 2rem;
    background: #0f0f0f;
}
.map-container {
    max-width: 1200px;
    margin: 0 auto;
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

#footer {
    background: #1a1a1a;
    padding: 2rem;
    text-align: center;
    color: #e0e0e0;
}
.footer-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.social-links a {
    color: #ff4d4d;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}
.social-links a:hover {
    color: #e63939;
    transform: scale(1.2);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.5);
}
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ff4d4d;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}
.close:hover {
    color: #e63939;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.95);
        padding: 1rem 0;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 1rem 0;
    }
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    h1 {
        font-size: 3rem;
    }
    .tattoo-item {
        width: 250px;
        height: 350px;
    }
    .book-container {
        flex-direction: column;
        align-items: center;
    }
    .book-item {
        width: 100%;
        max-width: 311px;
    }
    .book-item img {
        width: 100%;
        height: auto;
        max-width: 311px;
        max-height: 466px;
    }
    .map-container iframe {
        height: 300px;
    }
    .book-banner {
        margin: 2rem auto 0;
    }
    .banner-overlay h3 {
        font-size: 1.8rem;
    }
    .banner-overlay p {
        font-size: 1rem;
    }
    .teaser-text {
        font-size: 0.9remರೀ

}