/* Reset and base styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Poppins:wght@300;500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
li {
    list-style: none;

}
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.hero {
    background-color: #1A1A1A; /* Very Dark Gray for hero section */
    color: #FFFFFF; /* White text */
    text-align: center;
    padding: 120px 20px; /* Match the height of the hero section in about.css */
}

.hero h1 {
    padding-top: 50px;
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #d9afa5;
}

/* Contact Information Section */
.contact-info {
    background-color: white; /* Very Dark Gray */
    color: #1A1A1A; /* White text */
    padding: 60px 0;
}

.contact-info .section-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info .section-subtitle {
    font-size: 18px;
    color: #D7B4A3; /* Soft Pink */
    margin-bottom: 10px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background-color: #FFFFFF; /* White background for cards */
    color: #1A1A1A; /* Very Dark Gray text */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #D7B4A3; /* Soft Pink */
}

.contact-item p {
    font-size: 16px;
    color: #1A1A1A; /* Very Dark Gray text */
}

/* Contact Form Section */
.contact-form {
    background-color: white; /* Very Dark Gray */
    color: #1A1A1A; /* White text */
    padding: 60px 0;
}

.contact-form .section-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form .section-subtitle {
    font-size: 18px;
    color: #D7B4A3; /* Soft Pink */
    margin-bottom: 10px;
    text-align: center;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #1A1A1A; /* White text */
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #D7B4A3; /* Soft Pink border */
    border-radius: 5px;
    background-color: white; /* Very Dark Gray */
    color: #1A1A1A; /* White text */
    font-size: 16px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #1A1A1A; /* White border on focus */
}

textarea {
    resize: none;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #D7B4A3; /* Soft Pink */
    color: #1A1A1A; /* Very Dark Gray text */
    font-weight: bold;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #FFFFFF; /* White background on hover */
    color: #1A1A1A; /* Very Dark Gray text on hover */
}

/* Remove conflicting styles for the logo */
.logo-z, .logo-text {
    all: unset; /* Ensure no styles from contact.css override main-nav styles */
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}
