<?php
$settingsFile = __DIR__ . '/data/settings.json';
$settings = file_exists($settingsFile) ? json_decode(file_get_contents($settingsFile), true) : [];
$pageSettings = $settings['pages'] ?? [];
$brandingSettings = $settings['branding'] ?? [];

$siteName = $brandingSettings['siteName'] ?? 'Weather Portal';
$termsContent = $pageSettings['termsContent'] ?? '';
$termsLastUpdated = $pageSettings['termsLastUpdated'] ?? date('F Y');

include 'header.php';
?>

<div class="page-header">
    <h1 class="page-title" data-translate="terms_conditions">Terms and Conditions</h1>
    <p class="page-subtitle" data-translate="terms_subtitle">Please read these terms carefully</p>
</div>

<div class="content-card">
    <p><strong data-translate="last_updated">Last Updated:</strong> <?php echo htmlspecialchars($termsLastUpdated); ?></p>
    
    <?php if (!empty($termsContent)): ?>
        <?php echo $termsContent; ?>
    <?php else: ?>
    <h2 style="margin-top: 30px;" data-translate="agreement_terms">Agreement to Terms</h2>
    <p>By accessing and using <?php echo htmlspecialchars($siteName); ?>, you agree to be bound by these Terms and Conditions. If you disagree with any part of these terms, you may not access our service.</p>
    
    <h2 style="margin-top: 30px;" data-translate="use_license">Use License</h2>
    <p>Permission is granted to temporarily access the materials (information or software) on <?php echo htmlspecialchars($siteName); ?> for personal, non-commercial transitory viewing only. This is the grant of a license, not a transfer of title, and under this license you may not:</p>
    <ul>
        <li>Modify or copy the materials</li>
        <li>Use the materials for any commercial purpose</li>
        <li>Attempt to decompile or reverse engineer any software contained on the website</li>
        <li>Remove any copyright or other proprietary notations from the materials</li>
        <li>Transfer the materials to another person or "mirror" the materials on any other server</li>
    </ul>
    
    <h2 style="margin-top: 30px;" data-translate="disclaimer">Disclaimer</h2>
    <p>The materials on <?php echo htmlspecialchars($siteName); ?> are provided on an 'as is' basis. <?php echo htmlspecialchars($siteName); ?> makes no warranties, expressed or implied, and hereby disclaims and negates all other warranties including, without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property or other violation of rights.</p>
    
    <h2 style="margin-top: 30px;" data-translate="accuracy_materials">Accuracy of Materials</h2>
    <p>The materials appearing on <?php echo htmlspecialchars($siteName); ?> could include technical, typographical, or photographic errors. <?php echo htmlspecialchars($siteName); ?> does not warrant that any of the materials on its website are accurate, complete, or current. <?php echo htmlspecialchars($siteName); ?> may make changes to the materials contained on its website at any time without notice.</p>
    
    <h2 style="margin-top: 30px;" data-translate="weather_disclaimer">Weather Information Disclaimer</h2>
    <p>Weather forecasts and data provided on this website are for informational purposes only. While we use reliable data sources, weather predictions may not always be accurate. <?php echo htmlspecialchars($siteName); ?> is not liable for any decisions made based on weather information provided on this website.</p>
    
    <h2 style="margin-top: 30px;" data-translate="limitations">Limitations</h2>
    <p>In no event shall <?php echo htmlspecialchars($siteName); ?> or its suppliers be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption) arising out of the use or inability to use the materials on <?php echo htmlspecialchars($siteName); ?>'s website.</p>
    
    <h2 style="margin-top: 30px;" data-translate="links">Links</h2>
    <p><?php echo htmlspecialchars($siteName); ?> has not reviewed all of the sites linked to its website and is not responsible for the contents of any such linked site. The inclusion of any link does not imply endorsement by <?php echo htmlspecialchars($siteName); ?>. Use of any such linked website is at the user's own risk.</p>
    
    <h2 style="margin-top: 30px;" data-translate="modifications">Modifications</h2>
    <p><?php echo htmlspecialchars($siteName); ?> may revise these terms of service for its website at any time without notice. By using this website, you are agreeing to be bound by the then current version of these terms of service.</p>
    
    <h2 style="margin-top: 30px;" data-translate="governing_law">Governing Law</h2>
    <p>These terms and conditions are governed by and construed in accordance with applicable laws. You irrevocably submit to the exclusive jurisdiction of the courts in that location.</p>
    
    <h2 style="margin-top: 30px;" data-translate="contact_us">Contact Us</h2>
    <p>If you have any questions about these Terms and Conditions, please contact us:</p>
    <ul>
        <li>By visiting our <a href="/contact.php" data-translate="contact_page">Contact Page</a></li>
    </ul>
    <?php endif; ?>
</div>

<div class="ad-space">Advertisement Space</div>

<?php include 'footer.php'; ?>
