/*
Theme Name: little Ocean
Author: 
Description: Child them of Ocean WP
Version: 1.0
Template: oceanwp

This is the child theme for OceanWP theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
 <?php
echo do_shortcode('[smartslider3 slider="2"]');
?> 

*/
/* Add this CSS to your child theme's style.css file */
.oceanwp-footer-text {
    color: #ffffff !important;
}

/* CSS code to change the height of the page header */
.page-header {
    height: 50px; /* Adjust this value as needed */
    background-color: #e9f0f5 !important;/* Optional: Set a background color for the header */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px; /* Optional: Add some padding */
}

/* Center the contact link within the page header */
.page-header {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically, if needed */
}

/* CSS code to style the contact link in the page header */
.contact-link {
    color: black !important; /* Link color with !important */
    text-decoration: none; /* Remove underline */
    padding: 5px; /* Optional: Add some padding around the link */
    font-weight: normal; /* Normal font weight */
    max-width: 100px; /* Adjust this value as needed */
    word-wrap: break-word; /* Ensure long text breaks to fit */
    text-align: center; /* Center the text within the link */
}

/* Hover effect for the contact link */
.contact-link:hover {
    color: lightblue !important; /* Change color to lightblue on hover */
    background-color: transparent; /* Transparent background on hover */
}

/* Media queries for mobile devices to reduce line spacing */ 
@media (max-width: 768px) { 
	.contact-link { 
		line-height: 1.2; /* Adjust line-height to reduce spacing */ 
		max-width: 120px; /* Slightly wider to fit better on mobile */ 
		padding: 5px 2px; /* Reduce padding for narrower fit */ 
} 

