/* ==========================================
   Contact Page Specific Styles
   ========================================== */

/* =========================
CONTACT HERO
========================= */
/* Whole Header-Section */
#header {
    width:100%;
    height:20vh;
    position:absolute;
    top:0;
    z-index:1000;

}
.container-fluid {
    width:100%;
    height:100%;
    display:flex;
    justify-content:flex-end;
}

.container-fluid .logo {
    height:100%;
}
.container-fluid .logo .Logo:hover{
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.8) ,0 0 40px rgba(0, 242, 254, 0.6);
    
}

.container-fluid .logo .Logo img {
    height:50px;
    width: 150px;
    border-radius:10px;
    
}


#navbar{
    height:100%;
    padding-left:0 !important;
    padding-right:0 !important;
    justify-content:flex-start;
    
    
}

#navbar ul{
    height:100%;
    display:flex;
    list-style:none;
    width:100%;   
    align-items:center;
    justify-content:flex-start;
    margin-left:0;
    padding-left:0;

    
}

#navbar ul li {
    height:100%;
}
#navbar ul .hide-on-mobile a {
    height:100%;  
    padding: 0 15px;
    text-decoration: none;
    display: flex;
    align-items: center;  
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform:uppercase;
    color: rgba(255, 255, 255, 0.75); 
    position:relative;
    width:max-content;
    
}
#navbar ul .hide-on-desktop a{
    height:100%;  
    padding: 0 15px;
    text-decoration: none;
    display: flex;
    align-items: center;  
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);

}
#navbar ul .hide-on-desktop a:hover{
    color:white;

}


#navbar ul .hide-on-mobile a:hover{
    color:white;
}
#navbar ul .hide-on-mobile a::after{
    content:'';
    background:#DBAB44;
    width:0;
    height:3px;
    position:absolute;
    bottom:35%;   
    transition: width 0.3s ease;
}
#navbar ul .hide-on-mobile a:hover::after {
    width:70%;
}
#navbar ul .hide-on-mobile a.active::after{
    width:70%;
}

/* Whole side-header section */

#header-side{
    position:fixed;
    top:0;
    right:-100%;
    width:85%;
    max-width:380px;
    height:100vh;

    background:#0F172A;

    display:flex;
    flex-direction:column;

    transition:.35s ease;

    z-index:99999;

    box-shadow:-10px 0 30px rgba(0,0,0,.4);
}

#header-side.show{
    right:0;
}

/* Top */

.sidebar-top{

    height:75px;

    display:flex;
    align-items:center;
    justify-content:flex-end;

    padding:0 25px;

    border-bottom:1px solid rgba(255,255,255,.08);
}

.sidebar-top i{

    font-size:34px;

    color:white;

    cursor:pointer;
}

/* Navigation */

#navbar-side{

    display:flex;

    flex-direction:column;

    flex:1;
}

.menu-item{

    height:65px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 25px;

    color:white;

    text-decoration:none;

    border-bottom:1px solid rgba(255,255,255,.08);

    font-weight:600;

    letter-spacing:1px;

    transition:.25s;
}

.menu-item:hover{

    background:#1E293B;

    color:#3b82f6;
}

.menu-item i{

    font-size:20px;
}

.menu-item.active{

    color:#3b82f6;
}

/* Bottom */

.sidebar-bottom{

    padding:30px 25px;

    border-top:1px solid rgba(255,255,255,.08);
}

.sidebar-bottom img{

    width:120px;

    margin-bottom:25px;
}

.sidebar-social{

    display:flex;

    gap:20px;
}

.sidebar-social a{

    color:white;

    font-size:22px;

    transition:.3s;
}

.sidebar-social a:hover{

    color:#2563EB;
}



@media(max-width:800px) {
    .hide-on-mobile {
        display:none;
    }

}

@media(min-width:800px){
    .hide-on-desktop{
        display:none;
    }
}
@media(min-width:360px) and (max-width:800px){
    .container-fluid .logo .Logo img {
        width: 25vw ;
    }
    .footer-links {
        display:none;
    }
    .hide-on-desktop a i {
         font-size: 35px;
    }
}
@media(min-width:360px) and (max-width:500px) {
    .footer .footer-legal .credits .web-de-cr {
        display: block;
    }
}




.contact-hero{
min-height:70vh;

background:
linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
url("../img/contact_heroimage.png") center/cover no-repeat;

color:#fff;
text-align:center;
padding:120px 20px;
}

/* club label */

.contact-hero .club-name{
text-transform:uppercase;
letter-spacing:2px;
font-size:14px;
opacity:0.8;
margin-bottom:15px;
}

/* heading */

.contact-hero h1{
font-size:56px;
font-weight:700;
margin-bottom:20px;
}

/* description */

.contact-hero p{
font-size:18px;
max-width:650px;
margin:0 auto;
opacity:0.9;
}


/* Main Contact Section */
.contact-main {
  padding: 80px 0;
}

/* Info Cards */
.contact-main .info-item{
border-radius:12px;
padding:30px;
background:#1f2937;
box-shadow:0 10px 30px rgba(0,0,0,0.35);
color:#e5e7eb;
}

.contact-main .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Form Styling */
.contact-main .php-email-form{
background:#1f2937;
padding:40px;
border-radius:16px;
box-shadow:0 15px 35px rgba(0,0,0,0.4);
color:#e5e7eb;
}

.contact-main .php-email-form input,
.contact-main .php-email-form textarea {
  border-radius: 8px;
border:1px solid #374151;
background:#111827;
color:#e5e7eb;
  padding: 12px 16px;
  font-size: 15px;
}

.contact-main .php-email-form input:focus,
.contact-main .php-email-form textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: none;
}

.contact-main .php-email-form button[type=submit] {
  border-radius: 50px;
  padding: 12px 40px;
  font-weight: 600;
  background: var(--color-primary);
  border: none;
  transition: 0.3s;
}

.contact-main .php-email-form button[type=submit]:hover {
  background: #2563eb;
}

/* Map Styling */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-main .php-email-form {
    padding: 25px;
  }
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none;
}
.form-status .loading {
  font-size: 14px;
  color: #555;
}

.form-status .success-message {
  font-weight: 500;
}

.form-status .error-message {
  font-weight: 500;
}
.contact-main .info-item:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(59,130,246,0.25);
}
#overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99998;
}

#overlay.show{

    opacity:1;

    visibility:visible;
}