/* Fonts */
@font-face {
    font-family: 'AboveTheBeyond';
    src: url('../fonts/AboveTheBeyondScript-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Raleway', Arial, sans-serif;
    margin: 0;
    padding: 0;

    background-image: url("images/img-baby_grand_piano-blk_wht.jpg");
    color: #000;
}

/* Header */
#header {
    background-color: #000; /* theme black */
    color: #fff;
    padding: 20px;
    text-align: center;
}

.header-center h4 {
    margin: 0;
}

.logo-script {
    font-family: 'AboveTheBeyond', cursive; /* fallback */
    font-size: 48px;
    color: #ffffff;
    margin: 10px 0;
}

.logo-script .highlight {
    color: red; /* your highlight color */
    font-family: 'AboveTheBeyond',  cursive;
    font-size: 48px;
   
}

.header-btn .btn-contact {
    background-color: #333;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 4px;
}

.header-btn .btn-contact:hover {
    background-color: #555;
}

/* Sidebar */
#sidebar {
    display: none;
    width: 250px;
    position: fixed;
    z-index: 100;
    background: #111;
    top: 0;
    left: 0;
    height: 100%;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}


.menu-title {
    
    text-align: center;
}
/* Optional: add a semi-transparent overlay to make text more readable */
.main-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* black overlay with 40% opacity */
  z-index: -1; /* behind the content */
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    margin: 10px 0;
    cursor: pointer;
}

.nav-link {
    display: block;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
}

.nav-link:hover {
    background-color: #333;
}

/* Services */
.section-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    
}

.service-card h3 {
    margin-top: 0;
}

/* About */
.about-list {
    list-style: none;
    padding: 0;
     text-align: center;  
}

.about-list li {
    margin: 8px 0;
}

/* Contact */
.contact-section .contact-text {
    text-align: center;
    font-size: 18px;
}

.contact-info {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item {
    text-align: center;
}

.contact-item .icon {
    font-size: 36px;
    color: #000;
}

.contact-form {
    max-width: 600px;
    margin: 32px auto 0 auto;
}

.input-field {
    width: 100%;
    padding: 10px;
    margin: 4px 0 12px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Buttons */
.btn {
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

.btn-submit {
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
}

.btn-submit:hover {
    background-color: #333;
}

/* Footer */
#footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 columns */
  gap: 20px;
  justify-items: center; /* centers cards horizontally in their column */
}

.service-card {
  width: 100%;           /* fills its grid column */
  max-width: 300px;      /* optional: control card width */
}


.service-card.disabled {
  pointer-events: none;     /* makes it unclickable */
  opacity: 0.9;             /* just a slight fade */
  filter: grayscale(20%);   /* subtle desaturation */
  cursor: not-allowed;      /* shows it’s disabled on hover */
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.service-card.disabled:hover {
  opacity: 0.85;            /* tiny hover feedback */
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}