/*
Theme Name: bobod-romance
Theme URI: https://www.romancefm.net/
Author: Bobod007
Description: Modern radio theme for Radio Romance FM, featuring customizable audio player, resizable logo, and social icons. Designed for PageLayer.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: bobod-romance
Tags: light, blue, radio, modern, customizable, pagelayer
*/

body {
    background: #eaf6fb;
    color: #222;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.header-romance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5vw 1rem 5vw;
    background: linear-gradient(90deg, #8fd3f4 0%, #84fab0 100%);
    box-shadow: 0 2px 10px rgba(120, 200, 255, 0.15);
}

/* Quarter-size logo */
.logo-romance {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    object-fit: contain;
    border: 3px solid #8fd3f4;
    transform: scale(0.25);
    transform-origin: top left;
    display: inline-block;
}

@media (max-width: 600px) {
    .header-romance {
        flex-direction: column;
        align-items: flex-start;
    }
    .logo-romance {
        width: 60px;
        height: 60px;
        transform: scale(0.25);
        transform-origin: top left;
        margin-bottom: 1rem;
    }
}

.site-title {
    font-size: 2.2rem;
    color: #0a539e;
    margin: 0 0 0 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.site-motto {
    font-size: 1.1rem;
    color: #1572a1;
    margin-left: 1.4rem;
    font-style: italic;
}

.player-section {
    margin: 2rem auto;
    max-width: 430px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(120,200,255,0.11);
    padding: 2rem 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-row {
    margin: 2rem auto 0 auto;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: inline-block;
    border-radius: 50%;
    background: #eaf6fb;
    transition: background 0.3s;
    box-shadow: 0 2px 8px rgba(120,200,255,0.06);
}

.social-icon:hover {
    background: #b8e0fc;
}

/*────────────────────────────────────────────────────────────
  Footer – full-width and centered
────────────────────────────────────────────────────────────*/
footer.footer-romance {
  /* break out of any wrapper */
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  box-sizing: border-box;

  background: #fce4ec;
  padding: 1rem 0;
  margin-top: 2rem;

  text-align: center;
}

footer.footer-romance p {
  margin: 0;
  color: #880e4f;
  font-size: 0.9rem;
}

footer.footer-romance p a {
  color: #ad1457;
  text-decoration: none;
}

footer.footer-romance p a:hover {
  text-decoration: underline;
}

/*────────────────────────────────────────────────────────────
  Footer
────────────────────────────────────────────────────────────*/
.site-footer {
  width: 100%;
  background: #fce4ec;
  padding: 1rem 0;
}

.site-footer .site-info {
  max-width: 100%;      /* or a specific max like 1200px if you prefer */
  margin: 0 auto;       /* centers the inner box */
  text-align: center;   /* centers the text */
}

.site-footer .site-info p {
  margin: 0;
  color: #880e4f;
  font-size: 0.9rem;
}

.site-footer .site-info a {
  color: #ad1457;
  text-decoration: none;
}

.site-footer .site-info a:hover {
  text-decoration: underline;
}

