/*
Theme Name:   Twenty Twenty-Five Child
Template:     twentytwentyfive
Version:      1.0.0
Author:       Saptarsi Bhowmick
Description:  Child theme for saptarsibhowmick.com
Text Domain:  twentytwentyfive-child
*/

/* Custom CSS for your requirements */

/* Example: Make dropdown menus slightly transparent */
.wp-block-navigation-submenu {
    background-color: rgba(255, 255, 255, 0.95);
}

/* 
   Configuration for the "Photography Gallery" Template 
   This ensures the gallery pages are dark grey with white text
*/

/* Target the specific custom template */
.page-template-photo-gallery {
    background-color: #1a1a1a !important; /* Soft Dark Grey */
    color: #f0f0f0; /* Off-white text */
}

/* Ensure the header and footer inside this template also blend in */
.page-template-photo-gallery header,
.page-template-photo-gallery footer {
    background-color: #1a1a1a !important;
    color: #f0f0f0;
}

/* Make links white so they are visible on dark background */
.page-template-photo-gallery a {
    color: #ffffff;
    text-decoration: underline;
}

/* Adjust the Navigation bar text color for this template */
.page-template-photo-gallery .wp-block-navigation-item__content {
    color: #ffffff !important;
}