html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Custom styles for Elizabeth Musa's violin website */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 600 !important;
    font-size: 1.5rem;
}

.violin-illustration {
    text-align: center;
    padding: 2rem;
}

.violin-silhouette {
    font-size: 150px;
    color: #8b4513;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: gentle-sway 3s ease-in-out infinite;
}

@keyframes gentle-sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 600 !important;
    font-size: 1.5rem;
}

.card {
    transition: transform 0.2s ease-in-out;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: #6f4e37;
    border-color: #6f4e37;
}

.btn-primary:hover {
    background-color: #5a3d2b;
    border-color: #5a3d2b;
}

.btn-outline-primary {
    color: #6f4e37;
    border-color: #6f4e37;
}

.btn-outline-primary:hover {
    background-color: #6f4e37;
    border-color: #6f4e37;
}

.text-muted {
    color: #8b4513 !important;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
    background-color: #f8f9fa;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

/* Musical note decorations */
.hero-section::before {
    content: '♪ ♫ ♪ ♫';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: rgba(139, 69, 19, 0.3);
    animation: float 6s ease-in-out infinite;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Repertoire section styling */
#repertoire .card-header {
    font-weight: 600;
}

#repertoire .card-body ul li {
    padding: 2px 0;
    font-size: 0.95rem;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-info {
    color: #0dcaf0;
    border-color: #0dcaf0;
}

.btn-outline-info:hover {
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

/* Media page styling */
.video-container {
    margin-bottom: 1rem;
}

.video-container iframe {
    border-radius: 8px;
}

.placeholder-video {
    border-radius: 8px;
    border: 2px dashed #dee2e6;
    min-height: 200px;
    transition: border-color 0.3s ease;
}

.placeholder-video:hover {
    border-color: #adb5bd;
}

.video-info h5, .video-info h6 {
    color: #6f4e37;
    margin-bottom: 0.5rem;
}

.youtube-icon, .vimeo-icon {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.placeholder-video:hover .youtube-icon,
.placeholder-video:hover .vimeo-icon {
    opacity: 1;
}