/* Custom styles for North Star of Georgia Counseling and Consulting */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Geometric shapes in hero */
.geo-shape {
    position: absolute;
    opacity: 0.12;
    animation: float 8s ease-in-out infinite;
}

.geo-circle-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #fbbf24;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.geo-circle-2 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #a855f7;
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

.geo-circle-3 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fbbf24;
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid #c084fc;
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.geo-square-1 {
    width: 120px;
    height: 120px;
    background: #fbbf24;
    bottom: 25%;
    right: 15%;
    transform: rotate(45deg);
    animation-delay: 3s;
}

.geo-diamond-1 {
    width: 80px;
    height: 80px;
    background: #d8b4fe;
    top: 45%;
    left: 8%;
    transform: rotate(20deg);
    animation-delay: 5s;
}

.dots-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Contact section shapes */
.contact-shape {
    position: absolute;
    opacity: 0.08;
}

.shape-circle-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #fbbf24;
    top: -100px;
    right: -100px;
}

.shape-circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #a855f7;
    bottom: -50px;
    left: -50px;
}

.shape-triangle-1 {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 170px solid #fbbf24;
    top: 30%;
    left: 5%;
}

.shape-square-1 {
    width: 100px;
    height: 100px;
    background: #c084fc;
    bottom: 20%;
    right: 10%;
    transform: rotate(30deg);
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(3deg); }
    66% { transform: translateY(10px) rotate(-2deg); }
}

.geo-circle-1 { animation: float 8s ease-in-out infinite; }
.geo-circle-2 { animation: float 7s ease-in-out infinite 1s; }
.geo-circle-3 { animation: float 6s ease-in-out infinite 2s; }
.geo-triangle-1 { animation: float 9s ease-in-out infinite 0.5s; }
.geo-square-1 { animation: float 7s ease-in-out infinite 3s; }
.geo-diamond-1 { animation: float 8s ease-in-out infinite 4s; }

/* Spinner animation for form */
@keyframes spinner {
    to { stroke-dashoffset: 0; }
}
.animate-spinner {
    animation: spinner 1s linear infinite;
}

/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Service cards hover */
.service-card {
    perspective: 1000px;
}

/* Mobile menu */
#mobile-menu {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Focus styles */
input:focus, select:focus, textarea:focus {
    outline: none;
}

/* Custom selection color */
::selection {
    background: #a855f7;
    color: white;
}
