/* 1. LOCAL FONT DEFINITIONS */

/* Lora Fonts */
@font-face {
    font-family: 'Lora';
    src: url('fonts/lora-v37-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/lora-v37-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/lora-v37-latin-700italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Outfit Fonts */
@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit-v15-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit-v15-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/outfit-v15-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* CORE THEME & COLORS */
:root {
    --forest-green: #1f3d2b;
    --warm-brown: #3d2314;
    --cream-bg: #f3efe6;
    --blue: #274AB8;
    --rust-orange: #b85b27;
    --rust-red: #B82734;
    --text-dark: #2c2c2c;
    --white: #ffffff;
}

/*  BASE RESET & FONTS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

        nav {
            margin-top: 0rem;
			background-color: var(--cream-bg);
			opacity: 0.7;
			padding: 1px 0;
        }

/* Animated logo Section */
	.animatedlogo {
    position: relative; /* Crucial for placing the background correctly */
    text-align: center;
    overflow: hidden; /* Keeps the zoomed background from spilling out */
    z-index: 1; /* Keeps your logo and nav on top */
    padding: 1rem 2px;
}

	/* The Background Layer (This is where the magic happens) */
	.animatedlogo::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: -1; /* Pushes the image behind your content */
    
    /* Your image setup */
    background: linear-gradient(rgba(243, 239, 230, 0), rgba(243, 239, 230, 0)), 
                url('forest-of-dean-dog-walk.avif');
    background-position: center center;
    background-repeat: no-repeat;
    
    /* 'cover' guarantees there are NEVER gaps, regardless of screen shape */
    background-size: cover; 
    
    /* Apply the new transform animation */
    animation: breath 8s ease-in-out infinite; 
}

/* The New Animation (Much smoother, no gap glitches) */
@keyframes breath {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); } /* 1.05 = a 5% zoom */
    100% { transform: scale(1); }
}
		
		/* Hero Section */
			.hero {
            text-align: center;
            padding: 6rem 20px 1rem 20px;
            background: linear-gradient(rgba(243, 239, 230, 0.9), rgba(243, 239, 230, 0.9)), url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%231f3d2b" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--forest-green);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: var(--warm-brown);
        }
		/* Herosmall Section less padding */
			.herosmall {
            text-align: center;
            padding: 0.5rem 5px;
            background: linear-gradient(rgba(243, 239, 230, 0.9), rgba(243, 239, 230, 0.9)), url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%231f3d2b" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
        }

        .herosmall h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--forest-green);
        }

        .herosmall p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: var(--warm-brown);
        }


body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--cream-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    color: var(--warm-brown);
}

h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}


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

a:hover {
    color: var(--forest-green);
}

/* LAYOUT CONTAINERS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px; /* Increased for better mobile spacing */
}

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

/* HEADER & NAVIGATION */
header {
    border-bottom: 4px solid var(--forest-green);
    text-align: center;
}

.logo-container img {
    max-width: 250px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

.nav-links a {
    font-weight: 600;
    color: var(--forest-green);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 5px 10px;
}

.nav-links a:hover {
    color: var(--rust-orange);
    transition: color 0.3s ease; /* Makes the transition smooth */
}

.nav-links li:not(:last-child)::after {
    content: "|";
    color: var(--forest-green);
    margin: 0 5px;
}

/* GLOBAL BUTTONS */
        .btn {
            display: inline-block;
            background-color: var(--forest-green);
            color: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            transition: background 0.3s;
        }
        .btn:hover { 
            background-color: var(--rust-orange); 
            color: var(--white);
        }


/* FOOTER */
footer {
    background-color: var(--warm-brown);
    color: var(--cream-bg);
    text-align: center;
    padding: 0.5rem 2px;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 1rem auto;
}

/* MOBILE RESPONSIVENESS (Crucial) */
@media (max-width: 768px) {
    .nav-links a {
        font-size: 0.85rem;
    }
    .container {
        padding: 0 10px;
    }
}
