 /* Prevent flickering */
#header, #footer {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
        
#header.loaded, #footer.loaded {
    opacity: 1;
}
        
        /* Hide content until loaded */
.content-hidden {
    visibility: hidden;
}
        
.content-visible {
    visibility: visible;
}
html {
    font-size: 62.5%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background-color: #f0dfcc;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 5rem;
  max-width: 120rem;
  margin: 0 auto;
}

.contact-info h1 {
  font-size: 3.6rem;
  margin-bottom: 1.5rem;
  color: #1B5E20;
}

.contact-info p,
.contact-form p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.info-block {
  margin-bottom: 2rem;
}

.info-block h2 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: #1B5E20;
}

.contact-form h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.contact-form form,
.form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: bold;
  margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.form-group {
  padding: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1.5rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2a5d34;
  outline: none;
}

.contact-form button {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: #2a5d34;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #256428;
}

/* social-media.css */
/* Social Media Links Styling */

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    transform: translateY(-2px);
}

/* Facebook specific styles */
.social-link.facebook:hover {
    color: #1877F2;
    border-color: #1877F2;
}

/* Instagram specific styles */
.social-link.instagram:hover {
    color: #E4405F;
    border-color: #E4405F;
}

/* Twitter/X specific styles */
.social-link.twitter:hover {
    color: #000000;
    border-color: #000000;
}

/* Social media icons */
.social-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Compact horizontal layout for social icons */
.social-links-horizontal {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-link-compact {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.social-link-compact:hover {
    color: #1877F2; /* Default hover color */
}

.social-link-compact.instagram:hover {
    color: #E4405F;
}

.social-link-compact.twitter:hover {
    color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

.whatsapp {
  color: #25D366; /* WhatsApp green */
  font-weight: bold;
}