/* 
 * 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;
}