/* 
 * LandGoose Custom Styles
 * Custom CSS for template modifications and overrides
 * This file is loaded after the main template CSS to allow for easy customization
 */

/* Add your custom styles here */

/* Example: Custom button variations */
/*
.custom-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
*/

/* Example: Custom spacing utilities */
/*
.mt-100 { margin-top: 100px; }
.mb-100 { margin-bottom: 100px; }
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
*/

/* Example: Custom color overrides */
/*
:root {
    --custom-primary: #667eea;
    --custom-secondary: #764ba2;
    --custom-accent: #f093fb;
}
*/

.terms-area p, .terms-area ul li, .privacy-area, .privacy-area ul li {
    line-height: 1.8;
}
.terms-area ul li, .privacy-area ul li {
    list-style: none;
}

/* Custom select styling to match Sasup form inputs */
.post-input select,
.post-select {
    height: 50px;
    width: 100%;
    background: #eeeff4;
    border: 0;
    color: #707276;
    border-radius: 4px;
    font-size: 14px;
    padding: 0 25px;
    appearance: none; /* Remove default arrow */
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23707276" height="24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

.post-input select:focus,
.post-select:focus {
    border: 2px solid transparent;
    border-color: var(--clr-theme-1);
    outline: none;
}

.post-input select option,
.post-select option {
    background: #ffffff;
    color: #707276;
    padding: 10px;
}

.responsive-logo {
    max-height: 25px;
}

.blog-article-hero {
    background:
        radial-gradient(circle at 22% 88%, rgba(76, 206, 255, 0.34) 0%, rgba(76, 206, 255, 0) 20%),
        radial-gradient(circle at 70% 80%, rgba(120, 60, 255, 0.42) 0%, rgba(120, 60, 255, 0) 24%),
        radial-gradient(circle at 58% 10%, rgba(190, 66, 194, 0.42) 0%, rgba(190, 66, 194, 0) 18%),
        radial-gradient(circle at 94% 4%, rgba(218, 157, 137, 0.36) 0%, rgba(218, 157, 137, 0) 16%),
        linear-gradient(135deg, #4969d8 0%, #5965d4 38%, #655ad7 66%, #5662d3 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.blog-article-hero::before {
    display: none;
}

.blog-article-page .brandcrumb-area-2 .container,
.blog-article-page .brandcrumb-area-2 .row,
.blog-article-page .brandcrumb-area-2 [class*="col-"],
.blog-article-page .brandcrumb-area-2 .breadcrumb-content {
    position: relative;
    z-index: 2;
}

.blog-article-page .blog-article-copy p,
.blog-article-page .blog-article-copy ul,
.blog-article-page .blog-article-copy ol,
.blog-article-page .blog-article-copy li {
    font-size: 17px;
    line-height: 28px;
    color: #535559;
}

.blog-article-page .blog-article-copy p {
    margin-bottom: 40px;
}

.blog-article-page .blog-article-copy ul,
.blog-article-page .blog-article-copy ol {
    margin: 0 0 40px;
    padding-left: 26px;
    list-style-position: outside;
}

.blog-article-page .blog-article-copy ul {
    list-style-type: disc;
}

.blog-article-page .blog-article-copy ol {
    list-style-type: decimal;
}

.blog-article-page .blog-article-copy ul li,
.blog-article-page .blog-article-copy ol li {
    display: list-item;
    margin-bottom: 12px;
    padding-left: 4px;
}

.blog-article-page .blog-article-copy ul > li::marker,
.blog-article-page .blog-article-copy ol > li::marker {
    color: #0a1426;
}

.blog-article-page .blog-article-copy li > ul,
.blog-article-page .blog-article-copy li > ol {
    margin-top: 12px;
    margin-bottom: 12px;
}

.blog-article-page .blog-article-copy li:last-child {
    margin-bottom: 0;
}

.blog-article-page .blog-article-copy .blog-content-title {
    margin-bottom: 18px;
    line-height: 1.25;
}

.blog-article-page .blog-article-copy p + .blog-content-title,
.blog-article-page .blog-article-copy ul + .blog-content-title,
.blog-article-page .blog-article-copy ol + .blog-content-title,
.blog-article-page .blog-article-copy div + .blog-content-title {
    margin-top: 44px;
}

.blog-article-page .blog-article-copy a {
    color: var(--clr-theme-1);
    text-decoration: none;
}

.blog-article-page .blog-article-copy a:hover {
    color: #ff6600;
}

.blog-article-page .blog-article-copy strong {
    color: #0a1426;
    font-weight: 600;
}

.blog-article-page .blog-article-copy > *:last-child {
    margin-bottom: 0 !important;
}
