/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Author: Dian Angelov
Author URI: https://studyadvisoruk.co.uk
Template: oceanwp
Version: 1.0.0
Description: A child theme of OceanWP.
*/

/* Optional: Inherit styles from parent */
@import url("../oceanwp/style.css");

body {
  border: 5px solid red;
}



.site-footer {
  background: rgba(0, 0, 0, 0.85);
  color: white;
  transition: box-shadow 0.3s ease;
}

.site-footer:hover {
  box-shadow: 0 -4px 12px skyblue;
}

.site-footer a {
  position: relative;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: skyblue;
}

.site-footer a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  background: skyblue;
  transition: width 0.3s ease;
  bottom: 0;
  left: 0;
}

.site-footer a:hover::after {
  width: 100%;
}

#scroll-to-footer {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #0077b6;
  color: white;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  text-decoration: none;
  display: none;
  transition: background-color 0.3s ease;
}

html {
  scroll-behavior: smooth;
}


#scroll-to-footer:hover {
  background-color: #00b4d8;
}



/* Center and resize internal logo */

.internal-logo-wrapper {
    text-align: center;
    margin: 20px 0;
}

.internal-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 12px;
    display: inline-block;
}





