/* 
 * Common CSS Styles
 * Contains fundamental styles and overrides for the ISKCON Goa website
 */

/* Font utilities */
.font-lato {
  font-family: 'Lato', sans-serif;
}

.font-cardo {
  font-family: 'Cardo', serif;
}

.font-oswald {
  font-family: 'Oswald', sans-serif;
}

.font-sahitya {
  font-family: 'Sahitya', serif;
}

.font-bilbo {
  font-family: 'Bilbo Swash Caps', cursive;
}

/* Text sizes */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

/* Text colors */
.text-primary {
  color: #B74233;
}

.text-muted {
  color: #666666;
}

/* Text utilities */
.text-center {
  text-align: center;
}

.text-justified {
  text-align: justify;
}

/* Spacing utilities */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

.mx-auto { 
  margin-left: auto;
  margin-right: auto;
}

/* Display utilities */
.flex {
  display: flex;
}

/* Background colors */
.bg-light {
  background-color: #F8F3E6;
}

.bg-white {
  background-color: #FFFFFF;
}

/* Border utilities */
.rounded-lg {
  border-radius: 8px;
}

/* Shadow utilities */
.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Button styles */
.button {
  display: inline-block;
  background-color: #B74233;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #9a3729;
}

.button.primary {
  background-color: #B74233;
  color: white;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button.primary:hover {
  background-color: #9a3729;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.centered-button {
  text-align: center;
  margin: 1.5rem 0;
}

/* Combined utility classes for common patterns */
.nav-link {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.dropdown-link {
  font-family: 'Lato', sans-serif;
}

.page-heading {
  text-align: center;
  color: #B74233;
  margin-bottom: 1.5rem;
}

.card-container {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-title {
  text-align: center;
  color: #B74233;
}

.card-content {
  font-family: 'Cardo', serif;
  margin-bottom: 1rem;
}

.footer-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: #666666;
}

.footer-copyright {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  color: #888888;
  margin-bottom: 0.5rem;
}

.section-text {
  font-size: 1.125rem;
  text-align: justify;
  font-family: 'Cardo', serif;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none;
  }
}
