* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #dc2626;
    --accent-color: #059669;
    --wildlife-color: #ea580c;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --background: #ffffff;
    --card-background: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8fafc;
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.racing-silk-display {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    background: white;
    padding: 2px;
    display: block;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 1;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.nav-menu a:active {
    transform: translateY(0);
}

.contact-btn {
    background: linear-gradient(135deg, #dc2626 0%, #fbbf24 100%) !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 0.95rem !important;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #f59e0b 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4) !important;
    color: white !important;
}

.contact-btn:active {
    transform: translateY(-1px) !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.35rem;
    z-index: 1001;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    transition: background 0.3s;
}

.hamburger:hover {
    background: rgba(37, 99, 235, 0.1);
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active {
    background: rgba(37, 99, 235, 0.1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-link {
    font-size: 1.25rem;
    text-decoration: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    transform: translateY(-2px) scale(1.1);
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

/* Hero Sections */
.hero-section {
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 1rem;
    background: var(--background);
    box-shadow: var(--shadow);
}

.training-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.racing-section {
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%);
    color: white;
}

.horses-featured-section {
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 50%, #fbbf24 100%);
    color: white;
}

.horses-section {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    color: white;
}

.horses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.horse-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.horse-card:nth-child(1) {
    transform: rotate(-2deg);
}

.horse-card:nth-child(2) {
    transform: rotate(1.5deg);
}

.horse-card:nth-child(3) {
    transform: rotate(-1deg);
}

.horse-card:nth-child(4) {
    transform: rotate(2deg);
}

.horse-card:hover {
    transform: translateY(-8px) rotate(0deg) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.horse-image {
    width: 100%;
    min-height: 300px;
    overflow: visible;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3) 0%, rgba(251, 191, 36, 0.3) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.horse-card:nth-child(1) .horse-image img {
    max-width: 95%;
    max-height: 380px;
    transform: rotate(1deg);
}

.horse-card:nth-child(2) .horse-image img {
    max-width: 100%;
    max-height: 400px;
    transform: rotate(-0.5deg);
}

.horse-card:nth-child(3) .horse-image img {
    max-width: 90%;
    max-height: 370px;
    transform: rotate(1.5deg);
}

.horse-card:nth-child(4) .horse-image img {
    max-width: 98%;
    max-height: 390px;
    transform: rotate(-1deg);
}

.horse-image img {
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.horse-card:hover .horse-image img {
    transform: rotate(0deg) scale(1.05) !important;
}

.horse-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.5) 0%, rgba(251, 191, 36, 0.5) 100%);
}

.horse-icon {
    font-size: 5rem;
    opacity: 0.8;
}

.horse-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.horse-card:hover .horse-image img {
    transform: scale(1.05);
}

.horse-info {
    padding: 1.5rem;
    text-align: center;
}

.horse-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.horse-info p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.fasting-section {
    background: linear-gradient(135deg, #6b21a8 0%, #a855f7 100%);
    color: white;
}

.wildlife-section {
    background: linear-gradient(135deg, #78350f 0%, #f59e0b 100%);
    color: white;
}

.recovery-section {
    background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 100%);
    color: white;
}

.swimming-section {
    background: linear-gradient(135deg, #164e63 0%, #06b6d4 100%);
    color: white;
}

.business-section {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    color: white;
}

.golf-section {
    background: linear-gradient(135deg, #14532d 0%, #22c55e 100%);
    color: white;
}

.adverts-section {
    background: linear-gradient(135deg, #7c2d12 0%, #f97316 100%);
    color: white;
}

.rogers-section {
    background: linear-gradient(135deg, #6b21a8 0%, #a855f7 100%);
    color: white;
}

.rogers-generator {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.rogers-saying {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rogers-saying:empty::before {
    content: "Click the button to generate a saying...";
    opacity: 0.6;
    font-style: italic;
    font-weight: normal;
}

.man-utd-badge {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-content {
    padding: 2rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
    letter-spacing: -1.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-card p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #86efac;
    font-weight: bold;
    font-size: 1.1rem;
}

.cta-button {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: white;
    color: var(--text-primary);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Ownership Section */
.ownership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ownership-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.ownership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.5);
}

.ownership-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ownership-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ownership-card p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ownership-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.ownership-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ownership-list li::before {
    content: "🏇";
    position: absolute;
    left: 0;
}

.contact-form {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: white;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    color: var(--text-primary);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: white;
    background: white;
}

.form-textarea {
    resize: vertical;
}

/* Wildlife Section */
.wildlife-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.wildlife-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wildlife-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.wildlife-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.5);
}

.wildlife-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.wildlife-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wildlife-card p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wildlife-list {
    list-style: none;
    padding-left: 0;
}

.wildlife-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wildlife-list li::before {
    content: "🐿️";
    position: absolute;
    left: 0;
}

.donation-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.donation-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.donation-box p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.donation-btn {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.donation-btn:hover {
    background: white;
    color: var(--text-primary);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Contact Page Styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-note {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-note p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-note a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s;
}

.contact-note a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Diets Section */
.diets-section {
    margin: 3rem 0;
}

.diets-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.diets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .diets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .diets-grid {
        grid-template-columns: 1fr;
    }
}

.diet-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.diet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
}

.diet-card.active {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.diet-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.diet-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.diet-card p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.diet-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.diet-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.diet-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Meal Plan Generator */
.meal-plan-generator {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.meal-plan-generator h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.generator-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.generator-form {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.form-group select,
.form-group input[type="number"],
.form-group input[type="text"] {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.2s;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.meal-plan-output {
    margin-top: 2rem;
    display: none;
}

.meal-plan-output.active {
    display: block;
}

.meal-plan-day {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.meal-plan-day h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.meal-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}

.meal-item h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.meal-item ul {
    list-style: none;
    padding-left: 0;
}

.meal-item li {
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9rem;
    opacity: 0.95;
}

.meal-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fee140;
    font-weight: bold;
}

.meal-plan-summary {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cards,
    .ownership-cards {
        grid-template-columns: 1fr;
    }

    .wildlife-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .donation-amounts {
        grid-template-columns: 1fr;
    }
}

/* Recovery Section Styles */
.safety-tips {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.safety-tips h4 {
    margin-bottom: 0.75rem;
    color: white;
    font-size: 1rem;
}

.safety-tips ul {
    list-style: none;
    padding-left: 0;
}

.safety-tips li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.safety-tips li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.recovery-protocol {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.recovery-protocol h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.protocol-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.step p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Swimming Section Styles */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.safety-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.safety-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.safety-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.safety-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.safety-list {
    list-style: none;
    padding-left: 0;
}

.safety-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.safety-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #92fe9d;
    font-weight: bold;
}

.swimming-tips {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.swimming-tips h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: white;
}

.equipment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.equipment-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s;
}

.equipment-item:hover {
    transform: scale(1.05);
}

.equip-icon {
    font-size: 1.5rem;
}

/* Business Section Styles */
.business-services {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.business-services h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-item:hover {
    transform: translateY(-8px);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.service-item h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Golf Section Styles */
.coming-soon-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.coming-soon-content {
    margin-top: 2rem;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-preview {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s;
}

.feature-preview:hover {
    transform: translateY(-5px);
}

.feature-preview .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-preview h3 {
    color: white;
    margin-bottom: 0.75rem;
}

.notify-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.notify-box h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: white;
}

/* Adverts Section Styles */
.advert-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.advert-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.advert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.advert-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.advert-card h3 {
    color: white;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.advert-card p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    .logo {
        font-size: 1.5rem;
        order: 1;
    }

    .social-links {
        order: 3;
        gap: 0.5rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        max-width: 400px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        transition: left 0.3s ease;
        gap: 0.5rem;
        z-index: 999;
        border-right: 1px solid rgba(0, 0, 0, 0.05);
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 1rem 1.25rem;
        border-radius: 0.75rem;
        border-bottom: none;
        font-size: 1rem;
        display: block;
        width: 100%;
    }

    .nav-menu a:hover {
        background: rgba(37, 99, 235, 0.1);
        transform: translateX(5px);
    }
}

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cards,
    .ownership-cards,
    .safety-grid,
    .advert-services,
    .coming-soon-features {
        grid-template-columns: 1fr;
    }

    .wildlife-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .donation-amounts {
        grid-template-columns: 1fr;
    }

    .protocol-steps {
        grid-template-columns: 1fr;
    }

    .equipment-list {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }


@media (max-width: 640px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .racing-silk-display {
        width: 40px;
        height: 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .social-links {
        display: none;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .feature-card,
    .ownership-card,
    .wildlife-card,
    .safety-card,
    .advert-card {
        padding: 1.5rem;
    }
}
