/*
Theme Name: OceanWP Child - SWORD Plus
Template: oceanwp
Description: Custom child theme za SWORD Plus agenciju za nekretnine
Author: SWORD Plus
Version: 1.0.0
*/

/* Custom stilovi za SWORD Plus */

:root {
    --sword-primary: #1a1a1a;
    --sword-secondary: #d4af37;
    --sword-accent: #2c2c2c;
}

/* Logo i branding */
.site-logo-text a {
    color: var(--sword-secondary) !important;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Navigation */
#site-navigation-wrap .dropdown-menu > li > a {
    transition: color 0.3s ease;
}

#site-navigation-wrap .dropdown-menu > li > a:hover {
    color: var(--sword-secondary) !important;
}

/* Buttons */
.button, 
button,
input[type="submit"],
.btn {
    background: var(--sword-secondary) !important;
    color: var(--sword-primary) !important;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
.btn:hover {
    background: #c4a030 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--sword-primary);
}

/* Links */
a {
    color: var(--sword-secondary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--sword-accent);
}

/* Custom property cards styling */
.sword-property-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sword-property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Footer */
#footer-widgets {
    background: var(--sword-primary);
    color: #fff;
}

#footer-bottom {
    background: #0a0a0a;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .site-logo-text a {
        font-size: 1.5rem;
    }
}

/* Custom animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease;
}
