/* Reset & structure */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: Arial, sans-serif;
    padding-top: 40px;
    text-align: center;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden; /* only hides side scroll */
}

/* Remove fixed height and text-align from html/body */
body {
    padding: 40px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Container styling */
.container {
    background: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 10px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
}

/* Logo */
.logo {
    max-width: 300px;  /* Reduced from 300px */
    height: auto;
    margin-bottom: 5px;
}

/* Headings & text */
h1 {
    font-size: 2.0em;
    margin-bottom: 10px;
}

p {
    font-size: 1.05em;
    margin-bottom: 20px;
}

/* Image */
.featured-image {
    width: 70%;                  /* Was 100% — now narrower */
    max-width: 500px;
    height: auto;
    max-height: 600px;           /* Keeps vertical size in check */
    object-fit: cover;
    object-position: top;        /* Prioritizes horse's head */
    border-radius: 10px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* Contact */
.contact-info {
    margin-bottom: 20px;
}

.contact-info p, .contact-info a {
    font-size: 0.95em;
}

/* Social media links */
.social-media a {
    margin: 0 5px;
    text-decoration: none;
    color: #000;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 15px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}

footer a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
}

