* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Georgia', serif;
line-height: 1.6;
color: #2c3e50;
background: #fff;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 40px 20px;
}
.hero {
text-align: center;
padding: 60px 20px;
background: linear-gradient(135deg, #305CDE 0%, #2447b8 100%);
color: white;
border-radius: 12px;
margin-bottom: 60px;
}
.hero h1 {
font-size: 2.5em;
margin-bottom: 20px;
font-weight: 300;
letter-spacing: 1px;
}
.hero .subtitle {
font-size: 1.3em;
margin-bottom: 30px;
opacity: 0.95;
}
.hero .price {
font-size: 2em;
font-weight: 600;
margin-bottom: 30px;
}
.cta-button {
display: inline-block;
background: white;
color: #305CDE;
padding: 18px 50px;
font-size: 1.2em;
font-weight: 600;
text-decoration: none;
border-radius: 50px;
transition: transform 0.2s, box-shadow 0.2s;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.problem-section {
background: #f8f9fa;
padding: 50px 40px;
border-radius: 12px;
margin-bottom: 50px;
border-left: 5px solid #305CDE;
}
.problem-section h2 {
font-size: 2em;
color: #2c3e50;
margin-bottom: 25px;
}
.problem-list {
list-style: none;
padding: 0;
}
.problem-list li {
padding: 15px 0;
font-size: 1.1em;
border-bottom: 1px solid #e0e0e0;
padding-left: 40px;
position: relative;
}
.problem-list li:before {
content: "X";
position: absolute;
left: 0;
color: #dc3545;
font-weight: bold;
font-size: 1.5em;
}
.problem-list li:last-child {
border-bottom: none;
}
.solution-section {
text-align: center;
padding: 50px 20px;
margin-bottom: 50px;
}
.solution-section h2 {
font-size: 2.2em;
color: #305CDE;
margin-bottom: 20px;
}
.solution-section p {
font-size: 1.2em;
max-width: 700px;
margin: 0 auto 30px;
line-height: 1.7;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin: 50px 0;
}
.feature-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
border-top: 4px solid #305CDE;
}
.feature-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #305CDE 0%, #2447b8 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 0.7em;
font-weight: 600;
margin: 0 auto 20px;
}
.feature-card h3 {
font-size: 1.4em;
color: #2c3e50;
margin-bottom: 15px;
text-align: center;
}
.feature-card p {
color: #555;
text-align: center;
line-height: 1.6;
}
.whats-inside {
background: linear-gradient(135deg, #f0f4ff 0%, #e3ebff 100%);
padding: 50px 40px;
border-radius: 12px;
margin-bottom: 50px;
}
.whats-inside h2 {
font-size: 2em;
color: #2c3e50;
margin-bottom: 30px;
text-align: center;
}
.content-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
max-width: 900px;
margin: 0 auto;
}
.content-item {
background: white;
padding: 20px;
border-radius: 8px;
border-left: 4px solid #305CDE;
display: flex;
align-items: start;
gap: 15px;
}
.content-item .check {
color: #305CDE;
font-size: 1.5em;
font-weight: bold;
flex-shrink: 0;
}
.content-item p {
margin: 0;
color: #2c3e50;
font-size: 0.95em;
}
.testimonial-section {
padding: 50px 20px;
margin-bottom: 50px;
}
.testimonial-section h2 {
font-size: 2em;
color: #2c3e50;
margin-bottom: 40px;
text-align: center;
}
.about-author {
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
max-width: 800px;
margin: 0 auto;
}
.about-author h3 {
font-size: 1.6em;
color: #305CDE;
margin-bottom: 20px;
}
.about-author p {
margin-bottom: 15px;
color: #555;
line-height: 1.7;
}
.guarantee-box {
background: #fff3cd;
border: 3px solid #ffc107;
padding: 40px;
border-radius: 12px;
margin: 50px 0;
text-align: center;
}
.guarantee-box h3 {
font-size: 1.8em;
color: #856404;
margin-bottom: 20px;
}
.guarantee-box p {
font-size: 1.1em;
color: #856404;
line-height: 1.6;
}
.final-cta {
text-align: center;
padding: 60px 20px;
background: #f8f9fa;
border-radius: 12px;
margin-bottom: 40px;
}
.final-cta h2 {
font-size: 2.2em;
color: #2c3e50;
margin-bottom: 20px;
}
.final-cta .price-highlight {
font-size: 2.5em;
color: #305CDE;
font-weight: 600;
margin: 30px 0;
}
.final-cta p {
font-size: 1.1em;
color: #555;
margin-bottom: 30px;
}
.value-statement {
background: white;
padding: 30px;
border-radius: 8px;
max-width: 600px;
margin: 0 auto 40px;
border: 2px solid #305CDE;
}
.value-statement p {
font-size: 1.2em;
color: #2c3e50;
margin: 0;
font-weight: 500;
}
.faq-section {
max-width: 800px;
margin: 50px auto;
}
.faq-section h2 {
font-size: 2em;
color: #2c3e50;
margin-bottom: 30px;
text-align: center;
}
.faq-item {
background: white;
padding: 25px;
margin-bottom: 15px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.faq-item h4 {
color: #305CDE;
font-size: 1.2em;
margin-bottom: 10px;
}
.faq-item p {
color: #555;
line-height: 1.6;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 1.8em;
}
.hero .subtitle {
font-size: 1.1em;
}
.features-grid {
grid-template-columns: 1fr;
}
.content-list {
grid-template-columns: 1fr;
}
}
Master Equine Event Photography
The Complete Guide to Camera Settings & Essential Shots
£9.95
Get Instant AccessStruggling to Capture Consistent, Professional Event Photos?
- Missing the peak moment over jumps because your timing is off
- Unsure which camera settings to use in different lighting conditions
- Not knowing which shots are essential for each discipline
- Getting back blurry, underexposed images that clients won't buy
- Feeling overwhelmed at events with no clear shooting strategy
- Spending hours sorting through thousands of unusable photos
There's a Better Way
After years of covering equestrian events - from local shows to national competitions - I've refined exactly what works. This guide gives you the camera settings, shot lists, and strategies that deliver professional results every single time.
No more guesswork. No more missed moments. Just clear, actionable guidance that gets you shooting with confidence from your very first event.
Precise Camera Settings
Exact settings for aperture, ISO, shutter speed, white balance, and more - adjusted for sunny, overcast, and indoor conditions
Complete Shot Lists
Essential shots for dressage, show jumping, cross country, and showing classes - so you never miss what clients want
Professional Techniques
Camera angles, timing tips, fence selection strategy, and composition guidance from years of experience
Practical Workflows
File naming systems, backup strategies, and organisation tips that save hours of sorting time
Equipment Guidance
Recommended gear, lens choices, and why certain equipment matters for equine photography
Instant Implementation
Download and use immediately - no fluff, just practical information you can apply at your next event
What's Inside the Guide
Camera Settings Breakdown: Complete setup for optimal event coverage
Dressage Shot List: Trot, canter, movements, and emotional moments
Show Jumping Guide: Peak moments, angles, and essential fences
Cross Country Strategy: Fence selection, positioning, and lighting tips
Showing Classes: Ridden and in-hand coverage techniques
Lighting Adjustments: Settings for sunny, overcast, and indoor conditions
Safety Guidelines: Important protocols for working around horses
Pro Tips: Timing, composition, and workflow shortcuts
Created by a Working Event Photographer
Instant Digital Download
Purchase once, yours forever. Download immediately as a professional PDF guide you can reference at every event. Print it, save it to your phone, or keep it on your tablet - whatever works for you.
Start Shooting Better Event Photos Today
Professional event photography guidance for less than the cost of two coffees
£9.95
One-time purchase • Instant download • Yours to keep forever
Get Your Guide NowCommon Questions
What format is the guide?
It's a professionally designed PDF that you can download immediately after purchase. View it on any device, print it out, or save it to your phone for quick reference at events.
Is this suitable for beginners?
Absolutely. The guide assumes you have a basic understanding of your camera, but provides clear, specific settings and shot lists that work whether you're shooting your first event or your hundredth.
Will this work with my camera brand?
Yes. The guide includes settings for both Canon and Nikon systems, and the principles apply to any DSLR or mirrorless camera with manual controls.
What if I only shoot certain disciplines?
The guide covers dressage, show jumping, cross country, and showing classes separately. Use what's relevant to the events you cover.
How quickly can I access the guide?
Immediately. As soon as your payment is processed, you'll receive a download link. No waiting, no shipping - instant access to start improving your event photography right away.
Can I share this with others?
The guide is for personal use only. Each photographer should purchase their own copy.
Ready to Transform Your Event Photography?
Stop missing moments. Stop guessing settings. Start delivering the professional photos that riders actually want to buy.
£9.95
Get Instant Access NowReady to Get Started?
Click "Add to Cart" below to purchase your guide for £9.95
