/* Policy Pages CSS - Premium White and Gold Theme */

/* Premium White and Gold Theme */
:root {
    /* Primary Colors */
    --pure-white: #ffffff;
    --off-white: #fefefe;
    --cream: #faf8f6;
    --light-gray: #f8f9fa;
    --soft-gray: #e9ecef;
    --medium-gray: #dee2e6;
    --border-gray: #ced4da;
    --text-gray: #6c757d;
    --dark-gray: #495057;
    --primary-black: #212529;

    /* Gold Accents */
    --primary-gold: #d4af37;
    --dark-gold: #b8941f;
    --light-gold: #f7e7ce;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --gold-shadow: rgba(212, 175, 55, 0.25);

    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #6c757d;
    --text-medium: #495057;
    --text-dark: #212529;

    /* Legacy Support */
    --primary-brown: var(--primary-gold);
    --accent-gold: var(--primary-gold);
    --dark-brown: var(--dark-gold);
    --light-brown: var(--light-gold);
    --border-light: var(--border-gray);
    --transition-base: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);

    /* Effects */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 14px rgba(212, 175, 55, 0.25);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--cream) 100%);
    min-height: 100vh;
}

/* Override default link colors */
a {
    color: var(--primary-gold);
    text-decoration: none;
}

a:visited {
    color: var(--primary-gold);
}

a:hover {
    color: var(--dark-gold);
}

/* Navigation styles now inherit from styles.css */

/* Policy Page Header Override - Dark theme for better contrast */
.header {
    background: var(--primary-black) !important;
    border-bottom: 1px solid var(--primary-gold) !important;
}

.logo-name {
    color: var(--pure-white) !important;
}

.logo-tagline {
    color: var(--primary-gold) !important;
}

.nav-menu-items a {
    color: var(--pure-white) !important;
}

.nav-menu-items a:hover {
    color: var(--primary-gold) !important;
}

.btn-nav {
    background: var(--primary-gold) !important;
    color: var(--primary-black) !important;
}

.btn-nav:hover {
    background: var(--dark-gold) !important;
    color: var(--pure-white) !important;
}

/* Policy Page Footer Override - Dark theme for better contrast */
.footer {
    background: var(--primary-black) !important;
    color: var(--pure-white) !important;
    border-top: 1px solid var(--primary-gold) !important;
}

.footer-column h4 {
    color: var(--primary-gold) !important;
}

.footer-column a {
    color: var(--pure-white) !important;
}

.footer-column a:hover {
    color: var(--primary-gold) !important;
}

.footer-bottom {
    background: var(--primary-black) !important;
    border-top: 1px solid var(--dark-gold) !important;
}

/* Policy Actions */
.policy-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .policy-actions {
        flex-direction: column;
        gap: 10px;
    }
}




/* Main Content */
.main-content {
    margin-top: 90px;
}

.page-hero {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
    color: var(--pure-white);
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
}

/* Content Sections */
.privacy-content,
.cookie-content {
    padding: 80px 0;
    background: var(--pure-white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section,
.cookie-section {
    margin-bottom: 50px;
}

.privacy-section h2,
.cookie-section h2 {
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--border-gray);
    padding-bottom: 10px;
}

.privacy-section h3,
.cookie-section h3 {
    font-size: 24px;
    color: var(--dark-gold);
    margin: 25px 0 15px;
    font-weight: 600;
}

.privacy-section p,
.cookie-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.privacy-section ul,
.cookie-section ul {
    margin: 15px 0 15px 20px;
    list-style: none;
}

.privacy-section li,
.cookie-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: var(--text-dark);
}

.privacy-section li::before,
.cookie-section li::before {
    content: "•";
    color: var(--primary-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-section a,
.cookie-section a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
}

.privacy-section a:hover,
.cookie-section a:hover {
    color: var(--dark-gold);
    border-bottom-color: var(--primary-gold);
}

.contact-info {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info h3 {
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    gap: 5px;
}

.contact-item strong {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: var(--text-white) !important;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
}

.contact-item a:hover {
    color: var(--light-teal) !important;
    border-bottom-color: var(--primary-teal);
}

/* Contact section buttons */
.contact-info .btn-primary {
    display: inline-block;
    background: var(--primary-teal);
    color: var(--pure-white) !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    border: 2px solid var(--primary-teal);
}

.contact-info .btn-primary:hover {
    background: var(--dark-teal);
    border-color: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

.contact-info .btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-white) !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    border: 2px solid var(--medium-gray);
}

.contact-info .btn-secondary:hover {
    background: var(--medium-gray);
    color: var(--text-white) !important;
    transform: translateY(-2px);
}

/* Highlight boxes */
.highlight-box {
    background: var(--dark-gray);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-teal);
    margin: 20px 0;
    color: var(--text-white);
}

.highlight-box strong {
    color: var(--primary-teal);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--pure-white);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: var(--primary-teal);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--pure-white);
}

.footer-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--primary-teal);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    transition: var(--transition-base);
}

.footer-social img {
    width: 32px;
    height: 32px;
    filter: brightness(0.8);
    transition: var(--transition-base);
}

.footer-social a:hover img {
    filter: brightness(1);
    transform: scale(1.1);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact i {
    width: 16px;
    color: var(--primary-teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-teal);
}

/* Staff Portal Icon */
.footer-staff-portal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 2px solid var(--primary-teal);
    border-radius: 50%;
    transition: var(--transition-base);
    background: transparent;
}

.footer-staff-portal:hover {
    background: var(--primary-teal);
    border-color: var(--dark-teal);
}

.footer-staff-portal-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(44%) sepia(57%) saturate(1020%) hue-rotate(16deg) brightness(94%) contrast(89%);
}

.footer-staff-portal:hover .footer-staff-portal-icon {
    filter: brightness(0) invert(1);
}

/* Mobile navigation now handled by styles.css */

/* Mobile Responsiveness */

@media (max-width: 768px) {

    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 18px;
    }

    .privacy-section h2,
    .cookie-section h2 {
        font-size: 28px;
    }

    .privacy-section h3,
    .cookie-section h3 {
        font-size: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 16px;
    }

    .privacy-section h2,
    .cookie-section h2 {
        font-size: 24px;
    }

    .privacy-section h3,
    .cookie-section h3 {
        font-size: 18px;
    }

}