/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


@media (max-width: 768px) {
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* full height */
    margin: 0;
  }

  .container {
    margin: 0 auto;
  }
}




 /* Voice book logo annotation styling */
        .voice-book-logo {
            position: fixed;
            bottom: 30px;
            right: 30px;
            cursor: pointer;
            z-index: 1000;
        }
        .voice-book-logo img {
            transition: transform 0.3s ease;
        }
        .voice-book-logo.pulse {
            animation: pulse 2s infinite;
        }
        .voice-book-logo:hover img {
            transform: scale(1.1);
        }
        .voice-book-logo .annotation {
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
            font-size: 14px;
            font-family: 'Zen Antique Soft', serif;
            white-space: nowrap;
            opacity: 1;
            transition: opacity 1s ease;
        }
        .voice-book-logo .annotation.fade-out {
            opacity: 0;
        }
        .voice-book-logo.glow {
            box-shadow: none;
            border-radius: none;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.15); }
            100% { transform: scale(1); }
        }
        /* Nav menu icon styling */
    
        .nav-links ion-icon {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 0.3rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .nav-links a:hover ion-icon {
            color: #c02611ff;
            transform: scale(1.2);
        }
   
  /* Voice Book logo */
  .voice-book-logo {
    position: absolute;
    right: 40px;
    top: 20%;
    transform: translateY(-50%);
    max-width: 120px;
    z-index: 11;
    border-radius: 80%;
    border:#09f33c;
    border-width: 200px;
  }
  .voice-book-logo img {
    width: 120px;               /* size */
    height: 120px;
    border-radius: 50%;         /* make it circular */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;          /* keep aspect ratio and cover */
    cursor: pointer;            /* pointer on hover */
    
}
  
  .voice-book-logo img:hover {
    transform: scale(1.05);      /* slight zoom on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  }
  