/*
Theme Name: Crest IPTV
Theme URI: https://crest-iptv.com
Author: Crest IPTV
Author URI: https://crest-iptv.com
Description: Premium IPTV WordPress theme for the Ireland market. 22,000+ HD/4K channels, WhatsApp-based subscriptions, full SEO optimisation, and responsive design. Built for the Irish IPTV market with OceanBreeze palette.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crest-iptv
Tags: iptv, streaming, ireland, full-width, custom-menu, custom-logo, threaded-comments
*/

/* ============================================
   CSS Custom Properties — OceanBreeze Palette
   ============================================ */
:root {
    --iptv-bg: #F8FAFC;
    --iptv-surface: #FFFFFF;
    --iptv-card: #F1F5F9;
    --iptv-primary: #0891B2;
    --iptv-cta-start: #0E7490;
    --iptv-cta-end: #0891B2;
    --iptv-text: #0C4A6E;
    --iptv-heading-font: 'Crimson Pro', serif;
    --iptv-body-font: 'Rubik', sans-serif;
}

/* ============================================
   Minimal Reset
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--iptv-body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--iptv-text);
    background-color: var(--iptv-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--iptv-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--iptv-cta-start);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--iptv-heading-font);
    font-weight: 700;
    line-height: 1.2;
    color: var(--iptv-text);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* WordPress core alignment */
.alignwide { width: 100%; }
.alignfull { width: 100vw; margin-left: calc(-50vw + 50%); }
.wp-block-image img { max-width: 100%; height: auto; }
