/* SANART Custom Styles */

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Typography */
.hero-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: white;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.feature-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}



/* Button CSSButtons */
.btn-cssbuttons {
    --btn-color: #436133; /* Project primary color */
    position: relative;
    z-index: 1;
    padding: 8px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: white;
    background: none;
    border: none;
    outline: none;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    min-width: 80px;
}
   
.btn-cssbuttons::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: var(--btn-color);
    border-radius: 9999px;
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
   
.btn-cssbuttons span,
.btn-cssbuttons span span {
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
   
.btn-cssbuttons span {
    transition-delay: 0.05s;
}
   
.btn-cssbuttons span:first-child {
    padding-right: 7px;
}
   
.btn-cssbuttons span span {
    margin-left: 0; 
    transition-delay: 0.1s;
}
   
.btn-cssbuttons ul {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    transform: translateY(-50%);
}
   
.btn-cssbuttons ul li {
    flex: 0 0 auto;
}
   
.btn-cssbuttons ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transform: translateY(55px);
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}
   
.btn-cssbuttons ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-cssbuttons ul li a.active {
    background-color: rgba(255, 255, 255, 0.3);
}
   
.btn-cssbuttons:hover::before {
    transform: scale(1.1);
}
   
.btn-cssbuttons:hover span,
.btn-cssbuttons:hover span span {
    transform: translateY(-55px);
}
   
.btn-cssbuttons:hover ul li a {
    transform: translateY(0);
}
   
.btn-cssbuttons:hover ul li:nth-child(1) a {
    transition-delay: 0.15s;
}
   
.btn-cssbuttons:hover ul li:nth-child(2) a {
    transition-delay: 0.2s;
}
   
.btn-cssbuttons:hover ul li:nth-child(3) a {
    transition-delay: 0.25s;
}

/* Mobile menu animation */
.mobile-menu-open {
    max-height: 700px !important;
    opacity: 1 !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f2f2f2;
}

::-webkit-scrollbar-thumb {
    background: #436133;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #436133;
}

/* Form focus styles */
input:focus,
textarea:focus {
    outline: none;
    border-color: #436133;
    ring: 2px;
    ring-color: #436133;
}

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

/* Utilities */
.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
}

/* Custom border opacity */
.border-foreground\/30 {
    border-color: rgba(0, 0, 0, 0.3);
}

.border-background\/30 {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Text opacity utilities */
.text-foreground\/5 {
    color: rgba(0, 0, 0, 0.05);
}

.text-background\/70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-background\/80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-background\/50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-muted-foreground\/20 {
    color: rgba(102, 102, 102, 0.2);
}

/* Background opacity utilities */
.bg-foreground\/5 {
    background-color: rgba(0, 0, 0, 0.05);
}

.bg-foreground\/70 {
    background-color: rgba(0, 0, 0, 0.7);
}

.bg-foreground\/0 {
    background-color: rgba(0, 0, 0, 0);
}

.bg-primary\/10 {
    background-color: rgba(67, 97, 51, 0.1);
}

.bg-primary\/30 {
    background-color: rgba(67, 97, 51, 0.3);
}

.bg-background\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-border {
    background-color: rgba(0, 0, 0, 0.2);
}

.bg-border\/20 {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Responsive utilities */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Hover effects */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.group:hover .group-hover\:translate-x-1 {
    transform: translateX(0.25rem);
}

.group:hover .group-hover\:translate-x-0\.5 {
    transform: translateX(0.125rem);
}

.group:hover .group-hover\:-translate-y-0\.5 {
    transform: translateY(-0.125rem);
}

/* Additional opacity classes for backgrounds */
.bg-muted\/30 {
    background-color: rgba(242, 242, 242, 0.3);
}

.border-background\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Secondary Colors */
.bg-secondary {
    background-color: #c5472b;
}

.text-secondary {
    color: #c5472b;
}
