body {
    font-family: 'Arial', sans-serif;
    color: #333;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.7) !important;
    padding: 10px 0;
}

.navbar-brand img {
    height: 300px;
}

.nav-link {
    color: white !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffd700 !important;
}


.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-custom {
    background-color: #ffd700;
    color: #333;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #fff;
    color: #ffd700;
}

.subscription-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.subscription-panel {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.subscription-panel:hover {
    transform: translateY(-10px);
}

.subscription-panel h4 {
    color: #ffd700;
    font-weight: 700;
}

.subscription-panel .price {
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 0;
    color: #333;
}

.author-section {
    padding: 80px 0;
    background-color: #fff;
}

.author-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.more-info-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/img/horse.jpeg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
}

.blog-container {
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 40px;
    max-width: 1200px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.blog-container::before {
    content: '';
    background: url('/logo.png') no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 0;
    border-radius: 10px;
}

.logo-container {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: all 0.3s ease;
}

.logo-container img {
    max-width: 250px;
    height: auto;
    /* filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.7)); */
    transition: all 0.3s ease;
}

.logo-container:hover img {
    /* filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.9)); */
    transform: scale(1.05);
}

.landing-section {
    position: relative;
    background: url('/img/race.jpeg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Add some top padding to account for the logo */
}

.landing-content {
    text-align: center;
    z-index: 2;
    margin-top: 50px; /* Add some top margin to push the content down */
}

.landing-section h1,
.landing-section h3 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}



.blog-content,
.author-photo {
    position: relative;
    z-index: 1;
}

.author-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.author-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-content {
    text-align: left;
}

.message {
    text-align: center;
}

.footer {
    background: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* Modal styles */
.modal {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-dialog {
    max-width: 500px;
}

.modal-content {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.modal-header {
    border-bottom: none;
}

.modal-header .close {
    color: #333;
    opacity: 1;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
}

.form-control {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-control:focus {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    outline: none;
}

.btn-primary {
    background: #ffd700;
    border: none;
    color: #333;
    border-radius: 25px;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #fff;
    color: #ffd700;
}

/* Responsive styles */
@media (max-width: 767px) {
    .landing-section {
        height: auto;
        padding: 100px 20px;
    }

    .blog-container {
        padding: 10px;

    }

    .subscription-panel {
        margin: 10px 0;
    }

    .author-section {
        text-align: center;
    }

    .modal-dialog {
        margin: 10px;
    }
}

.premium-content-frame {
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.premium-content-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.premium-content {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .logo-container {
        top: 60px; /* Increased top padding */
    }

    .logo-container img {
        max-width: 200px;
    }

    .landing-section {
        height: auto;
        /* min-height: 100vh; */
        padding-top: 220px; /* Increased padding to push content down */
        align-items: flex-start; /* Align content to the top */
    }

    .landing-content {
        margin-top: 60px;
    }

    .landing-section h1 {
        font-size: 2rem;
    }

    .landing-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        top: 60px; /* Slightly reduced top padding for very small screens */
    }

    .logo-container img {
        max-width: 150px;
    }

    .landing-section {
        padding-top: 180px; /* Adjusted padding for very small screens */
    }

    .landing-section h1 {
        font-size: 1.75rem;
    }

    .landing-section h3 {
        font-size: 1.25rem;
    }
}