* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5efe0;
    color: #333;
}

.hero {
    position: relative;
    height: 500px;
    background: url('pictures/header\ bg.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
}

header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    margin-right: 50px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e3b21e;
}

.logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}


.hero-text {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-text .subtitle {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: #e3b21e;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 3px 10px rgba(0,0,0,0.5);
}


.contact-body {
    background-color: #f5efe0;
    padding: 80px 150px 100px;
}

.contact-section {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: start;
}


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: #8b2635;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.info-text strong {
    display: block;
    color: #8b2635;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.info-text p {
    font-size: 13.5px;
    color: #444;
    line-height: 1.5;
}

.social-section {
    margin-top: 10px;
}

.social-section h3 {
    font-size: 15px;
    font-weight: 600;
    color: #8b2635;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 55px;
    width: 55px;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    background-color: #8b2635;
    border: none;
    font-size: 18px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    white-space: nowrap;
    padding-left: 16px;
}

.social-icon.facebook:hover { background-color: #1877F2; }
.social-icon.instagram:hover { background-color: #E1306C; }
.social-icon.twitter:hover  { background-color: #000000; }

.social-icon:hover {
    width: 150px;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.social-icon i {
    min-width: 24px;
    text-align: center;
    font-size: 18px;
}

.social-icon span {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.social-icon:hover span {
    opacity: 1;
}

.social-icon i {
    min-width: 24px;
    text-align: center;
    font-size: 18px;
}

.social-icon span {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.social-icon:hover span {
    opacity: 1;
}


.map-section h3 {
    font-size: 20px;
    color: #2a1a0e;
    margin-bottom: 4px;
}

.map-section > p {
    font-size: 13px;
    color: #888;
    margin-bottom: 14px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
    height: 340px;
}


.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2a1a0e;
    text-align: center;
    margin-bottom: 8px;
}

.section-sub {
    font-size: 14px;
    color: #888;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-box {
    max-width: 1050px;
    margin: 60px auto 0;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-box h3 {
    font-size: 24px;
    color: #2a1a0e;
    margin-bottom: 2px;
}

.contact-form-box > p {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-full {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #8b2635;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13.5px;
    font-family: Arial, sans-serif;
    color: #333;
    background: #fdfaf4;
    transition: border-color 0.3s;
    outline: none;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #8B2635;
    background: #fff;
}

.form-group textarea {
    min-height: 120px;
}

.btn-wrap {
    text-align: center;
}

.btn-submit {
    background-color: #8b2635;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #6B7A52;
    transform: translateY(-2px);
}

footer {
    background-color: #6B7A52;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}