
.container {
	width: 80%;
	max-width: 1000px;
}
main, aside {
	border: 1px solid rgba(0, 0, 0, .2);
	border-radius: 10px;
	box-shadow: 4px 4px rgba(0, 0, 0, .1);
	padding: 20px;
  max-height: 70vh;
  overflow-y: auto;
}

.main-col {
  width: 66.66%;
}
img {
  float: left;
  padding: 20px 20px 20px 0;
  width: 200px;
}
#addmenu a {
  color: #999;
  text-decoration: none;
}
#addmenu a:hover {
  color: #000;
  
}
.aside-col {
  width: 33.33%;
}
.custom-gap-right {
  margin-right: 10px;
}

/* -- */
.btn {
  margin-top: 10px;
}
.btn-primary {
  background: #666;
}
.btn-primary:hover {
  background: #fff;
  color: #000;
}
.form-control:focus {
  border-color: #666 !important;
  box-shadow: none !important;
  outline: none !important;
}
/* -- */

footer a, .nav-link {
  color: #999;
  text-decoration: none;
}
footer a:hover, .nav-link:hover {
  color: #333;  
}

.social-btn {
        color: white;
        border: none;
       
        font-size: 12px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.5s;
        /*width: 30px; height: 25px;
        font-size: 16px;      /* stejné pro všechny */
        /*line-height: 1;       /* odstraní vertikální roztažení */
        /*width: 1.5em;           /* stejné rozměry */
        text-align: center;   /* pro jistotu zarovnání */
        padding: 7px 9px;
        }

        .btn-facebook { background-color: #3b5998; }
        .btn-facebook:hover { background-color: #2d4373; }

        .btn-x { background-color: #000000;} /* X (dříve Twitter) */
        .btn-x:hover { background-color: #333333; }

        .btn-linkedin { background-color: #0077b5; padding: 6px 7px;}
        .btn-linkedin:hover { background-color: #005983; }

        .btn-google { background-color: #db4437; font-size: 14px; padding: 4px 6px; }
        .btn-google:hover { background-color: #b93227; } 

        .btn-info { background-color: #666; }
        .btn-info:hover { background-color: #999; }       

        .social-container {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
            
            padding-bottom: 10px;
            display: flex;
            justify-content: center;
           
        }








/* --- Vizuálně Skrytý Label (Přístupnost) --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Základní Styly a Responzivita --- */
.contact-form-container {
    max-width: 600px;
    width: 90%; 
    margin: 20px auto;
    margin-top: 80px;
    padding: 20px;
    border: none; 
    background-color: #fff;
    box-sizing: border-box; 
    font-family: Arial, sans-serif;
    color: #000;
}

.contact-form-container h2 {
    color: #000;
    text-align: center;
    border-bottom: none; 
    padding-bottom: 5px;
    margin-bottom: 5px; 
    /* ZMĚNA ZDE: Zmenšení velikosti písma na zhruba polovinu (0.8em) */
    font-size: 1em; 
    text-transform: uppercase; /* Zůstane velkými písmeny */
}

/* --- Nový text: Všechna pole povinná --- */
.form-required-text-top {
    text-align: center;
    font-size: 0.8em;
    color: #000; 
    margin-bottom: 20px;
}

/* --- Vstupní Pole: Bílé pozadí a světle šedý placeholder --- */
.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #999; 
    background-color: #fff; 
    color: #000;
    box-sizing: border-box;
    border-radius: 0; 
    transition: border-color 0.3s;
}

/* Změna barvy placeholer textu (světlejší šedá) */
::placeholder { 
    color: #aaa; 
    opacity: 1; 
}
:-ms-input-placeholder {
    color: #aaa;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    border-color: #000; 
    outline: none;
}

/* --- Tlačítko (Poloviční šířka a výška) --- */
.button-wrapper {
    text-align: center; 
    margin-top: 20px;
}

.contact-form-container button {
    max-width: 50%; 
    display: inline-block; 
    background-color: #000; 
    color: #fff; 
    padding: 6px 15px; 
    margin-top: 0; 
    border: 1px solid #000;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9em; 
    border-radius: 0;
    transition: background-color 0.3s, color 0.3s;
}

.contact-form-container button:hover {
    background-color: #333; 
}

/* --- Status Message --- */
.form-status {
    padding: 0;
    margin-bottom: 5px;
     
    color: #333;
    min-height: 50px; 
}

/* Honeypot: Must be absolutely hidden! */
.honeypot-field {
    display: none !important;
    visibility: hidden;
    height: 0;
}







/* -- */
/* -- */

@media (max-width: 1000px) {
  .container {
    width: 99%;    
  }
  main {
  	margin-bottom: 10px;
    max-height: unset;
    overflow-y: unset;
  }
  .main-col {
    width: 100%;
  }
  aside {
    max-height: unset;
   overflow-y: unset;
  }
  img {
    float: none;
    padding: 10px;
    width: 100%;
  }
  .aside-col {
    width: 100%;
  }  
}




