/* style-contact.css - Imports global and adds contact-specific styles */
@import url('global.css');

/* Contact Hero */
.contact-hero {
  background-size: cover !important;
  background-position: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: 10rem;
}

.contact-hero .hero-content h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 1rem;
}

.contact-hero .hero-content p {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  max-width: 600px;
}

/* Contact Info */


.contact-item h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-item p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
  background: white;
}

.contact-form .form-group label {
  font-size: 1.1rem;
}

.contact-form input, .contact-form textarea {
  border: 2px solid #e9ecef;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(139, 76, 5, 0.1);
}

.form-submit-btn {
  background: var(--accent-color);
  border: none;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
}

.form-submit-btn:hover {
  background: var(--accent-hover);
}

/* Map */
.map-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.map-placeholder {
  border: 3px dashed var(--accent-color);
}

/* Form Animation */
.contact-form input, .contact-form textarea {
  transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 0 1rem;
  }
}
#top-bar{
    width: 100%;
    min-width: 300px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background-color: #4B2E2A; 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
}
#top-bar p{
    font-size: 1.2rem;
    font-weight: 500;
}
#top-bar a{
    text-decoration: solid;
}
.House{
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #fdcea1;
    margin-left: 20px;
    transition-duration: 0.2s;
    transition-property: all;
    transition-delay: 0.3s;
    transition-timing-function:linear;
}
.House:hover{
    color:#8b4c05;
    transform: scale(1.01);
}
.bar{
    padding: 3px;
    margin-right: 10px;
    color:#fdcea1;
    transition-duration: 0.3s;
    transition-property: all;
    transition-timing-function:linear;
    transition-delay: 0.2s;
}
.bar:hover{
    color: #8b4c05;
}
#right-bar{
    display: flex;
    margin-right: 20px;
}





.footer{
  background-color: #3b2a1a;
  color: #fff;
  padding-top: 60px;
}

.footer-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 0 8%;
}

.footer-box h3,
.footer-box h4{
  margin-bottom: 15px;
  color: #d49d5e;
}

.footer-box p{
  line-height: 1.6;
  color: #e0bc9c;
}

.footer-box ul{
  list-style: none;
}

.footer-box ul li{
  margin-bottom: 10px;
}

.footer-box ul li a{
  color: #5e462b;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover{
  color: #d49d5e;
}
footer{
    margin-top: 20px;
    height: fit-content;
}

.socials a{
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #d49d5e;
  color: #3b2a1a;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.socials a:hover{
  background: #fff;
}

.footer-bottom{
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background-color: #2a1e14;
  font-size: 0.9rem;
}
.footer-bottom p{
    color: gray;
}

/* Enhanced Responsive */
@media (max-width: 768px) {
  #top-bar {
    padding: 0 1rem;
  }
  
  #right-bar {
    position: fixed;
    top: 55px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 55px);
    background: #4B2E2A;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }
  
  #right-bar.active {
    left: 0;
  }
  
  .contact-hero, .contact-hero .hero-content {
    padding: 2rem 1rem !important;
    text-align: center;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-form {
    padding: 1rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .form-group {
    margin-bottom: 1rem;
  }
}


















