<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Triple Spur Ranch - Where Tradition Meets Innovation</title>
    <style>
        :root {
            --primary-brown: #8B4513;
            --dark-brown: #654321;
            --golden-yellow: #DAA520;
            --sage-green: #9CAF88;
            --cream: #F5F5DC;
            --rust: #B7410E;
            --shadow: rgba(0,0,0,0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: var(--dark-brown);
            background: linear-gradient(135deg, var(--cream) 0%, #E6D7B7 100%);
        }

        /* Header Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.3)), 
                        url('images/ranch-hero.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            animation: fadeInUp 1.5s ease-out;
        }

        .ranch-logo {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            text-shadow: 3px 3px 6px var(--shadow);
            letter-spacing: 2px;
        }

        .tagline {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            font-style: italic;
            color: var(--golden-yellow);
            text-shadow: 2px 2px 4px var(--shadow);
        }

        .hero-description {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Navigation */
        .nav-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .nav-btn {
            background: linear-gradient(45deg, var(--primary-brown), var(--dark-brown));
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px var(--shadow);
            border: 2px solid var(--golden-yellow);
        }

        .nav-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px var(--shadow);
            background: linear-gradient(45deg, var(--golden-yellow), var(--rust));
        }

        /* Main Content Sections */
        .content-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px var(--shadow);
            transition: transform 0.3s ease;
            border: 3px solid var(--golden-yellow);
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .card-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(139,69,19,0.8), rgba(218,165,32,0.6));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-icon {
            font-size: 3rem;
            color: white;
            text-shadow: 2px 2px 4px var(--shadow);
        }

        .card-content {
            padding: 2rem;
        }

        .card-title {
            font-size: 1.8rem;
            color: var(--primary-brown);
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .card-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .card-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .card-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
            font-weight: 500;
        }

        .card-features li:before {
            content: "✓ ";
            color: var(--sage-green);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: 3rem;
            color: var(--primary-brown);
            margin-bottom: 1rem;
            text-shadow: 1px 1px 2px var(--shadow);
        }

        .section-subtitle {
            font-size: 1.4rem;
            color: var(--dark-brown);
            font-style: italic;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--dark-brown), var(--primary-brown));
            color: white;
            text-align: center;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-info {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .established {
            font-style: italic;
            color: var(--golden-yellow);
            margin-top: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .ranch-logo {
                font-size: 2.5rem;
            }
            
            .tagline {
                font-size: 1.3rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .nav-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        /* Image Placeholders - Easy to Replace */
        .ranch-cattle { background-image: url('images/cattle-herd.jpg'); }
        .ranch-fishing { background-image: url('images/fishing-pond.jpg'); }
        .ranch-management { background-image: url('images/ranch-management.jpg'); }
    </style>
</head>
<body>
    <!-- Hero Section -->
    <section class="hero">
        <div class="hero-content">
            <h1 class="ranch-logo">TRIPLE SPUR RANCH</h1>
            <p class="tagline">Where Tradition Meets Innovation</p>
            <p class="hero-description">
                Nestled in the heart of Texas, Triple Spur Ranch combines time-honored ranching traditions 
                with cutting-edge technology. From our prize-winning cattle to our pristine fishing waters, 
                we're committed to excellence in every aspect of ranch life.
            </p>
            <div class="nav-buttons">
                <a href="ranch/" class="nav-btn">🐄 Cattle Management</a>
                <a href="fishing/" class="nav-btn">🎣 Fishing Records</a>
                <a href="#about" class="nav-btn">📖 Our Story</a>
            </div>
        </div>
    </section>

    <!-- Main Content -->
    <section class="content-section" id="about">
        <div class="section-header">
            <h2 class="section-title">Ranch Operations</h2>
            <p class="section-subtitle">Three pillars of excellence that define our ranch legacy</p>
        </div>

        <div class="section-grid">
            <!-- Cattle Operations -->
            <div class="feature-card">
                <div class="card-image ranch-cattle">
                    <div class="card-overlay">
                        <div class="card-icon">🐄</div>
                    </div>
                </div>
                <div class="card-content">
                    <h3 class="card-title">Premium Cattle Operations</h3>
                    <p class="card-description">
                        Our advanced cattle management system combines traditional ranching wisdom with 
                        AI-powered recognition technology for optimal herd health and productivity.
                    </p>
                    <ul class="card-features">
                        <li>Individual cattle facial recognition</li>
                        <li>Automated health record tracking</li>
                        <li>Mother-calf relationship monitoring</li>
                        <li>Weight estimation and growth analysis</li>
                        <li>Vaccination and treatment scheduling</li>
                    </ul>
                </div>
            </div>

            <!-- Fishing Operations -->
            <div class="feature-card">
                <div class="card-image ranch-fishing">
                    <div class="card-overlay">
                        <div class="card-icon">🎣</div>
                    </div>
                </div>
                <div class="card-content">
                    <h3 class="card-title">World-Class Fishing</h3>
                    <p class="card-description">
                        Our pristine ranch waters offer exceptional fishing opportunities, from bass-filled 
                        ponds to crystal-clear streams, managed with scientific precision.
                    </p>
                    <ul class="card-features">
                        <li>Trophy bass and catfish ponds</li>
                        <li>Detailed catch records and analytics</li>
                        <li>Sustainable fish population management</li>
                        <li>Guided fishing experiences</li>
                        <li>Water quality monitoring systems</li>
                    </ul>
                </div>
            </div>

            <!-- Ranch Management -->
            <div class="feature-card">
                <div class="card-image ranch-management">
                    <div class="card-overlay">
                        <div class="card-icon">📊</div>
                    </div>
                </div>
                <div class="card-content">
                    <h3 class="card-title">Smart Ranch Management</h3>
                    <p class="card-description">
                        Comprehensive digital systems that streamline ranch operations, from livestock 
                        tracking to financial management, ensuring efficiency and profitability.
                    </p>
                    <ul class="card-features">
                        <li>Real-time operational dashboards</li>
                        <li>Automated reporting and analytics</li>
                        <li>Financial tracking and budgeting</li>
                        <li>Weather and pasture monitoring</li>
                        <li>Equipment maintenance scheduling</li>
                    </ul>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="footer">
        <div class="footer-content">
            <div class="contact-info">
                <strong>Triple Spur Ranch</strong><br>
                Committed to Excellence in Ranching and Conservation
            </div>
            <p class="established">Established 2020 • Texas, USA</p>
        </div>
    </footer>

    <script>
        // Simple fade-in animation for cards
        window.addEventListener('scroll', () => {
            const cards = document.querySelectorAll('.feature-card');
            cards.forEach(card => {
                const cardTop = card.getBoundingClientRect().top;
                const cardVisible = 150;
                
                if (cardTop < window.innerHeight - cardVisible) {
                    card.classList.add('fade-in');
                }
            });
        });

        // Smooth scrolling for anchor links
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                document.querySelector(this.getAttribute('href')).scrollIntoView({
                    behavior: 'smooth'
                });
            });
        });
    </script>
</body>
<script>'undefined'=== typeof _trfq || (window._trfq = []);'undefined'=== typeof _trfd && (window._trfd=[]),_trfd.push({'tccl.baseHost':'secureserver.net'},{'ap':'cpsh-oh'},{'server':'p3plzcpnl505378'},{'dcenter':'p3'},{'cp_id':'10520022'},{'cp_cl':'8'}) // Monitoring performance to make your website faster. If you want to opt-out, please contact web hosting support.</script><script src='https://img1.wsimg.com/traffic-assets/js/tccl.min.js'></script></html>