/* --- Common Styles (Header & Nav) - Reused from previous pages --- */

.a {
    display: flex;
    background-color: rgb(255, 255, 255);
    border-top: 0.5px solid grey;
    border-bottom: 0.5px solid grey;
    justify-content: center;
    align-items: center;
}

.a .logo {
    height: 120px;
    width: 180px;
    background-image: url(Gemini_Generated_Image_l7qncbl7qncbl7qn-removebg-preview.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: -20px;
}

.text {
    height: 100px;
    width: 900px;
    text-align: center;
    padding-top: 20px;
    word-spacing: 10px;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 30px;
    color: orangered;
    font-family: "Cinzel", serif;
    font-weight: 800;
}

@media (max-width:768px) {
    .text {
        font-size: 20px !important;
    }
    .navigation {width: 100%;}
      .home {font-size: 12px;}
  .services {font-size: 12px;}
  .projects {font-size: 12px;}
  .about {font-size: 12px;}
  .contact {font-size: 12px;}
}

.text h1 {
    margin: 0px;
}

.button {
    height: 45px;
    width: 300px;
    background-color: orangered;
    color: white;
    font-size: 30px;
    font-family: "Orelega One", serif;
    border-radius: 80px;
    border: none;
    text-align: center;
    padding-top: 10px;
    text-decoration: none;
}

.button:hover {
    cursor: pointer;
    background-color: white;
    color: orangered;
    border: 1px solid orangered;
    transition: 0.5s ease-in;
}

.navigation {
    display: flex;
    position: sticky;
    height: 60px;
    top: 0px;
    gap: 20px;
    background-color: white;
    z-index: 1000;
    justify-content: center;
}

.home, .services, .projects, .about, .contact {
    height: 60px;
    width: 120px;
    font-family: "Orelega One", serif;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: rgb(127, 96, 85);
    transition: 0.3s ease-in-out;
}
.projects, .about, .contact {
    width: 100px;
}

.home:hover, .services:hover, .projects:hover, .about:hover, .contact:hover {
    background-color: orangered;
    color: white;
    cursor: pointer;
}

/* --- Contact Page Specific Styles --- */

/* Hero Section */
.contact-hero {
    background-image:  url(hand.jpg); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 60%;
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.contact-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65); 
}

.hero-text {
    position: relative;
    z-index: 1;
    color: white;
    font-family: "Cinzel", serif;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.hero-text p {
    font-size: 1.6rem;
    font-style: italic;
    color: #ff997f;
}

/* Contact Form & Details Section */
.contact-form-details {
    padding: 100px 8%;
    background: #fff;
}

.contact-container-main {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

/* Contact Info Block */
.contact-info-block {
    flex: 1 1 40%;
    padding: 30px;
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-block h2 {
    font-size: 2rem;
    color: orangered;
    font-family: "Cinzel", serif;
}

.contact-info-block .underline {
    width: 60px;
    height: 3px;
    background: orangered;
    margin: 10px 0 30px;
}

.contact-info-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.detail-item {
    margin-bottom: 25px;
}

.detail-item h3 {
    font-family: "Orelega One", serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.detail-item p {
    margin: 0;
    font-size: 1rem;
    color: #666;
}

/* Inquiry Form Block */
.inquiry-form-block {
    flex: 1 1 60%;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.inquiry-form-block h2 {
    font-size: 2rem;
    color: #333;
    font-family: "Cinzel", serif;
    margin-bottom: 10px;
}

.inquiry-form-block p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: orangered;
    margin-bottom: 5px;
    font-family: 'Raleway', sans-serif;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: orangered;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 69, 0, 0.3);
}

.submit-button {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background-color: orangered;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-family: "Orelega One", serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #cc4700;
}

/* Map Section */
.map-section {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-section iframe {
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-container-main {
        flex-direction: column;
        gap: 30px;
    }
    .contact-info-block, .inquiry-form-block {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    .contact-hero p {
        font-size: 1.2rem;
    }
    .contact-form-details {
        padding: 50px 5%;
    }
}