/* Contact Page Specific Premium Styles */

.header {
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--accent-gold);
}

.background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(rgba(26, 18, 11, 0.55), rgba(26, 18, 11, 0.8)), url('../images/02-DHOOP-ARTI-21_03_15-1024x678.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.header h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--accent-gold-light);
    margin: 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

/* Contact cards Section */
.contact-info {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-info .flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info .flex .box {
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 370px;
    background-color: white;
    color: var(--primary-color);
    text-align: center;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info .flex .box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium-hover);
    border-color: var(--accent-gold);
}

.contact-info .flex .box .icons {
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.contact-info .flex .box svg {
    fill: var(--accent-gold-dark);
}

.contact-info .flex .box p {
    margin: 0 0 10px 0;
    font-size: 15px;
    color: var(--text-dark);
}

.contact-info .flex .box p b {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-color);
}

.contact-info .flex .box p:last-child {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Form Section */
.upcomming-events {
    padding: 100px 0;
    background-color: #FAF4EB;
    border-top: 3px solid var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
}

.upcomming-events h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.upcomming-events .pp {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.upcomming-events .flex {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.upcomming-events .items:first-child {
    padding: 40px;
    flex: 1.2;
    min-width: 300px;
    background-color: var(--primary-color);
    border-radius: 20px;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-premium-hover);
}

.upcomming-events .items:last-child {
    flex: 1.5;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 2px solid white;
}

.upcomming-events .items h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 15px;
    color: var(--accent-gold-light);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    letter-spacing: 0.5px;
}

/* Form inputs & style */
.form-group {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group>div {
    flex: 1;
    min-width: 140px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FAF6F0;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group button {
    width: 100%;
    padding: 14px 24px;
    border: 1px solid var(--accent-gold);
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--bg-dark); 
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block; 
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.form-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
}

input {
    width: 100%;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    color: white;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-smooth);
}

input::placeholder {
    color: rgba(250, 246, 240, 0.5);
}

input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: rgba(255,255,255,0.15);
}

textarea {
    width: 100%;
    height: 120px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 12px 18px;
    color: white;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-smooth);
}

textarea::placeholder {
    color: rgba(250, 246, 240, 0.5);
}

textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: rgba(255,255,255,0.15);
}

/* Responsive adjust */
@media (max-width: 768px) {
    .header {
        height: 280px;
    }
    .header h1 {
        font-size: 38px;
    }
    .contact-info, .upcomming-events {
        padding: 60px 0;
    }
    .upcomming-events h2 {
        font-size: 32px;
    }
    .upcomming-events .items:first-child {
        padding: 30px 20px;
    }
}