/*
Theme Name: Twenty Twenty-Five Child
Theme URI: http://example.com/twenty-twenty-five-child
Description: A child theme for the Twenty Twenty-Five theme.
Author: Your Name
Author URI: http://example.com
Template: twentytwentyfive
Version: 1.0.0
Text Domain: twenty-twenty-five-child
*/

@import url("../twentytwentyfive/style.css");

/* General Layout */
body {
    font-family: 'Montserrat', sans-serif; /* Replace with Google Fonts if needed */
    color: #333; /* Neutral text color */
    background-color: #fff; /* Clean white background */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Add spacing between sections */
section {
    padding: 60px 20px;
}
/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9); /* Slight transparency */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

header nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 10px;
    transition: color 0.3s;
}

header nav a:hover {
    color: #0078d7; /* Accent color */
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

a {
    color: #0078d7; /* Accent color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/* Buttons */
button, .btn {
    background-color: #0078d7; /* Accent color */
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover, .btn:hover {
    background-color: #0056a4;
    transform: scale(1.05);
}
/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optional rounded corners */
    margin: 0 auto;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
/* Footer */
footer {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    font-size: 14px;
    color: #666;
}

footer a {
    color: #0078d7;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
/* Animations */
.section-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects on links */
a, button, .btn {
    transition: all 0.3s ease;
}
.wp-block-post-title {
	display: none!important;
}
.mobile-only {
	display: none;
}
.desktop-only {
	display: none;
}

@media (max-width: 479px) { /* Adjust breakpoint as needed */

	.mobile-only {
		display: block!important;
	}
	.desktop-only {
	display: none!important;
}
}
@media (min-width: 480px) { /* Adjust breakpoint as needed */
	.desktop-only {
		display: block!important;
	}
	.mobile-only {
	display: none!important;
}
}
